:root {
  --red: #b30a1e;
  --red2: #d3132d;
  --deep: #820014;
  --ink: #202020;
  --muted: #6c6c6c;
  --cream: #f7f4ee;
  --paper: #fff;
  --line: #e8e4dc;
  --shadow: 0 18px 45px rgba(55, 18, 8, .12);
  --radius: 18px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

.loading {
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: #777;
  font-size: 12px
}

.loading span {
  animation: pulse 1s ease-in-out infinite alternate
}

@keyframes pulse {
  to {
    opacity: .35
  }
}

[hidden] {
  display: none !important
}

.site-shell {
  overflow: hidden;
  background: var(--cream)
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(15px);
  transition: .25s
}

.site-header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08)
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0
}

.brand-ball {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  font-size: 14px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2)
}

.brand-copy {
  display: grid;
  line-height: 1
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: .01em
}

.brand-copy small {
  font-size: 6px;
  font-weight: 400;
  letter-spacing: .06em;
  margin-top: 2px
}

.brand-copy b {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  margin-top: 3px
}

.main-nav {
  position: absolute;
  top: 63px;
  left: 10px;
  right: 10px;
  display: none;
  flex-direction: column;
  padding: 12px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow)
}

.main-nav.open {
  display: flex
}

.main-nav>a {
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 400
}

.nav-vote {
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  margin-top: 5px
}

.nav-vote span {
  margin-left: 7px
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 4px
}

.nav-toggle i {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

.hero {
  position: relative;
  min-height: 640px;
  height: 100svh;
  max-height: 900px;
  overflow: hidden;
  background: #d9ddd8
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/cover-bg.png') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroBreath 14s ease-in-out infinite alternate
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .78) 28%, rgba(255, 255, 255, .18) 58%, rgba(65, 0, 8, .05) 100%), linear-gradient(0deg, rgba(0, 0, 0, .08), transparent 45%)
}

.hero-cloud {
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 58%;
  height: 46%;
  background: radial-gradient(ellipse at 40% 60%, rgba(255, 255, 255, .94), rgba(255, 255, 255, .45) 45%, transparent 72%);
  filter: blur(8px)
}

@keyframes heroBreath {
  to {
    transform: scale(1.085) translate3d(-.4%, -.5%, 0)
  }
}

.hero-copy {
  position: absolute;
  z-index: 5;
  left: 6%;
  top: 18%;
  max-width: 48%;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .55)
}

.hero-script {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-style: italic;
  font-size: clamp(29px, 5vw, 58px);
  line-height: .9;
  transform: rotate(-4deg);
  margin-bottom: 3px
}

.hero h1 {
  margin: 0;
  font-size: clamp(31px, 6.8vw, 70px);
  line-height: .93;
  letter-spacing: -.045em;
  font-weight: 950;
  color: #222
}

.hero h1 span {
  color: var(--red)
}

.hero h1 em {
  color: var(--red);
  font-style: normal
}

.hero-desc {
  font-size: clamp(9px, 1.65vw, 15px);
  line-height: 1.45;
  font-weight: 700;
  margin: 13px 0 17px;
  max-width: 390px
}

.red-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red2), var(--red));
  color: #fff;
  border-radius: 999px;
  padding: 11px 17px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(147, 0, 19, .24);
  transition: .25s
}

.red-button span {
  font-size: 15px;
  line-height: 0
}

.red-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(147, 0, 19, .3)
}

.hero-person {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: -3%;
  height: 88%;
  width: 53%;
  display: flex;
  justify-content: center;
  align-items: flex-end
}

.person-aura {
  position: absolute;
  width: 90%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .48), transparent 67%);
  filter: blur(12px)
}

.hero-person img {
  position: relative;
  height: 90%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, .25))
}

.hero-number {
  position: absolute;
  z-index: 8;
  right: 5%;
  top: 18%;
  width: 100px;
  height: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #db162e, #8d0012);
  clip-path: polygon(10% 3%, 88% 0, 100% 84%, 53% 100%, 0 85%);
  filter: drop-shadow(0 10px 9px rgba(90, 0, 12, .25));
  text-align: center
}

.hero-number small {
  font-size: 8px;
  letter-spacing: .16em;
  font-weight: 900
}

.hero-number strong {
  font-size: 68px;
  line-height: .82
}

.hero-number span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em
}

.hero-signature {
  position: absolute;
  z-index: 8;
  right: 11%;
  bottom: 15%;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-style: italic;
  font-size: clamp(35px, 7vw, 72px);
  color: #fff;
  transform: rotate(-8deg);
  text-shadow: 0 3px 9px rgba(0, 0, 0, .55)
}

.hero-bottom-wave {
  position: absolute;
  z-index: 9;
  left: -4%;
  right: -4%;
  bottom: -5%;
  height: 16%;
  background: linear-gradient(180deg, #fff 0 47%, #f3f1ed 48%);
  clip-path: polygon(0 32%, 15% 12%, 31% 25%, 49% 8%, 66% 28%, 83% 9%, 100% 25%, 100% 100%, 0 100%);
  opacity: .98
}

.feature-strip {
  position: relative;
  z-index: 15;
  margin: -26px 18px 0;
  padding: 13px 5px;
  background: rgba(255, 255, 255, .96);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr)
}

.feature-item {
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 5px;
  border-right: 1px solid var(--line)
}

.feature-item:nth-child(2n) {
  border-right: 0
}

.feature-item:nth-child(-n+2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--line)
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.feature-item b {
  display: block;
  font-size: 9px;
  margin-top: 3px
}

.feature-item small {
  display: block;
  font-size: 7px;
  font-weight: 700;
  margin-top: 3px
}

.section {
  padding: 46px 18px
}

.vision-mission {
  display: grid;
  gap: 13px;
  padding-top: 30px
}

.vm-card {
  background: #fff;
  border-radius: 10px;
  padding: 17px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05)
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px
}

.card-title span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900
}

.card-title h2 {
  margin: 0;
  color: var(--red);
  font-size: 19px
}

.vision-card p {
  font-size: 11px;
  line-height: 1.75;
  margin: 0
}

.mission-list {
  margin: 0;
  padding: 0 0 0 24px
}

.mission-list li {
  padding: 0 0 7px 4px;
  font-size: 9.5px;
  line-height: 1.35
}

.mission-list li::marker {
  color: #777
}

.mini-label {
  font-size: 8px;
  color: var(--red);
  font-weight: 950;
  letter-spacing: .17em
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px
}

.section-head h2 {
  margin: 5px 0 0;
  font-size: 20px;
  line-height: 1.05
}

.section-head>a {
  font-size: 8px;
  color: var(--red);
  font-weight: 900;
  white-space: nowrap
}

.potensi {
  padding-top: 8px
}

.potensi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px
}

.potensi-card {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  aspect-ratio: 1.45;
  background: #ccc
}

.potensi-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s
}

.potensi-card:hover img {
  transform: scale(1.06)
}

.potensi-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .7))
}

.potensi-card div {
  position: absolute;
  z-index: 2;
  left: 9px;
  right: 6px;
  bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 5px #000
}

.potensi-card b {
  display: block;
  font-size: 9px
}

.potensi-card small {
  font-size: 6px;
  opacity: .9
}

.activities {
  padding-top: 30px
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px
}

.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  aspect-ratio: 1.7;
  background: #ddd
}

.activity-card:first-child {
  grid-column: span 2;
  aspect-ratio: 2.35
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.activity-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .48))
}

.activity-card span {
  position: absolute;
  z-index: 2;
  left: 9px;
  bottom: 8px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  text-shadow: 0 2px 5px #000
}

.asset-note {
  font-size: 8px;
  color: #888
}

.closing {
  position: relative;
  display: grid;
  gap: 0;
  background: #fff;
  padding: 0;
  margin-top: 20px;
  border-radius: 0;
  overflow: hidden
}

.closing-image {
  height: 230px
}

.closing-image img {
  margin-top: 35px;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.closing-copy {
  padding: 22px 18px 27px;
  background: linear-gradient(110deg, #fff, #faf6f0)
}

.closing-copy h2 {
  font-size: 22px;
  line-height: 1.05;
  margin: 7px 0 16px
}

.closing-copy em {
  font-style: normal;
  color: var(--red)
}

.closing-intro {
  margin: 0 0 16px;
  max-width: 520px;
  color: #6f6363;
  font-size: 12px;
  line-height: 1.65
}

.closing-form {
  display: grid;
  gap: 10px;
  max-width: 520px
}

.form-field {
  display: grid;
  gap: 5px
}

.form-field label {
  font-size: 9px;
  font-weight: 700;
  color: #4f4545;
  letter-spacing: .02em
}

.form-field label span {
  font-weight: 400;
  color: #9a8e8e
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #ded6cf;
  border-radius: 9px;
  background: #fff;
  color: #252020;
  padding: 10px 11px;
  font: inherit;
  font-size: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical
}

.form-field textarea {
  min-height: 86px
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #b71829;
  box-shadow: 0 0 0 3px #b7182912
}

.closing-submit {
  border: 0;
  cursor: pointer;
  width: max-content
}

.closing-submit:disabled {
  opacity: .65;
  cursor: wait
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background: #f1eee7;
  padding-top: 45px;
  padding-bottom: 45px
}

.contact h2 {
  font-size: 25px;
  line-height: 1.02;
  margin: 6px 0 0
}

.contact h2 em {
  font-style: normal;
  color: var(--red)
}

.contact-number {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 7px
}

.contact-number span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 19px;
  font-weight: 950
}

.contact-number b {
  font-size: 11px
}

.contact-number small {
  font-size: 6px;
  line-height: 1.35;
  color: #777
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 18px calc(22px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #a50017, #78000f);
  color: #fff
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px
}

.footer-brand .brand-ball {
  background: #fff;
  color: var(--red)
}

.footer-brand strong {
  display: block;
  font-size: 10px
}

.footer-brand small {
  display: block;
  font-size: 5px;
  margin-top: 2px
}

.footer-social {
  display: flex;
  gap: 7px
}

.footer-social a {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 900
}

.footer-meta {
  display: grid;
  text-align: right
}

.footer-meta b {
  font-size: 7px
}

.footer-meta span {
  font-size: 5px;
  opacity: .8;
  margin-top: 2px
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.desktop-only {
  display: none
}

@media(min-width:600px) {
  .site-header {
    height: 72px;
    padding: 8px 4vw
  }

  .brand-ball {
    width: 35px;
    height: 35px;
    flex-basis: 35px
  }

  .brand-copy strong {
    font-size: 14px
  }

  .brand-copy small {
    font-size: 5.5px
  }

  .brand-copy b {
    font-size: 8px
  }

  .nav-toggle {
    display: none
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    gap: 20px
  }

  .main-nav>a {
    padding: 7px 0;
    font-size: 12px;
    font-weight: 400
  }

  .nav-vote {
    padding: 9px 15px !important;
    margin: 0 !important
  }

  .hero {
    min-height: 680px
  }

  .hero-copy {
    left: 7%;
    top: 22%;
    max-width: 45%
  }

  .hero-person {
    height: 94%;
    right: 7%;
    width: 48%
  }

  .hero-number {
    right: 7%;
    top: 19%
  }

  .feature-strip {
    max-width: 940px;
    margin: -32px auto 0;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    padding: 12px
  }

  .section {
    max-width: 1100px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px
  }

  .vision-mission {
    grid-template-columns: .78fr 1.22fr;
    gap: 15px;
    padding-top: 55px
  }

  .vm-card {
    padding: 20px
  }

  .vision-card p {
    font-size: 11px
  }

  .mission-list {
    columns: 1
  }

  .mission-list li {
    font-size: 10px
  }

  .potensi {
    padding-top: 35px
  }

  .potensi-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .activities {
    padding-top: 45px
  }

  .activity-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .activity-card:first-child {
    grid-column: auto;
    aspect-ratio: 1.7
  }

  .closing {
    max-width: 1100px;
    margin: 30px auto 0;
    border-radius: 10px;
    grid-template-columns: 1.15fr .95fr
  }

  .closing-image {
    height: 270px;
    grid-row: span 2
  }

  .closing-copy {
    padding: 40px 30px
  }

  .contact {
    max-width: none;
    padding-left: 8vw;
    padding-right: 8vw
  }

  .site-footer {
    padding-left: 6vw;
    padding-right: 6vw
  }

  .desktop-only {
    display: block
  }
}

@media(min-width:900px) {
  .hero-copy {
    top: 25%
  }

  .hero h1 {
    font-size: clamp(48px, 5.3vw, 75px)
  }

  .hero-number {
    width: 120px;
    height: 140px
  }

  .hero-number strong {
    font-size: 82px
  }

  .hero-desc {
    font-size: 12px
  }

  .section-head h2 {
    font-size: 24px
  }
}

@media(max-width:380px) {
  .hero-copy {
    left: 5%;
    top: 19%;
    max-width: 55%
  }

  .hero h1 {
    font-size: 29px
  }

  .hero-desc {
    font-size: 8px
  }

  .hero-person {
    right: -9%;
    width: 63%;
    height: 78%
  }

  .hero-number {
    right: 4%;
    top: 17%;
    width: 78px;
    height: 93px
  }

  .hero-number strong {
    font-size: 54px
  }

  .hero-signature {
    right: 7%;
    bottom: 16%;
    font-size: 34px
  }

  .contact {
    grid-template-columns: 1fr
  }

  .contact-number {
    justify-self: start
  }
}

/* =========================================================
   MOBILE HERO POLISH
========================================================= */
@media (max-width: 599px) {
  .hero-copy {
    left: 6%;
    top: 31%;
    max-width: 55%;
    z-index: 6;
  }

  .hero-person {
    right: -10%;
    bottom: -4%;
    width: 74%;
    height: 86%;
    z-index: 4;
    align-items: flex-end;
  }

  .hero-person img {
    height: 60%;
    object-position: center bottom;
  }

  .hero-number {
    right: 5%;
    top: 16%;
    z-index: 7;
  }

  .hero-signature {
    right: 8%;
    bottom: 13%;
    z-index: 8;
  }
}

@media (max-width:380px) {
  .hero-copy {
    left: 5%;
    top: 29%;
    max-width: 58%;
  }

  .hero-person {
    object-position: right bottom;
    position: absolute;
    right: 0%;
    bottom: 40px;
    width: 80%;
    height: 100%;
  }

  .hero-number {
    right: 4%;
    top: 15%;
  }

  .hero-signature {
    right: 7%;
    bottom: 14%;
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }
}

/* =========================================================
   ADDED INFORMATIONAL SECTIONS
========================================================= */
.commitment {
  background: #f1ece6;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.commitment-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5ddd6;
  overflow: hidden;
  box-shadow: 0 14px 30px #3b1a1a0d;
}

.commitment-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #b7182912;
}

.commitment-no {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #b71829;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 18px;
}

.commitment-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.commitment-card p {
  margin: 0;
  color: #66595a;
  font-size: 13px;
  line-height: 1.7;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
  max-width: 430px;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 18px;
  background: #b71829;
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #eee;
}

.about-copy h2,
.service h2,
.priority-program h2 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -2px;
}

.about-copy>p {
  max-width: 650px;
  color: #66595a;
  font-size: 16px;
  line-height: 1.8;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.about-fact {
  padding: 16px;
  background: #f7f3ef;
  border-left: 3px solid #b71829;
}

.about-fact b,
.about-fact span {
  display: block;
}

.about-fact b {
  font-size: 13px;
  margin-bottom: 4px;
}

.about-fact span {
  font-size: 11px;
  color: #776b6c;
  line-height: 1.5;
}

.service {
  background: #eee7df;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-card {
  padding: 26px;
  background: #fff;
  border-top: 4px solid #b71829;
  min-height: 180px;
  box-shadow: 0 12px 28px #3b1a1a0c;
}

.experience-year {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: #b71829;
}

.experience-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.experience-card p {
  margin: 0;
  color: #66595a;
  font-size: 13px;
  line-height: 1.7;
}

.priority-program {
  background: #fff;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.program-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  min-height: 150px;
  border: 1px solid #e4dcd5;
  background: linear-gradient(135deg, #fff, #f8f4ef);
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #b71829;
}

.program-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b71829;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.program-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.program-card p {
  margin: 0;
  color: #6d6161;
  font-size: 12px;
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #5b1019;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.contact::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  border: 70px solid #fff0;
  box-shadow: 0 0 0 1px #ffffff18, 0 0 0 50px #ffffff08;
}

.contact h2 {
  margin: 10px 0 15px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.contact h2 em {
  color: #fff;
}

.contact-copy p {
  max-width: 580px;
  color: #eadbdd;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 125px;
  padding: 20px;
  background: #fff;
  color: #261c1d;
  border-radius: 4px;
  transition: transform .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card b {
  font-size: 14px;
}

.contact-card span {
  font-size: 12px;
  color: #756869;
  line-height: 1.5;
}

.contact-card .contact-arrow {
  margin-top: auto;
  color: #b71829;
  font-weight: 900;
}

@media (max-width:850px) {
  .commitment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    margin: auto;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width:500px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    min-height: 160px;
  }
}

/* =========================================================
   VISI & MISI — STRONGER INFORMATION HIERARCHY
========================================================= */
.vision-mission {
  position: relative;
}

.vision-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eaded8;
  border-top: 5px solid var(--red);
  background: linear-gradient(135deg, #fff 0%, #fffaf7 100%);
}

.vision-card::after {
  content: "VISI";
  position: absolute;
  right: -12px;
  bottom: -30px;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(179, 10, 30, .045);
  pointer-events: none;
}

.vision-card .card-title h2,
.mission-card-wrap .card-title h2 {
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -.02em;
}

.vision-card .card-title span {
  font-size: 28px;
}

.vision-card p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.7;
  font-weight: 650;
  color: #2b2525;
}

/* Individual mission cards */
.mission-list {
  list-style: none;
  counter-reset: mission;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mission-list li {
  position: relative;
  min-height: 150px;
  margin: 0;
  padding: 20px 18px 18px 58px;
  border: 1px solid #e8ded8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(55, 18, 8, .06);
  font-size: 13px;
  line-height: 1.6;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mission-list li::before {
  counter-increment: mission;
  content: counter(mission, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 17px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .04em;
}

.mission-list li:hover {
  transform: translateY(-3px);
  border-color: #d9bbb9;
  box-shadow: 0 16px 34px rgba(55, 18, 8, .1);
}

.mission-list li span {
  display: block;
  margin: 0 0 7px;
  color: #281f20;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.mission-list li p {
  margin: 0;
  color: #6d6161;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   KEGIATAN — MOSAIC GALLERY
========================================================= */
.activities {
  background: #f3efe9;
}

.activity-grid {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  margin: 0;
  border-radius: 14px;
  background: #d9d4cf;
  box-shadow: 0 12px 30px rgba(45, 20, 12, .09);
}

.activity-card:first-child {
  grid-column: span 7;
  grid-row: span 2;
  aspect-ratio: auto;
}

.activity-card:nth-child(2) {
  grid-column: span 5;
}

.activity-card:nth-child(3) {
  grid-column: span 5;
}

.activity-card:nth-child(4) {
  grid-column: span 7;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.activity-card:hover img {
  transform: scale(1.055);
}

.activity-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.72) 100%);
}

.activity-card span {
  left: 16px;
  bottom: 14px;
  font-size: 13px;
  letter-spacing: .01em;
}

@media (max-width: 850px) {
  .vision-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .activity-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: auto;
  }

  .activity-card:nth-child(2),
  .activity-card:nth-child(3),
  .activity-card:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 500px) {
  .vision-card p {
    font-size: 14px;
  }

  .mission-list li {
    min-height: 0;
    padding: 18px 15px 17px 54px;
  }

  .mission-list li span {
    font-size: 12px;
  }

  .mission-list li p {
    font-size: 10px;
  }

  .activity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-auto-rows: 130px;
  }

  .activity-card {
    min-height: 130px;
    border-radius: 9px;
  }

  .activity-card span {
    left: 10px;
    bottom: 9px;
    font-size: 8px;
  }
}

@media (min-width: 900px) {
  .vision-mission {
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: 22px;
    align-items: start;
  }

  .vision-card,
  .mission-card-wrap {
    min-height: 100%;
    padding: 28px;
  }

  .vision-card p {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.75;
  }

  .mission-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mission-list li {
    min-height: 190px;
    padding: 22px 20px 20px 64px;
  }

  .mission-list li span {
    font-size: 16px;
  }

  .mission-list li p {
    font-size: 13px;
  }

  .activities {
    max-width: 1180px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .activity-grid {
    min-height: 520px;
    grid-auto-rows: 245px;
  }
}
