/* ==========================================================================
   LITTLE GENQU — Islamic Montessori Daycare & Casa
   Stylesheet
   Struktur:
   1. Font & Reset
   2. Design Tokens
   3. Utilities & Layout
   4. Header & Navigasi
   5. Hero
   6. Statistik
   7. Pembatas Section (lengkung ala jendela masjid)
   8. Profil Lembaga
   9. Program / Layanan
   10. Jalur Tumbuh Kembang (elemen signature)
   11. Nilai-Nilai (kartu flip)
   12. Visi & Misi
   13. Banner Slogan
   14. Kontak & Formulir
   15. Footer
   16. Komponen kecil (tombol, badge, tombol ke atas)
   17. Animasi
   18. Aksesibilitas & Responsif
   ========================================================================== */

/* ---------- 1. Font & Reset ---------- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Warna diambil dari logo Little GenQu: ungu tua, ungu muda, pink, terracotta, teal */
  --plum-950: #2B0847;
  --plum-800: #3D1160;
  --plum-700: #4A1568;
  --plum-500: #7B4FA0;
  --lilac-300: #C6AEEA;
  --lilac-100: #EFE6FA;
  --pink-600: #D9557A;
  --pink-500: #E8708C;
  --pink-100: #FBE3EA;
  --terracotta-600: #A8432E;
  --terracotta-500: #BE5A3C;
  --terracotta-100: #F5E1DB;
  --teal-600: #2E8F86;
  --teal-500: #3FA79D;
  --gold-400: #E8B75C;
  --cream-50: #FDF7FC;
  --cream-100: #FBF1F7;
  --ink-900: #241B2E;
  --ink-700: #4D4257;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --shadow-soft: 0 10px 30px -12px rgba(43, 8, 71, 0.18);
  --shadow-strong: 0 20px 45px -15px rgba(43, 8, 71, 0.28);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- 3. Utilities & Layout ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding: clamp(56px, 9vw, 108px) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-600);
  background: var(--pink-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.eyebrow svg { width: 14px; height: 14px; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--plum-800);
  line-height: 1.2;
}

.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- 4. Header & Navigasi ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(253, 247, 252, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px -16px rgba(43, 8, 71, 0.35);
  border-color: var(--lilac-100);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-700);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { color: var(--plum-700); background: var(--lilac-100); }
.nav-links a.active { color: var(--plum-700); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--pink-500);
}

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

.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--plum-700);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(74, 21, 104, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(74, 21, 104, 0.65); }

.btn-secondary {
  background: transparent;
  color: var(--plum-700);
  border-color: var(--lilac-700);
  box-shadow: 0 10px 24px -10px rgba(74, 21, 104, 0.6);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(74, 21, 104, 0.65); }

.btn-ghost {
  background: transparent;
  border-color: var(--lilac-300);
  color: var(--plum-700);
}
.btn-ghost:hover { background: var(--lilac-100); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
.menu-toggle:hover { background: var(--lilac-100); }
.menu-toggle .bar {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--plum-700);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle .bar::before,
.menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--plum-700);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.menu-toggle .bar::before { top: -7px; }
.menu-toggle .bar::after { top: 7px; }
.menu-toggle.open .bar { background: transparent; }
.menu-toggle.open .bar::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open .bar::after { top: 0; transform: rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: 148px 0 90px;
  overflow: hidden;
}

.hero-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-deco span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 7s ease-in-out infinite;
}
.hero-deco .d1 { width: 90px; height: 90px; background: var(--lilac-300); top: 8%; left: 4%; animation-delay: 0s; }
.hero-deco .d2 { width: 46px; height: 46px; background: var(--pink-500); top: 65%; left: 10%; animation-delay: 1.2s; }
.hero-deco .d3 { width: 60px; height: 60px; background: var(--teal-500); top: 18%; right: 6%; animation-delay: 0.6s; }
.hero-deco .d4 { width: 34px; height: 34px; background: var(--gold-400); bottom: 10%; right: 14%; animation-delay: 1.8s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 6vw, 64px);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  color: var(--plum-800);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--pink-600);
}

.hero-copy .translation {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-700);
  font-style: italic;
}

.hero-copy .desc {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--lilac-100);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--plum-700);
  box-shadow: var(--shadow-soft);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--teal-600); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .plate {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 0.95;
  background: linear-gradient(155deg, var(--lilac-100) 0%, var(--pink-100) 55%, var(--white) 100%);
  border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  box-shadow: var(--shadow-strong);
  animation: blob-morph 12s ease-in-out infinite;
}
.hero-visual img { width: 100%; filter: drop-shadow(0 18px 30px rgba(43,8,71,0.18)); }
.hero-visual .ring {
  position: absolute;
  border: 3px dashed var(--lilac-300);
  border-radius: 50%;
  width: 108%;
  height: 108%;
  animation: spin-slow 40s linear infinite;
}

/* ---------- 6. Statistik ---------- */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}
.stats-bar {
  background: var(--plum-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px clamp(16px, 4vw, 40px);
}
.stat {
  text-align: center;
  color: var(--white);
  padding: 10px 8px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,0.16);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-400);
  display: block;
}
.stat .label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lilac-100);
  line-height: 1.4;
}

/* ---------- 7. Pembatas Section (lengkung jendela) ---------- */
.arch-divider {
  width: 100%;
  height: 44px;
  line-height: 0;
}
.arch-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- 8. Profil Lembaga ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.identity-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
}
.identity-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--plum-800);
  margin-bottom: 18px;
}
.identity-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--lilac-300);
}
.identity-row:last-child { border-bottom: none; }
.identity-row .ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lilac-100);
  color: var(--plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.identity-row .ico svg { width: 18px; height: 18px; }
.identity-row .txt .k {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink-600);
  font-weight: 700;
}
.identity-row .txt .v {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 2px;
  line-height: 1.4;
}

.about-copy p { font-size: 16.5px; line-height: 1.8; color: var(--ink-700); }
.about-copy p + p { margin-top: 16px; }
.about-copy .accent { color: var(--plum-700); font-weight: 700; }

.about-quote {
  margin-top: 24px;
  border-left: 4px solid var(--pink-500);
  padding-left: 18px;
  font-style: italic;
  color: var(--plum-700);
  font-weight: 600;
  font-size: 16px;
}

/* ---------- 9. Program / Layanan ---------- */
.programs { background: var(--cream-50); }

.age-path { margin-bottom: 44px; }
.age-path svg { width: 100%; height: auto; display: block; }
.age-node {
  cursor: pointer;
}
.age-node circle.dot {
  transition: r 0.25s ease, fill 0.25s ease;
}
.age-node text { font-family: var(--font-body); font-weight: 700; }
.age-node.active circle.dot { fill: var(--pink-500); }
.age-node:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 4px; border-radius: 50%; }
.age-path-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s ease;
}
.age-path.in-view .age-path-line { stroke-dashoffset: 0; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}
.tab-btn {
  flex: 1;
  min-width: 140px;
  background: transparent;
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink-700);
  transition: background 0.25s ease, color 0.25s ease;
}
.tab-btn.active { background: var(--plum-700); color: var(--white); }
.tab-btn:not(.active):hover { background: var(--lilac-100); }

.tab-panels { position: relative; }
.tab-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  animation: fade-up 0.5s ease both;
}

.tab-panel .age-tag {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.tab-panel h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--plum-800);
  margin-bottom: 12px;
}
.tab-panel p { color: var(--ink-700); line-height: 1.75; font-size: 16px; }

.focus-list { display: flex; flex-direction: column; gap: 10px; }
.focus-list .fl-head {
  font-weight: 700;
  color: var(--plum-700);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.focus-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-50);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.focus-chip .ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--lilac-100);
  color: var(--plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.focus-chip .ico svg { width: 16px; height: 16px; }

/* ---------- 11. Nilai-Nilai (kartu flip) ---------- */
.values { background: var(--white); }

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

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

.value-card {
  perspective: 1200px;
  height: 220px;
}
.value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.value-card.flipped .value-card-inner { transform: rotateY(180deg); }
.value-card:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 4px; border-radius: var(--radius-md); }

.value-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.value-front {
  background: var(--cream-50);
  border: 1px solid var(--lilac-100);
  align-items: flex-start;
  justify-content: space-between;
}
.value-front .ico {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.value-front .ico svg { width: 24px; height: 24px; }
.value-front h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--plum-800);
  margin-top: 12px;
}
.value-front .tap-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.value-front .tap-hint svg { width: 14px; height: 14px; }

.value-back {
  background: var(--plum-700);
  color: var(--white);
  transform: rotateY(180deg);
  justify-content: center;
}
.value-back h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; color: var(--gold-400); }
.value-back p { font-size: 14px; line-height: 1.6; color: var(--lilac-100); }

/* ---------- 12. Visi & Misi ---------- */
.vision { background: var(--plum-800); color: var(--white); position: relative; overflow: hidden; }
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0, transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06) 0, transparent 40%);
}
.vision .wrap { position: relative; z-index: 1; }
.vision .section-head h2, .vision .eyebrow { color: var(--white); }
.vision .eyebrow { background: rgba(255,255,255,0.12); color: var(--gold-400); }
.vision .section-head p { color: var(--lilac-100); }

.vm-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.vision-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-card .vlabel {
  font-family: var(--font-display);
  color: var(--gold-400);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vision-card p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--white);
}

.mission-list { display: flex; flex-direction: column; gap: 12px; }
.mission-item {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 16px 18px;
  align-items: flex-start;
}
.mission-item .midx {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum-800);
  background: var(--gold-400);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.mission-item p { font-size: 15px; line-height: 1.55; color: var(--lilac-100); }

/* ---------- 13. Banner Slogan ---------- */
.slogan-banner {
  background: linear-gradient(120deg, var(--pink-500), var(--terracotta-500));
  color: var(--white);
  text-align: center;
  padding: clamp(48px, 7vw, 72px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.slogan-banner .quote-mark {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 0.6;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 8px;
}
.slogan-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.3;
}
.slogan-banner .tr {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.92;
}
.slogan-banner .sub {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ---------- 14. Kontak & Formulir ---------- */
.contact { background: var(--cream-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--plum-800);
  margin-bottom: 18px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--lilac-300);
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line .ico {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--lilac-100); color: var(--plum-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-line .ico svg { width: 18px; height: 18px; }
.contact-line .v { font-size: 15px; font-weight: 600; line-height: 1.5; }
.contact-line .v .placeholder-note {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-600);
  margin-top: 2px;
}
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-50); color: var(--plum-700);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--plum-700); color: var(--white); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { font-family: var(--font-display); font-size: 21px; color: var(--plum-800); margin-bottom: 6px; }
.contact-form .hint { font-size: 14px; color: var(--ink-700); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1.5px solid var(--lilac-100);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px var(--pink-100);
}
.field textarea { resize: vertical; min-height: 90px; }
.field.error input,
.field.error select { border-color: var(--terracotta-600); }
.field .err-msg {
  display: none;
  font-size: 12px;
  color: var(--terracotta-600);
  font-weight: 700;
  margin-top: 5px;
}
.field.error .err-msg { display: block; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-600);
  display: none;
}
.form-status.show { display: block; }

/* ---------- 15. Footer ---------- */
.site-footer {
  background: var(--plum-950);
  color: var(--lilac-100);
  border-radius: 40px 40px 0 0;
  padding: clamp(40px, 6vw, 64px) 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr;
  gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 38px; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.site-footer p { font-size: 14px; line-height: 1.7; color: var(--lilac-100); max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: var(--lilac-100); transition: color 0.2s ease, padding 0.2s ease; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--gold-400); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(239, 230, 250, 0.6);
}

/* ---------- 16. Komponen kecil ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-600); }
.back-to-top svg { width: 20px; height: 20px; }

.photo {
  border: 0px dashed var(--lilac-300);
  border-radius: var(--radius-md);
  background: var(--lilac-100);
  color: var(--plum-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  min-height: 220px;
  font-size: 13px;
  font-weight: 700;
}

.photo-caption {
	color: var(--plum-700);
	text-align: center;
	gap: 8px;
	padding: 4px;
	font-size: 13px;
	font-weight: 700;
}
	

.photo svg { width: 34px; height: 34px; opacity: 0.7; }

.photo-placeholder {
  border: 2px dashed var(--lilac-300);
  border-radius: var(--radius-md);
  background: var(--lilac-100);
  color: var(--plum-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  min-height: 220px;
  font-size: 13px;
  font-weight: 700;
}
.photo-placeholder svg { width: 34px; height: 34px; opacity: 0.7; }

/* ---------- 17. Animasi ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%; }
  50% { border-radius: 58% 42% 42% 58% / 42% 58% 42% 58%; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 18. Aksesibilitas & Responsif ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-deco span, .hero-visual .plate, .hero-visual .ring { animation: none; }
  .age-path-line { transition: none; stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .about-grid, .vm-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .stat:nth-child(3)::before { display: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu {
    position: fixed;
    top: 84px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--lilac-100);
    box-shadow: var(--shadow-strong);
    padding: 12px var(--gutter) 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    padding: 13px 4px;
    font-weight: 700;
    color: var(--ink-900);
    border-bottom: 1px solid var(--cream-100);
  }
  .mobile-menu .btn { margin-top: 10px; }
  .value-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}
