/* =========================================================
   RA BUSTANUL QOLBI — Design tokens
   Palette: deep teal (trust/Islamic calm) + marigold (childhood joy)
   + coral (warmth/CTA) on a warm cream "craft paper" base.
   Type: Baloo 2 (rounded display) + Plus Jakarta Sans (body/utility)
   Signature: torn-paper craft edges + crescent-moon/star bullet motif
   ========================================================= */

:root{
  --cream: #FBF3E3;
  --cream-deep: #F3E6CC;
  --ink: #223330;
  --ink-soft: #4A5D58;
  --teal: #1D6E5C;
  --teal-deep: #123F35;
  --teal-tint: #DCEDE7;
  --marigold: #F0A63B;
  --marigold-soft: #FBE3B8;
  --coral: #E6684B;
  --coral-deep: #C94F34;
  --sky: #CFE7E2;
  --paper-shadow: 0 18px 40px -18px rgba(18, 63, 53, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-display: "Baloo 2", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --container: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html:focus-within{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--teal-deep);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
}

p{ margin: 0 0 1em; }
a{ color: inherit; }
img{ max-width: 100%; display: block; }
ul{ padding: 0; margin: 0; list-style: none; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 10px;
}
.eyebrow::before{
  content: "";
  width: 18px; height: 2px;
  background: var(--coral-deep);
  display: inline-block;
  border-radius: 2px;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

/* =========================
   Buttons
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(230,104,75,.65);
}
.btn-primary:hover{ background: var(--coral-deep); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-deep);
}
.btn-outline:hover{ background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-light{
  background: #fff;
  color: var(--teal-deep);
}
.btn-light:hover{ background: var(--marigold-soft); transform: translateY(-2px); }
.btn-block{ width: 100%; }

/* =========================
   Header / Nav
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,243,227,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(18,63,53,.08);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--teal-deep);
}
.brand-mark{ width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; }
.footer-brand img{ object-fit: contain; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong{ font-family: var(--font-display); font-size: 1.15rem; }
.brand-text span{ font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a{
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover{ background: var(--teal-tint); color: var(--teal-deep); }
.nav-links a.active{ background: var(--teal); color: #fff; }

.nav-cta{ display: flex; align-items: center; gap: 10px; }

.nav-toggle{
  display: none;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg{ width: 22px; height: 22px; }

@media (max-width: 900px){
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 18px;
    box-shadow: 0 16px 24px -16px rgba(18,63,53,.3);
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ padding: 12px 14px; text-align: left; }
  .nav-toggle{ display: inline-flex; }
  .nav-cta .btn-outline{ display: none; }
}

/* =========================
   Hero
   ========================= */
.hero{
  position: relative;
  overflow: hidden;
  padding: 64px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: .4em;
}
.hero h1 em{
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.hero-lead{ font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-facts{
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-fact strong{ display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-deep); }
.hero-fact span{ font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

.hero-art{ position: relative; }
.hero-art svg{ width: 100%; height: auto; }

.hero-photo-wrap{ position: relative; width: 100%; max-width: 460px; margin: 0 auto; }
.hero-photo-bg{ position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-photo-frame{
  position: relative;
  z-index: 1;
  margin: 8% auto;
  width: 86%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--paper-shadow);
  border: 7px solid #fff;
}
.hero-photo-frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}
.hero-dot{
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}
.hero-dot.dot-1{ width: 22px; height: 22px; background: var(--coral); top: 6%; left: 4%; }
.hero-dot.dot-2{ width: 14px; height: 14px; background: var(--marigold); bottom: 10%; right: 2%; }
.hero-plus{
  position: absolute;
  z-index: 2;
  color: var(--marigold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.hero-plus.plus-1{ top: 2%; right: 14%; }
.hero-plus.plus-2{ bottom: 4%; left: 10%; color: var(--coral); }

/* =========================
   Torn paper craft edges (signature element)
   ========================= */
.torn-top{
  clip-path: polygon(
    0% 3%, 4% 0%, 9% 4%, 14% 1%, 19% 5%, 24% 0%, 29% 3%, 34% 0%, 39% 4%,
    44% 1%, 49% 5%, 54% 0%, 59% 3%, 64% 1%, 69% 5%, 74% 0%, 79% 3%, 84% 1%,
    89% 4%, 94% 0%, 100% 3%, 100% 100%, 0% 100%
  );
}
.torn-bottom{
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 97%, 96% 100%, 91% 96%, 86% 100%, 81% 97%, 76% 100%,
    71% 96%, 66% 100%, 61% 97%, 56% 100%, 51% 96%, 46% 100%, 41% 97%, 36% 100%,
    31% 96%, 26% 100%, 21% 97%, 16% 100%, 11% 96%, 6% 100%, 0% 97%
  );
}
.torn-band{
  position: relative;
  padding: 90px 0 100px;
}
.torn-band::before{
  content: "";
  position: absolute; inset: 0;
  background: inherit;
}

.section-teal{ background: var(--teal-deep); color: #fff; }
.section-teal h2, .section-teal h3{ color: #fff; }
.section-marigold{ background: var(--marigold-soft); }
.section-cream{ background: var(--cream); }
.section-white{ background: #fff; }

section{ position: relative; }

/* =========================
   Sections generic
   ========================= */
.section{ padding: 84px 0; }
.section-head{ max-width: 680px; margin: 0 0 44px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* Crescent-star bullet list (signature motif) */
.moon-list{ display: flex; flex-direction: column; gap: 18px; }
.moon-list li{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.moon-list .motif{
  flex-shrink: 0;
  width: 34px; height: 34px;
  margin-top: 2px;
}
.moon-list p{ margin: 0; color: var(--ink-soft); }
.moon-list strong{ color: var(--ink); }

/* =========================
   Cards
   ========================= */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--paper-shadow);
  border: 1px solid rgba(18,63,53,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-4px); }
.card .icon{
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-tint);
  margin-bottom: 16px;
}
.card .icon svg{ width: 28px; height: 28px; }
.card h3{ font-size: 1.15rem; margin-bottom: 8px; }
.card p{ color: var(--ink-soft); font-size: .95rem; margin: 0; }

.info-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--paper-shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-card .icon{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--marigold-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card .icon svg{ width: 22px; height: 22px; }
.info-card h4{ margin: 0 0 4px; font-size: 1rem; color: var(--teal-deep); }
.info-card p{ margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* =========================
   CTA banner
   ========================= */
.cta-banner{
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2{ color: #fff; margin-bottom: 6px; }
.cta-banner p{ color: rgba(255,255,255,.85); margin: 0; max-width: 46ch; }
.cta-banner .stars{ position: absolute; inset: 0; opacity: .12; pointer-events: none; }

/* =========================
   Struktur organisasi (org chart) — versi diagram
   ========================= */
.orgchart{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 20px;
}
.oc-box{
  background: #fff;
  border: 2px solid var(--teal-deep);
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  text-align: center;
  box-shadow: var(--paper-shadow);
  min-width: 230px;
}
.oc-box.oc-side{ min-width: 170px; border-color: var(--coral); }
.oc-box.oc-final{ background: var(--teal-deep); border-color: var(--teal-deep); }
.oc-box.oc-final .oc-role{ color: #fff; text-decoration: none; }
.oc-role{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: .01em;
}
.oc-name{ font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

.oc-line-v{ width: 2px; height: 30px; background: var(--sky); }

.oc-branch-row{ display: flex; align-items: center; }
.oc-line-h{ width: 46px; height: 2px; background: var(--sky); flex-shrink: 0; }

.oc-split{ display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 520px; }
.oc-split-connector{ position: relative; width: 100%; height: 30px; }
.oc-split-bar{ position: absolute; top: 0; left: 25%; right: 25%; height: 2px; background: var(--sky); }
.oc-split-stem{ position: absolute; top: 0; width: 2px; height: 30px; background: var(--sky); }
.oc-split-stem.left{ left: 25%; }
.oc-split-stem.right{ right: 25%; }
.oc-split-boxes{ display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.oc-split-boxes .oc-box{ justify-self: center; }

@media (max-width: 700px){
  .oc-branch-row{ flex-direction: column; }
  .oc-line-h{ width: 2px; height: 24px; }
  .oc-split-boxes{ grid-template-columns: 1fr; gap: 20px; }
  .oc-split-boxes .oc-box{ justify-self: center; }
  .oc-split-bar{ left: 50%; right: 50%; }
  .oc-split-stem.left, .oc-split-stem.right{ left: 50%; }
  .oc-split-connector{ height: 20px; }
  .oc-line-v{ height: 20px; }
}

/* =========================
   Struktur organisasi (org chart, legacy card style still used elsewhere)
   ========================= */
.org-tier{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  position: relative;
}
.org-card{
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--paper-shadow);
  padding: 18px 20px;
  min-width: 200px;
  text-align: center;
  border-top: 5px solid var(--teal);
}
.org-card.accent{ border-top-color: var(--coral); }
.org-card.gold{ border-top-color: var(--marigold); }
.org-card .role{
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--coral-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
.org-card .name{ font-family: var(--font-display); font-size: 1.05rem; color: var(--teal-deep); }
.org-connector{
  width: 2px; height: 26px; background: var(--sky);
  margin: 0 auto;
}

/* =========================
   Timeline (visi/tujuan steps use moon-list; sambutan / process)
   ========================= */
.timeline{ display: flex; flex-direction: column; gap: 0; }
.timeline-item{
  display: flex; gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item::before{
  content: "";
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 2px;
  background: var(--sky);
}
.timeline-item:last-child::before{ display: none; }
.timeline-badge{
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  z-index: 1;
}
.timeline-content h4{ margin: 0 0 4px; font-size: 1.05rem; }
.timeline-content p{ margin: 0; color: var(--ink-soft); font-size: .93rem; }

/* =========================
   Forms
   ========================= */
.form-shell{
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--paper-shadow);
  padding: 40px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group{ margin-bottom: 20px; }
.form-group.full{ grid-column: 1 / -1; }
label{
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
label .req{ color: var(--coral); }
input, select, textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: .96rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #DDD1B8;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
input:focus, select:focus, textarea:focus{
  border-color: var(--teal);
  background: #fff;
  outline: none;
}
textarea{ resize: vertical; min-height: 100px; }
.form-hint{ font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.form-status{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.form-status.show{ display: block; }
.form-status.ok{ background: var(--teal-tint); color: var(--teal-deep); }
.form-status.err{ background: #FCE2DA; color: var(--coral-deep); }
.form-status.pending{ background: var(--marigold-soft); color: #7A4E12; }

fieldset{ border: none; padding: 0; margin: 0 0 24px; }
legend{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-deep);
  margin-bottom: 14px;
  padding: 0;
}

@media (max-width: 700px){
  .form-row{ grid-template-columns: 1fr; }
  .form-shell{ padding: 26px 20px; }
}

/* =========================
   Footer
   ========================= */
.site-footer{
  background: var(--teal-deep);
  color: rgba(255,255,255,.85);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand{ display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand strong{ color: #fff; font-family: var(--font-display); font-size: 1.2rem; }
.site-footer h4{ color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-links{ display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ text-decoration: none; color: rgba(255,255,255,.75); font-size: .92rem; transition: color .15s ease; }
.footer-links a:hover{ color: var(--marigold); }
.footer-contact li{ display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; align-items: flex-start; }
.footer-contact svg{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--marigold); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 22px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
}

/* =========================
   Page banner (inner pages)
   ========================= */
.page-banner{
  background: var(--teal-deep);
  color: #fff;
  padding: 56px 0 88px;
  text-align: center;
}
.page-banner h1{ color: #fff; margin-bottom: 8px; }
.page-banner p{ color: rgba(255,255,255,.8); max-width: 56ch; margin: 0 auto; }
.breadcrumb{
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.breadcrumb a{ text-decoration: none; color: rgba(255,255,255,.85); }

/* =========================
   Utility
   ========================= */
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; max-width: 340px; margin: 0 auto; }
}

.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.tag-pill{
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 6px 6px 0;
}

.quote-block{
  background: var(--marigold-soft);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal-deep);
  text-align: center;
}

/* =========================
   Galeri
   ========================= */
.gallery-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-pill{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--teal);
  background: transparent;
  color: var(--teal-deep);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.filter-pill:hover{ background: var(--teal-tint); }
.filter-pill.active{ background: var(--teal); color: #fff; }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--paper-shadow);
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
}
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item .gallery-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(18,63,53,0) 0%, rgba(18,63,53,.85) 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-item:hover .gallery-caption{ opacity: 1; transform: translateY(0); }
.gallery-item.hidden{ display: none; }

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(18, 26, 24, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox img{
  max-width: 88vw;
  max-height: 78vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.lightbox-caption{
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
}
.lightbox-close{
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav.prev{ left: 20px; }
.lightbox-nav.next{ right: 20px; }
@media (max-width: 700px){
  .lightbox-nav{ width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox{ padding: 16px; }
}

/* Program page mini photo strip */
.program-photo{
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 16 / 10;
}
.program-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }

table.info-table{ width: 100%; border-collapse: collapse; }
table.info-table td{
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-deep);
  vertical-align: top;
  font-size: .95rem;
}
table.info-table td:first-child{ width: 180px; color: var(--ink-soft); font-weight: 600; }
