/* ═══════════════════════════════════════════════════════════════
   GIRA COFFEE — Landing Design System
   Palet, tipografi, komponen, dan motion primitives.
   Prinsip: putih lapang, hijau brand sebagai aksen berwibawa,
   emas hanya untuk momen premium. 60fps: hanya transform & opacity
   yang dianimasikan.
═══════════════════════════════════════════════════════════════ */

/* ─── Fonts (self-hosted, variable) ─── */
@font-face {
  font-family: 'Jakarta';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/jakarta-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Jakarta';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/jakarta-var-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}

/* ─── Tokens ─── */
:root {
  --primary: #0C6851;
  --dark: #084B3A;
  --darker: #06382C;
  --mid: #2E8B73;
  --mint: #E8F5F1;
  --gray: #F7F8FA;
  --border: #E5E7EB;
  --text: #111827;
  --text-2: #6B7280;
  --gold: #C8A96A;
  --gold-soft: rgba(200, 169, 106, .14);

  --font-display: 'Jakarta', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .05), 0 0 0 1px rgba(17, 24, 39, .04);
  --shadow-md: 0 12px 32px -8px rgba(8, 75, 58, .12), 0 2px 8px rgba(17, 24, 39, .04);
  --shadow-lg: 0 32px 80px -16px rgba(8, 75, 58, .22), 0 8px 24px -8px rgba(17, 24, 39, .08);
  --shadow-glass: inset 0 1px 0 rgba(255, 255, 255, .7), 0 8px 32px rgba(8, 75, 58, .10);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --container: 1140px;
  --nav-h: 76px;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--mint); color: var(--dark); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: #cfd6d3; border-radius: 5px; border: 2px solid var(--gray); }
::-webkit-scrollbar-thumb:hover { background: var(--mid); }

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

/* ─── Typography primitives ─── */
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--primary);
}
.overline::before { content: ''; width: 24px; height: 2px; border-radius: 2px; background: var(--gold); }
.overline--center { justify-content: center; }
.overline--center::after { content: ''; width: 24px; height: 2px; border-radius: 2px; background: var(--gold); }
.overline--light { color: #9fd8c6; }

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  color: var(--text);
}
.h-section {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  font-size: clamp(30px, 4.4vw, 46px);
  color: var(--text);
}
.h-section .accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}
.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--text-2);
}

/* Reveal per-baris untuk judul (di-mask) */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(110%); }

/* ─── Buttons ─── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  padding: 16px 30px; border-radius: var(--r-pill);
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s;
  will-change: transform;
}
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(12, 104, 81, .5), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(12, 104, 81, .55), inset 0 1px 0 rgba(255,255,255,.18); }

.btn--ghost {
  background: #fff; color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--primary), 0 12px 28px -12px rgba(8,75,58,.18); color: var(--primary); }

.btn--light {
  background: #fff; color: var(--dark);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .35);
}
.btn--light:hover { transform: translateY(-2px); }

.btn--outline-light {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .3);
}
.btn--outline-light:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .85); }

.btn--sm { padding: 11px 22px; font-size: 13.5px; }

/* ─── Chip / badge ─── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: #fff; color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--border);
}
.chip--gold {
  background: var(--gold-soft); color: #8a6f3c;
  box-shadow: inset 0 0 0 1px rgba(200, 169, 106, .35);
}
.chip--mint { background: var(--mint); color: var(--dark); box-shadow: none; }
.chip--gold-dark {
  background: rgba(200, 169, 106, .12); color: #E3C88F;
  box-shadow: inset 0 0 0 1px rgba(200, 169, 106, .35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ════════════════ LOADER ════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 200;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#loader img { height: 84px; width: auto; animation: loaderPulse 1.4s var(--ease-io) infinite; }
#loader .bar { width: 120px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
#loader .bar i { display: block; height: 100%; width: 40%; background: var(--primary); border-radius: 2px; animation: loaderSlide 1s var(--ease-io) infinite; }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.94); opacity: .75; } }
@keyframes loaderSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* ════════════════ PROGRESS ════════════════ */
#progress {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform-origin: left; transform: scaleX(0);
  z-index: 150; pointer-events: none;
}

/* ════════════════ NAVBAR ════════════════ */
#nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(var(--container), calc(100% - 32px));
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 22px;
  border-radius: var(--r-pill);
  transition: background .45s, box-shadow .45s, backdrop-filter .45s;
}
#nav.scrolled {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: var(--shadow-glass), inset 0 0 0 1px rgba(229, 231, 235, .6);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  letter-spacing: -.02em; color: var(--text);
  transition: color .45s;
}
.nav-logo b { color: var(--primary); font-weight: 800; transition: color .45s; }
/* Sebelum ter-scroll, nav melayang di atas hero gelap — teks harus terang. */
#nav:not(.scrolled) .nav-logo span { color: #fff; }
#nav:not(.scrolled) .nav-logo b { color: var(--gold); }
#nav:not(.scrolled) .nav-links a:not(.nav-cta) { color: rgba(255, 255, 255, .75); }
#nav:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: #fff; background: rgba(255, 255, 255, .1); }
#nav:not(.scrolled) .nav-burger span { background: #fff; }
/* CTA "Masuk" di atas hero gelap: pil hijau tua nyaris hilang — balik jadi putih. */
#nav:not(.scrolled) .nav-links a.nav-cta { background: #fff; color: var(--darker); }
#nav:not(.scrolled) .nav-links a.nav-cta:hover { background: var(--mint); color: var(--darker); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  position: relative;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--text-2); text-decoration: none;
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--text); background: var(--gray); }
/* Spesifisitas: .nav-links a (0,1,1) mengalahkan .btn--primary (0,1,0),
   membuat teks tombol ikut abu — dipertegas di sini. */
.nav-links a.nav-cta { margin-left: 10px; color: #fff; }
.nav-links a.nav-cta:hover { background: linear-gradient(135deg, var(--primary), var(--dark)); color: #fff; }
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: var(--r-pill);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: var(--font-display); font-size: clamp(26px, 7vw, 34px); font-weight: 800;
  letter-spacing: -.03em; color: var(--text); text-decoration: none;
  padding: 8px 20px;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .25s;
}
#mobile-menu.open a { opacity: 1; transform: translateY(0); }
#mobile-menu a:hover { color: var(--primary); }

/* ════════════════ HERO ════════════════ */
/* Hero gelap: kemewahan lewat kontras — emas hanya sebagai kilau tipis. */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: clip;
  background:
    radial-gradient(1000px 600px at 84% 10%, rgba(200, 169, 106, .13), transparent 60%),
    radial-gradient(800px 560px at 70% 75%, rgba(46, 139, 115, .22), transparent 65%),
    radial-gradient(600px 420px at 6% 90%, rgba(46, 139, 115, .14), transparent 60%),
    linear-gradient(165deg, #0A4636, #06382C 55%, #052A21);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  width: 100%;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 72px;
}
.hero-badge { margin-bottom: 26px; opacity: 0; }
.hero-h1 { font-size: clamp(44px, 6.6vw, 82px); margin-bottom: 26px; color: #fff; letter-spacing: -.04em; }
.hero-h1 .accent {
  font-style: italic; font-weight: 700;
  background: linear-gradient(95deg, var(--gold) 10%, #E8D5AC 45%, #9fd8c6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .06em; /* italic terpotong tanpa ini */
}
.hero-sub { max-width: 470px; margin-bottom: 38px; opacity: 0; color: rgba(255, 255, 255, .68); }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; opacity: 0; }
.hero-proof {
  display: flex; align-items: center; gap: 14px; margin-top: 44px; opacity: 0;
}
.hero-proof .faces { display: flex; }
.hero-proof .faces span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #06382C;
  background: linear-gradient(135deg, #E3C88F, var(--gold) 55%, #8a6f3c);
  display: flex; align-items: center; justify-content: center;
  color: #052A21; font-family: var(--font-display); font-weight: 800; font-size: 13px;
  margin-left: -10px;
}
.hero-proof .faces span:first-child { margin-left: 0; }
.hero-proof small { font-size: 13px; color: rgba(255, 255, 255, .55); line-height: 1.5; }
.hero-proof b { color: var(--gold); font-family: var(--font-display); }

/* Hero visual — panggung cangkir */
.hero-stage {
  position: relative;
  /* width eksplisit wajib: semua anaknya absolute (lebar intrinsik 0),
     dan margin auto mematikan stretch bawaan grid. */
  width: 100%;
  aspect-ratio: 1 / 1.02;
  max-width: 560px;
  margin-left: auto;
  opacity: 0;
}
/* Sorot panggung: cahaya lembut dari belakang cangkir, bukan blok warna. */
.hero-blob {
  position: absolute; inset: 4% 0 0 4%;
  border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  background: radial-gradient(closest-side, rgba(232, 245, 241, .17), rgba(232, 245, 241, .05) 62%, transparent 78%);
}
.hero-ring {
  position: absolute; inset: -2%;
  border: 1.5px dashed rgba(200, 169, 106, .30);
  border-radius: 50%;
  animation: spinSlow 44s linear infinite;
}
.hero-ring--2 { inset: -9%; border-color: rgba(255, 255, 255, .10); animation-duration: 70s; animation-direction: reverse; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* height:auto wajib: atribut width/height di HTML (anti layout-shift)
   akan MEMAKSA tinggi piksel bila hanya lebarnya yang di-override CSS. */
.hero-cup { position: absolute; height: auto; will-change: transform; filter: drop-shadow(0 44px 56px rgba(0, 0, 0, .55)); }
.hero-cup--main { width: 58%; left: 21%; bottom: 8%; z-index: 3; }
.hero-bean { position: absolute; width: 38px; z-index: 4; color: var(--gold); will-change: transform; filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .4)); }
.hero-bean svg { width: 100%; height: auto; }
.hero-bean--1 { top: 11%; left: 10%; transform: rotate(-28deg); }
.hero-bean--2 { top: 4%; right: 21%; width: 27px; transform: rotate(18deg); color: #9fd8c6; }
.hero-bean--3 { bottom: 19%; right: 5%; width: 22px; transform: rotate(40deg); color: rgba(255, 255, 255, .85); }

/* Kartu kaca gelap: glass di atas panggung gelap, aksen kunci emas. */
.hero-card {
  position: absolute; z-index: 5;
  background: rgba(8, 55, 43, .48);
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-radius: var(--r-md);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .09);
  padding: 13px 18px;
  will-change: transform;
}
.hero-card .k {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-display); margin-bottom: 3px;
}
.hero-card .v { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; letter-spacing: -.01em; color: #fff; display: flex; align-items: center; gap: 7px; }
.hero-card .v .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .18); }
.hero-card--rating { top: 24%; left: -6%; animation: floatA 6.5s ease-in-out infinite; }
.hero-card--fresh { bottom: 9%; right: -3%; animation: floatA 7.5s ease-in-out -3s infinite; }
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3; opacity: 0;
}
.hero-scroll small { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-family: var(--font-display); font-weight: 600; }
.hero-scroll .wheel { width: 22px; height: 34px; border: 1.5px solid rgba(255, 255, 255, .28); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.hero-scroll .wheel i { width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: wheelDrop 1.8s var(--ease-io) infinite; }
@keyframes wheelDrop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ════════════════ TICKER ════════════════ */
#ticker {
  background: linear-gradient(180deg, #052A21, #04241C);
  padding: 17px 0;
  overflow: clip;
  position: relative; z-index: 3;
}
.ticker-track { display: flex; width: max-content; animation: tickerMove 30s linear infinite; }
#ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 28px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .6);
  white-space: nowrap;
}
.ticker-item i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ════════════════ SECTION SHELL ════════════════ */
.section { padding: clamp(84px, 11vw, 128px) 0; position: relative; }
.section-head { max-width: 620px; margin-bottom: clamp(44px, 6vw, 64px); }
.section-head .overline { margin-bottom: 16px; }
.section-head .lead { margin-top: 16px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ════════════════ STORY ════════════════ */
#story { position: relative; background: linear-gradient(180deg, #FBFAF7, #fff 62%); overflow: clip; }
/* Watermark tipografi raksasa — kesan editorial mahal, tak mengganggu baca. */
#story::before {
  content: 'GIRA'; position: absolute; top: 30px; right: -20px; z-index: 0;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(120px, 18vw, 260px); line-height: 1;
  color: rgba(12, 104, 81, .045); pointer-events: none; user-select: none;
}
#story .story-grid { position: relative; z-index: 1; }
#story .overline { color: #8a6f3c; }
#story .overline::before {
  content: ''; display: inline-block; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  vertical-align: middle; margin-right: 12px;
}
.story-sign {
  margin-top: 30px; font-family: var(--font-display); font-style: italic;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em; color: #8a6f3c;
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.story-statement {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.025em;
  font-size: clamp(24px, 3.1vw, 34px); line-height: 1.35; color: var(--text);
  margin: 22px 0 18px;
}
.story-statement .inline-img {
  display: inline-block; vertical-align: middle;
  width: 2.2em; height: 1.35em; border-radius: var(--r-pill);
  object-fit: cover; margin: 0 .12em; transform: translateY(-.08em);
  box-shadow: var(--shadow-sm);
}
.story-statement em {
  font-style: italic;
  background: linear-gradient(95deg, #8a6f3c, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.story-visual { position: relative; }
/* Garis emas offset di belakang foto — bingkai galeri. */
.story-visual::before {
  content: ''; position: absolute; inset: -18px 18px 18px -18px;
  border: 1px solid rgba(200, 169, 106, .55); border-radius: var(--r-lg);
  pointer-events: none;
}
.story-visual .frame {
  border-radius: var(--r-lg); overflow: clip; aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-lg);
}
.story-visual .frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.story-float {
  position: absolute; left: -34px; bottom: 40px;
  background: linear-gradient(140deg, #0A4636, var(--darker));
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(200, 169, 106, .4);
  padding: 18px 22px;
}
.story-float .num { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -.03em; color: #fff; line-height: 1; }
.story-float .num sup { font-size: 16px; color: var(--gold); }
.story-float .lbl { font-size: 12px; color: rgba(255, 255, 255, .62); margin-top: 4px; }
.story-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.story-point { display: flex; gap: 14px; align-items: flex-start; }
.story-point .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(140deg, var(--mint), #fff);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(12, 104, 81, .14);
  display: flex; align-items: center; justify-content: center;
}
.story-point b { font-family: var(--font-display); font-size: 15px; letter-spacing: -.01em; display: block; margin-bottom: 2px; }
.story-point p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ════════════════ WHY — BENTO ════════════════ */
#why {
  background: var(--gray);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #FBFAF8);
  border-radius: var(--r-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(17, 24, 39, .05);
  overflow: clip;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(8, 75, 58, .22), inset 0 0 0 1px rgba(200, 169, 106, .35);
}
/* Nomor emas kecil — ritme katalog mewah. */
.bento-num {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; color: rgba(200, 169, 106, .95);
}
.bento-card--dark .bento-num { color: rgba(200, 169, 106, .8); }
.bento-card--wide { grid-column: span 2; }
.bento-card--dark {
  background:
    radial-gradient(560px 300px at 88% -10%, rgba(200, 169, 106, .2), transparent 60%),
    linear-gradient(140deg, #0A4636, var(--darker));
  color: #fff;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(200, 169, 106, .35);
}
.bento-card--dark:hover { box-shadow: 0 28px 56px -20px rgba(4, 36, 28, .6), inset 0 1px 0 rgba(200, 169, 106, .55); }
.bento-card--dark .bento-title { color: #fff; }
.bento-card--dark .bento-desc { color: rgba(255, 255, 255, .72); }
.bento-ico {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(140deg, var(--mint), #fff);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(12, 104, 81, .14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.bento-card:hover .bento-ico { box-shadow: inset 0 0 0 1px rgba(200, 169, 106, .55); }
.bento-card:hover .bento-ico { transform: scale(1.08) rotate(-4deg); }
.bento-card--dark .bento-ico { background: rgba(255, 255, 255, .14); color: #fff; }
.bento-title { font-family: var(--font-display); font-weight: 800; font-size: 18.5px; letter-spacing: -.02em; margin-bottom: 8px; }
.bento-desc { font-size: 14px; line-height: 1.7; color: var(--text-2); }
.bento-beans {
  position: absolute; right: -34px; bottom: -40px; width: 190px; opacity: .9;
  transform: rotate(-14deg);
  transition: transform .6s var(--ease-out);
}
.bento-card:hover .bento-beans { transform: rotate(-6deg) scale(1.05); }
.bento-origin { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.bento-origin span {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: var(--r-pill);
  background: rgba(200, 169, 106, .16); color: #EAD9B2;
  box-shadow: inset 0 0 0 1px rgba(200, 169, 106, .35);
}

/* ════════════════ MENU — SIGNATURE COLLECTION ════════════════ */
#menu {
  position: relative;
  background: linear-gradient(180deg, var(--gray), #FBFAF7 40%, #fff);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: clip;
}
#menu .overline { color: #8a6f3c; }
#menu .overline--center::before, #menu .overline--center::after { background: linear-gradient(90deg, transparent, var(--gold)); }
#menu .overline--center::after { background: linear-gradient(90deg, var(--gold), transparent); }
.menu-bean { position: absolute; width: 120px; pointer-events: none; }
.menu-bean--1 { top: 60px; right: -20px; transform: rotate(24deg); }
.menu-bean--2 { bottom: 80px; left: -30px; width: 160px; transform: rotate(-18deg); }

/* Carousel: kartu berukuran tetap — rapi untuk 2 maupun 20 varian. */
.menu-carousel { position: relative; z-index: 1; }
.menu-track {
  display: flex; gap: 22px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  /* headroom utk hover lift & bayangan tanpa terpotong */
  padding: 12px 4px 34px;
  margin: -12px -4px -14px;
  scrollbar-width: none;
  cursor: grab;
}
.menu-track::-webkit-scrollbar { display: none; }
.menu-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.menu-track.dragging .menu-card { pointer-events: none; }
@media (prefers-reduced-motion: no-preference) { .menu-track { scroll-behavior: smooth; } }

.menu-card {
  flex: 0 0 clamp(272px, 24vw, 336px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #fff, #FBFAF8);
  border-radius: var(--r-md); overflow: clip;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(17, 24, 39, .05);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  will-change: transform;
  display: flex; flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(8, 75, 58, .28), inset 0 0 0 1px rgba(200, 169, 106, .4);
}

/* Panggung foto: glow radial + garis emas tipis di dasar */
.menu-img {
  position: relative; aspect-ratio: 1 / .84; overflow: clip;
  background: radial-gradient(120% 90% at 50% 8%, #fff 0%, var(--mint) 74%, #d9ede6 100%);
}
.menu-img::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 106, .55), transparent);
}
/* Absolut: foto intrinsik tinggi tidak boleh mendorong tinggi kartu
   (min-content mengalahkan aspect-ratio pada flex item). */
.menu-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.menu-card:hover .menu-img img { transform: scale(1.06); }
.menu-img--empty { display: flex; align-items: center; justify-content: center; }
.menu-img--empty img { position: static; width: 54%; height: auto; object-fit: contain; filter: drop-shadow(0 26px 30px rgba(8, 75, 58, .28)); }
.menu-card:hover .menu-img--empty img { transform: scale(1.05) translateY(-4px); }

.menu-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(140deg, #0A4636, var(--darker));
  color: var(--gold); padding: 8px 14px; border-radius: var(--r-pill);
  box-shadow: 0 8px 18px -6px rgba(4, 36, 28, .5), inset 0 1px 0 rgba(200, 169, 106, .4);
}

.menu-body { position: relative; padding: 26px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.menu-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; color: rgba(200, 169, 106, .95);
}
.menu-name {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -.02em; margin-bottom: 4px; text-transform: capitalize;
  padding-right: 60px; /* ruang utk nomor emas */
}
.menu-name::after {
  content: ''; display: block; width: 34px; height: 2px; margin-top: 12px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 169, 106, .15));
  border-radius: 2px;
}
.menu-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; margin: 12px 0 20px; flex: 1; }
.menu-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(17, 24, 39, .07); padding-top: 18px;
}
.menu-price {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 13.5px; letter-spacing: .01em; color: #8a6f3c;
}
.menu-order {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, #0A4636, var(--darker));
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(200, 169, 106, .35);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .3s, color .3s, transform .45s var(--ease-out), box-shadow .3s;
}
.menu-card:hover .menu-order {
  background: linear-gradient(140deg, var(--gold), #b8975a);
  color: var(--darker); transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 10px 22px -8px rgba(138, 111, 60, .6);
}

/* Navigasi carousel: panah + counter + progress emas */
.menu-nav { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.menu-nav.is-hidden { display: none; }
.menu-arrow {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: linear-gradient(140deg, #0A4636, var(--darker));
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(200, 169, 106, .35);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s, transform .35s var(--ease-out), background .3s, color .3s;
}
.menu-arrow:hover { background: linear-gradient(140deg, var(--gold), #b8975a); color: var(--darker); transform: scale(1.07); }
.menu-arrow:disabled { opacity: .28; pointer-events: none; }
.menu-count {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; color: #8a6f3c; white-space: nowrap;
}
.menu-count i { font-style: normal; margin: 0 4px; opacity: .45; }
.menu-progress {
  flex: 1; max-width: 240px; height: 2px; border-radius: 2px;
  background: rgba(200, 169, 106, .22); overflow: hidden;
}
.menu-progress i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold), #8a6f3c);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s linear;
}

.menu-cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }

/* ════════════════ EXPERIENCE (dark) ════════════════ */
#experience { padding: 0 16px; background: #fff; }
.exp-shell {
  position: relative;
  max-width: 1400px; margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: clip;
  background: var(--darker);
  color: #fff;
}
.exp-bg { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.exp-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.exp-shell::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6, 56, 44, .92), rgba(8, 75, 58, .78) 55%, rgba(6, 56, 44, .94));
}
.exp-inner { position: relative; z-index: 2; padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 88px); }
.exp-inner .h-section { color: #fff; }
.exp-inner .lead { color: rgba(255, 255, 255, .68); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 90px); align-items: center; margin-top: 8px; }

.exp-steps { display: flex; flex-direction: column; position: relative; }
.exp-step { display: flex; gap: 22px; padding: 22px 0; position: relative; }
.exp-step .n {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  color: var(--gold);
}
.exp-step:not(:last-child)::after {
  content: ''; position: absolute; left: 26px; top: 78px; bottom: -4px;
  width: 1.5px; background: linear-gradient(to bottom, rgba(200, 169, 106, .4), transparent);
}
.exp-step b { font-family: var(--font-display); font-size: 18px; letter-spacing: -.02em; display: block; margin-bottom: 5px; }
.exp-step p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .66); }

.exp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(52px, 7vw, 76px); }
.exp-stat {
  border-radius: var(--r-md); padding: 26px 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
}
.exp-stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 40px); letter-spacing: -.03em; line-height: 1;
  color: #fff;
}
.exp-stat .num sup { color: var(--gold); font-size: .55em; }
.exp-stat .lbl { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-top: 8px; font-family: var(--font-display); font-weight: 600; }

/* ════════════════ GALLERY ════════════════ */
#gallery { background: #fff; padding-bottom: clamp(60px, 8vw, 90px); }
.gallery-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.gallery-row { overflow: clip; }
.gallery-track { display: flex; gap: 18px; width: max-content; will-change: transform; animation: tickerMove 46s linear infinite; }
.gallery-row--reverse .gallery-track { animation-direction: reverse; animation-duration: 54s; }
.gallery-row:hover .gallery-track { animation-play-state: paused; }
.gallery-item {
  width: clamp(240px, 26vw, 360px); aspect-ratio: 4 / 3;
  border-radius: var(--r-md); overflow: clip; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .7s; filter: saturate(.92); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* ════════════════ TESTIMONIALS ════════════════ */
#testimonials { background: linear-gradient(to bottom, #fff, var(--mint) 30%, var(--mint) 70%, #fff); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff; border-radius: var(--r-md); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.testi-quote { font-size: 14.5px; line-height: 1.8; color: var(--text); flex: 1; }
.testi-quote::before { content: '“'; font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--gold); display: block; line-height: .6; margin-bottom: 12px; }
.testi-who { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testi-who b { font-family: var(--font-display); font-size: 14.5px; letter-spacing: -.01em; display: block; }
.testi-who small { font-size: 12.5px; color: var(--text-2); }

/* ════════════════ FAQ ════════════════ */
#faq { background: #fff; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 12px; background: #fff;
  transition: box-shadow .35s, border-color .35s;
}
.faq-item[open] { border-color: rgba(12, 104, 81, .3); box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.015em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--mint); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-out), background .3s, color .3s;
}
.faq-item[open] .faq-q .ic { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { padding: 0 24px; overflow: clip; }
.faq-a p { padding: 0 44px 22px 0; font-size: 14.5px; line-height: 1.8; color: var(--text-2); }

/* ════════════════ CTA ════════════════ */
#cta { padding: 0 16px clamp(84px, 10vw, 120px); background: #fff; }
.cta-shell {
  position: relative; max-width: 1140px; margin: 0 auto;
  border-radius: var(--r-lg); overflow: clip;
  background:
    radial-gradient(640px 320px at 85% 0%, rgba(46, 139, 115, .55), transparent 60%),
    radial-gradient(520px 300px at 0% 100%, rgba(200, 169, 106, .18), transparent 55%),
    linear-gradient(135deg, var(--primary), var(--darker));
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vw, 96px) 24px;
}
.cta-shell::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.cta-bean { position: absolute; width: 60px; opacity: .5; filter: blur(1px); }
.cta-bean--1 { top: 14%; left: 8%; transform: rotate(-24deg); }
.cta-bean--2 { bottom: 12%; right: 9%; transform: rotate(30deg); width: 46px; }
.cta-shell .chip--gold { position: relative; margin-bottom: 24px; background: rgba(200,169,106,.16); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(200,169,106,.4); }
.cta-title {
  position: relative;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: 1.08;
  font-size: clamp(32px, 5vw, 54px); margin-bottom: 18px;
}
.cta-sub { position: relative; max-width: 480px; margin: 0 auto 36px; color: rgba(255, 255, 255, .72); font-size: 15.5px; line-height: 1.75; }
.cta-actions { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); }
.cta-actions .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; color: #fff; }

/* ════════════════ FOOTER ════════════════ */
footer { background: #0A2019; color: rgba(255, 255, 255, .65); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px;
  padding: clamp(56px, 8vw, 80px) 0 48px;
}
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
  transition: background .3s, color .3s, transform .4s var(--ease-out);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-h { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .04em; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; text-decoration: none; transition: color .25s, padding-left .3s var(--ease-out); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; line-height: 1.6; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-bottom .love b { color: var(--gold); }

/* ════════════════ WA FLOAT ════════════════ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .4s var(--ease-out);
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
@keyframes waPulse { from { transform: scale(1); opacity: .5; } to { transform: scale(1.9); opacity: 0; } }

/* ════════════════ REVEAL PRIMITIVES ════════════════ */
[data-reveal] { opacity: 0; transform: translateY(30px); will-change: transform, opacity; }
html.no-motion [data-reveal],
html.no-motion .hero-badge, html.no-motion .hero-sub, html.no-motion .hero-ctas,
html.no-motion .hero-proof, html.no-motion .hero-stage, html.no-motion .hero-scroll {
  opacity: 1 !important; transform: none !important;
}
html.no-motion .line-mask > span { transform: none !important; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; padding-bottom: 40px; }
  .hero-sub, .hero-ctas, .hero-proof { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-stage { margin: 8px auto 0; max-width: 420px; width: 88%; }
  .hero-card--rating { left: -3%; }
  .hero-scroll { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: span 2; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .story-float { left: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  #nav { top: 10px; padding: 8px 8px 8px 16px; }
  .nav-logo img { height: 34px; }
  .hero-h1 { font-size: clamp(36px, 10.5vw, 46px); }
  .hero-card { padding: 10px 14px; }
  .hero-card .v { font-size: 14px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .exp-stats { grid-template-columns: 1fr 1fr; }
  .exp-stats .exp-stat:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .section { padding: 68px 0; }
  .cta-actions .btn { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* ════════════════ REDUCED MOTION ════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal], .hero-badge, .hero-sub, .hero-ctas, .hero-proof, .hero-stage, .hero-scroll { opacity: 1 !important; transform: none !important; }
  .line-mask > span { transform: none !important; }
  .ticker-track, .gallery-track { animation: none !important; }
}


/* ── Halaman turunan (menu, tentang, faq, jadi-rider, lokasi, undang) ── */
.page-head{padding-top:calc(var(--nav-h,72px) + 3rem);padding-bottom:1rem}
.page-head .crumbs{font-size:.85rem;opacity:.7;margin-bottom:1rem;display:flex;gap:.5rem;align-items:center}
.page-head .crumbs a{text-decoration:none;color:inherit}
.page-head .lead{max-width:640px;margin-top:1rem}
.plain-list{list-style:none;padding:0;margin:.5rem 0 0;display:grid;gap:.5rem}
.plain-list li{padding-left:1.4rem;position:relative;line-height:1.5}
.plain-list li::before{content:"";position:absolute;left:0;top:.55em;width:.6rem;height:.6rem;border-radius:50%;background:currentColor;opacity:.55}
