/* ===========================================================================
   eMBuns.co landing — brand styles, vanilla CSS
   Recreates the Claude Design prototype (React/Tailwind) pixel-for-pixel
   without any runtime framework.

   Colors come from the eMBuns logo:
     yellow #f4c849 · red #d64129 · gold #c89432
     brown-dark #3a2e1f · brown-mid #5d4a2e
     cream #fdfaf3 · cream-soft #fff8e8
   =========================================================================== */

:root {
  --brand-yellow: #f4c849;
  --brand-red: #d64129;
  --brand-gold: #c89432;
  --brand-brown-dark: #3a2e1f;
  --brand-brown-mid: #5d4a2e;
  --brand-cream: #fdfaf3;
  --brand-cream-soft: #fff8e8;

  --shadow-warm: 0 10px 30px -12px rgba(93, 74, 46, 0.18),
    0 4px 12px -4px rgba(93, 74, 46, 0.08);
  --shadow-warm-lg: 0 24px 60px -20px rgba(93, 74, 46, 0.28),
    0 8px 20px -8px rgba(93, 74, 46, 0.12);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--brand-cream);
  color: var(--brand-brown-dark);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.font-display { font-family: "Cormorant Garamond", Georgia, serif; font-feature-settings: "liga", "dlig"; }
.font-hand { font-family: "Caveat", cursive; }
.font-mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .wrap { padding: 0 32px; } }

.hairline {
  background-image: linear-gradient(to right, transparent, rgba(93, 74, 46, 0.25), transparent);
  height: 1px;
}

.grain {
  position: relative;
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(93, 74, 46, 0.06) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ========================================================================
   ENTRANCE ANIMATIONS
   ======================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.97) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeInRotate {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 200, 73, 0.55), var(--shadow-warm); }
  50% { box-shadow: 0 0 0 14px rgba(244, 200, 73, 0), var(--shadow-warm); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s var(--ease-out) forwards; }
.fade-scale { opacity: 0; animation: fadeScaleIn 0.7s var(--ease-out) forwards; }
.fade-rotate { opacity: 0; animation: fadeInRotate 0.6s var(--ease-out) forwards; }

/* Reveal on scroll — toggled by IntersectionObserver in landing.js */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-scale, .fade-rotate, .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(253, 250, 243, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(93, 74, 46, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 640px) { .nav-inner { padding: 16px 32px; } }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(93,74,46,0.18)); }
.nav-brand .name { font-family: "Cormorant Garamond", serif; font-size: 19px; font-weight: 600; color: var(--brand-brown-dark); line-height: 1; }
.nav-brand .name .dot { color: var(--brand-red); }
.nav-brand .tag { font-family: "Caveat", cursive; font-size: 13px; color: var(--brand-gold); line-height: 1; margin-top: 2px; display: block; }
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--brand-brown-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-brown-dark); }
@media (min-width: 768px) { .nav-links { display: inline-flex; } }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(93, 74, 46, 0.2);
  background: rgba(253, 250, 243, 0.9);
  color: var(--brand-brown-dark);
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger svg { width: 20px; height: 20px; }

/* mobile sheet */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(58, 46, 31, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.sheet-backdrop.is-open { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed; top: 0; right: 0; z-index: 51;
  width: 82%; max-width: 360px; height: 100%;
  background: var(--brand-cream);
  padding: 24px;
  box-shadow: var(--shadow-warm-lg);
  transform: translateX(100%);
  transition: transform 0.32s var(--ease-out);
  display: flex; flex-direction: column;
}
.sheet.is-open { transform: translateX(0); }
@media (min-width: 768px) { .sheet, .sheet-backdrop { display: none; } }
.sheet-head { display: flex; align-items: center; justify-content: space-between; }
.sheet-head .brand { display: inline-flex; align-items: center; gap: 10px; }
.sheet-head .brand img { width: 40px; height: 40px; }
.sheet-head .brand .name { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; }
.sheet-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(93, 74, 46, 0.2);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
}
.sheet-close svg { width: 16px; height: 16px; }
.sheet-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.sheet-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px;
  border-radius: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--brand-brown-dark);
  transition: background 0.15s;
}
.sheet-links a:hover { background: var(--brand-cream-soft); }
.sheet-links a .arrow { color: var(--brand-gold); }
.sheet-foot { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(93, 74, 46, 0.15); }
.sheet-foot .greeting { margin-top: 12px; text-align: center; font-family: "Caveat", cursive; font-size: 18px; color: var(--brand-gold); }

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(2px); }

.btn--primary {
  background: var(--brand-yellow);
  color: var(--brand-brown-dark);
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm-lg); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--brand-brown-mid);
  border: 1px solid rgba(93, 74, 46, 0.25);
}
.btn--ghost:hover {
  border-color: rgba(93, 74, 46, 0.5);
  background: var(--brand-cream-soft);
}

.btn--white {
  background: var(--brand-cream);
  color: var(--brand-brown-dark);
  box-shadow: var(--shadow-warm-lg);
}
.btn--white:hover { transform: translateY(-2px); }

.btn--wa {
  background: var(--brand-cream);
  color: var(--brand-brown-dark);
  border: 1px solid rgba(93, 74, 46, 0.25);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm); }

.btn--grab {
  background: #00B14F;
  color: #fff;
}
.btn--grab:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm-lg); }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--md { padding: 14px 28px; font-size: 15px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--xl { padding: 20px 40px; font-size: 18px; }
.btn--full { width: 100%; }
.btn--glow { animation: pulseGlow 1.8s var(--ease-out) 1; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 48px;
  background:
    radial-gradient(1100px 600px at 85% -10%, #fff2cc 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 90%, #fff8e8 0%, transparent 55%),
    var(--brand-cream);
}
@media (min-width: 640px) { .hero { padding: 128px 0 64px; } }
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .hero-inner { padding: 0 32px; } }
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.hero-visual { order: 2; position: relative; }
.hero-copy { order: 1; }
@media (min-width: 768px) {
  .hero-visual { order: 1; }
  .hero-copy { order: 2; }
}

.hero-kicker { font-family: "Caveat", cursive; font-size: 24px; color: var(--brand-gold); }
.hero-kicker .muted { color: rgba(93, 74, 46, 0.7); }

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--brand-brown-dark);
  margin: 16px 0 0;
}
@media (min-width: 640px) { .hero-title { font-size: 56px; } }
@media (min-width: 768px) { .hero-title { font-size: 64px; } }
.hero-title .italic { font-style: italic; color: var(--brand-gold); }
.hero-title .sub-line { display: block; font-style: italic; color: var(--brand-gold); font-size: 0.66em; margin-top: 4px; }

.hero-sub {
  margin: 20px 0 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--brand-brown-mid);
}

.hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-trust { margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.hero-trust .avatars { display: inline-flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 999px;
  border: 2px solid var(--brand-cream);
  display: inline-grid; place-items: center;
  margin-left: -8px;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .avatars span svg { width: 14px; height: 14px; }
.hero-trust .label { font-size: 14px; color: var(--brand-brown-mid); }

/* hero carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f3e3b8;
  box-shadow: var(--shadow-warm-lg);
  aspect-ratio: 4/5;
}
.carousel img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.carousel img.is-active { opacity: 1; z-index: 2; }
.carousel::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 33%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(58, 46, 31, 0.22), transparent);
  z-index: 3;
}
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; align-items: center; gap: 6px;
  z-index: 4;
}
.carousel-dots button {
  height: 10px; width: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(253, 250, 243, 0.55);
  padding: 0;
  transition: width 0.3s, background 0.3s, box-shadow 0.3s;
}
.carousel-dots button[aria-current="true"] {
  width: 22px;
  background: var(--brand-cream);
  box-shadow: 0 1px 4px rgba(58, 46, 31, 0.35);
}
.carousel-paused {
  position: absolute;
  right: 12px; top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(253, 250, 243, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-brown-dark);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 5;
}
.carousel.is-paused .carousel-paused { opacity: 1; }

/* floating chip — always on top */
.hero-chip {
  position: absolute;
  left: -12px;
  bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--brand-cream);
  box-shadow: var(--shadow-warm-lg);
  z-index: 30;
  animation-delay: 0.5s;
}
@media (min-width: 640px) { .hero-chip { left: -24px; bottom: 40px; } }
.hero-chip .pill {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--brand-yellow);
  display: grid; place-items: center;
  color: var(--brand-brown-dark);
}
.hero-chip .pill svg { width: 18px; height: 18px; }
.hero-chip .small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(93, 74, 46, 0.7);
}
.hero-chip .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-brown-dark);
}

.hero-signature {
  position: absolute;
  right: -12px;
  top: -16px;
  z-index: 30;
  animation-delay: 0.7s;
}
@media (min-width: 640px) { .hero-signature { right: -24px; top: -24px; } }
.hero-signature img {
  width: 88px; height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(93,74,46,0.18));
}

/* ========================================================================
   PROOF BAR
   ======================================================================== */
.proof {
  background: var(--brand-cream-soft);
  padding: 20px 0;
  border-top: 1px solid rgba(93, 74, 46, 0.1);
  border-bottom: 1px solid rgba(93, 74, 46, 0.1);
}
.proof-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center;
}
@media (min-width: 640px) { .proof-chips { gap: 16px; } }
.proof-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-cream);
  border: 1px solid rgba(93, 74, 46, 0.1);
  box-shadow: 0 1px 0 0 rgba(93, 74, 46, 0.06);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-brown-dark);
}
.proof-chip .em { font-size: 16px; }

/* ========================================================================
   SECTION DEFAULTS
   ======================================================================== */
section { padding: 80px 0; position: relative; }
@media (min-width: 640px) { section { padding: 112px 0; } }
section.bg-cream-soft { background: var(--brand-cream-soft); }
section.bg-cream { background: var(--brand-cream); }

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 500;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--brand-brown-dark);
  margin: 12px 0 0;
}
@media (min-width: 640px) { .section-title { font-size: 48px; } }
.section-title .italic { font-style: italic; color: var(--brand-gold); }
.section-title .hand { font-family: "Caveat", cursive; color: var(--brand-gold); font-style: normal; }
.section-intro {
  margin: 16px auto 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brand-brown-mid);
  text-align: center;
}

/* ========================================================================
   MENU SHOWCASE
   ======================================================================== */
.menu-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .menu-grid { gap: 28px; grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

.menu-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--brand-cream);
  border: 1px solid rgba(93, 74, 46, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-warm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-warm-lg);
}
.menu-card .photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-card .badge {
  position: absolute; left: 16px; top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu-card .badge.badge--red { background: var(--brand-red); color: #fff; }
.menu-card .badge.badge--gold { background: var(--brand-yellow); color: var(--brand-brown-dark); }
.menu-card .body {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px;
  flex: 1;
}
.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--brand-brown-dark);
}
.menu-card .desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--brand-brown-mid);
}
.menu-card .foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(93, 74, 46, 0.1);
}
.menu-card .foot .detail {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(93, 74, 46, 0.8);
}
.menu-card .foot .detail svg { width: 14px; height: 14px; flex-shrink: 0; }
.menu-card .foot a {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-brown-dark);
  transition: color 0.15s;
}
.menu-card .foot a:hover { color: var(--brand-red); }

.menu-foot {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.menu-foot .hand { font-family: "Caveat", cursive; font-size: 18px; color: var(--brand-gold); }

/* ========================================================================
   CERITA
   ======================================================================== */
.cerita-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .cerita-grid { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; } }
.cerita-visual { position: relative; }
.cerita-ornament {
  position: absolute;
  bottom: -24px;
  right: -16px;
  transform: rotate(6deg);
  background: var(--brand-yellow);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-warm-lg);
  max-width: 220px;
  z-index: 30;
}
@media (min-width: 640px) { .cerita-ornament { right: -32px; } }
.cerita-ornament .small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 31, 0.7);
}
.cerita-ornament .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-brown-dark);
  margin-top: 2px;
}
.cerita-logo {
  display: none;
  position: absolute;
  left: -16px;
  top: -16px;
  z-index: 30;
}
@media (min-width: 640px) { .cerita-logo { display: block; } }
.cerita-logo img { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(93,74,46,0.18)); }

.cerita-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--brand-brown-dark);
  margin: 12px 0 0;
}
@media (min-width: 640px) { .cerita-title { font-size: 44px; } }
.cerita-title .italic { font-style: italic; color: var(--brand-gold); }

.cerita-body { margin-top: 28px; }
.cerita-body p { font-size: 16.5px; line-height: 1.75; color: var(--brand-brown-mid); margin: 0 0 20px; }
.cerita-body p .em-dark { font-style: italic; color: var(--brand-brown-dark); }
.cerita-body p .strong { font-weight: 600; color: var(--brand-brown-dark); }

.pull-quote {
  position: relative;
  margin: 12px 0;
  padding: 12px 0;
}
.pull-quote .open-quote {
  position: absolute;
  left: -8px;
  top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(244, 200, 73, 0.7);
  user-select: none;
}
.pull-quote .text {
  display: block;
  padding-left: 32px;
  font-family: "Caveat", cursive;
  font-size: 48px;
  font-style: italic;
  color: var(--brand-gold);
}
@media (min-width: 640px) { .pull-quote .text { font-size: 60px; } }
.pull-quote .text .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
.pull-quote .text.is-typing .letter { opacity: 1; transform: translateY(0); }

.cerita-sign { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.cerita-sign .line { flex: 1; height: 1px; background: rgba(93, 74, 46, 0.2); }
.cerita-sign .by { font-family: "Caveat", cursive; font-size: 22px; color: var(--brand-brown-dark); }

/* ========================================================================
   DIFFERENTIATORS
   ======================================================================== */
.diff-grid {
  margin-top: 56px;
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.diff-item { display: flex; flex-direction: column; align-items: flex-start; position: relative; }
.diff-icon-wrap { position: relative; }
.diff-icon {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--brand-yellow);
  box-shadow: var(--shadow-warm);
  color: var(--brand-brown-dark);
}
.diff-icon svg { width: 28px; height: 28px; }
.diff-num {
  position: absolute;
  right: -8px; top: -8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  color: rgba(214, 65, 41, 0.7);
}
.diff-item h3 {
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brand-brown-dark);
}
.diff-item p {
  margin: 8px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--brand-brown-mid);
}

/* ========================================================================
   CARA PESAN
   ======================================================================== */
.steps-grid {
  position: relative;
  margin-top: 56px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.steps-connector {
  display: none;
  position: absolute;
  left: 12%; right: 12%; top: 36px;
  height: 2px;
  pointer-events: none;
}
@media (min-width: 768px) { .steps-connector { display: block; } }
.steps-connector svg { width: 100%; height: 2px; }

.step-card {
  position: relative;
  padding: 28px;
  background: var(--brand-cream);
  border: 1px solid rgba(93, 74, 46, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-warm);
}
.step-card .head { display: flex; align-items: center; gap: 16px; }
.step-card .circle {
  position: relative;
}
.step-card .circle .bg {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--brand-yellow);
  box-shadow: var(--shadow-warm);
  color: var(--brand-brown-dark);
}
.step-card .circle .bg svg { width: 28px; height: 28px; }
.step-card .circle .num {
  position: absolute;
  right: -4px; bottom: -4px;
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--brand-brown-dark);
  color: var(--brand-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
}
.step-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-brown-dark);
}
.step-card p {
  margin: 20px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--brand-brown-mid);
}

.cara-foot { margin-top: 56px; text-align: center; }

/* ========================================================================
   LOKASI
   ======================================================================== */
.lokasi-grid {
  display: grid; gap: 32px;
}
@media (min-width: 768px) { .lokasi-grid { grid-template-columns: 7fr 5fr; gap: 40px; } }

.map-embed {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(93, 74, 46, 0.15);
  box-shadow: var(--shadow-warm);
  background: var(--brand-cream-soft);
  overflow: hidden;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* slight warmth to blend with the cream palette */
  filter: saturate(1.05) contrast(1.02);
}

.map-open {
  position: absolute;
  right: 16px; top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(253, 250, 243, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-warm);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-brown-dark);
  text-decoration: none;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.map-open:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm-lg); }
.map-open svg { width: 14px; height: 14px; color: var(--brand-red); }
.map-open .arrow { font-size: 14px; color: var(--brand-gold); transition: transform 0.15s; }
.map-open:hover .arrow { transform: translate(2px, -2px); }

.map-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-warm);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-brown-dark);
}
.map-badge .green {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: badgePulse 2s ease-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.info-card {
  position: relative;
  padding: 28px;
  background: var(--brand-cream-soft);
  border: 1px solid rgba(93, 74, 46, 0.1);
  border-left: 4px solid var(--brand-gold);
  border-radius: 28px;
  box-shadow: var(--shadow-warm);
  height: 100%;
}
@media (min-width: 640px) { .info-card { padding: 32px; } }
.info-row { display: flex; gap: 16px; }
.info-row + .info-row { margin-top: 28px; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--brand-yellow);
  display: grid; place-items: center;
  color: var(--brand-brown-dark);
  flex-shrink: 0;
}
.info-icon svg { width: 16px; height: 16px; }
.info-row .small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(93, 74, 46, 0.7);
}
.info-row .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-brown-dark);
  margin-top: 4px;
}
.info-row .big.link:hover { color: var(--brand-red); transition: color 0.15s; }
.info-row .detail {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--brand-brown-mid);
}
.info-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ========================================================================
   CTA BANNER
   ======================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4c849 0%, #e6b933 50%, #c89432 100%);
  padding: 80px 0;
}
@media (min-width: 640px) { .cta-banner { padding: 96px 0; } }
.cta-banner .deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
}
.cta-banner .deco.tr { right: -80px; top: -80px; width: 400px; height: 400px; }
.cta-banner .deco.bl { left: -96px; bottom: -96px; width: 360px; height: 360px; opacity: 0.15; }
.cta-banner-inner { position: relative; max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center; }
@media (min-width: 640px) { .cta-banner-inner { padding: 0 32px; } }
.cta-banner .hand { font-family: "Caveat", cursive; font-size: 24px; color: rgba(58, 46, 31, 0.7); }
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.05;
  margin: 8px 0 0;
  color: var(--brand-brown-dark);
}
@media (min-width: 640px) { .cta-banner h2 { font-size: 60px; } }
.cta-banner h2 .italic { font-style: italic; }
.cta-banner p {
  margin: 20px auto 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(58, 46, 31, 0.85);
}
.cta-banner-cta { margin-top: 36px; }
.cta-banner-meta {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(58, 46, 31, 0.7);
}
.cta-banner-meta span.item { display: inline-flex; align-items: center; gap: 6px; }
.cta-banner-meta svg { width: 16px; height: 16px; }

/* ========================================================================
   FOOTER
   ======================================================================== */
footer.foot {
  background: var(--brand-brown-dark);
  color: var(--brand-cream);
  padding: 64px 0;
}
.foot-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .foot-grid { grid-template-columns: 5fr 3fr 4fr; gap: 40px; } }

.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 56px; height: 56px; object-fit: contain; }
.foot-brand .name { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; }
.foot-brand .name .dot { color: var(--brand-yellow); }
.foot-brand .tag { display: block; font-family: "Caveat", cursive; font-size: 18px; color: rgba(244, 200, 73, 0.9); margin-top: -2px; }
.foot-blurb {
  margin: 20px 0 0;
  max-width: 40ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(253, 250, 243, 0.75);
}

.foot-col-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 200, 73, 0.8);
}
.foot-links { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; list-style: none; padding: 0; }
.foot-links a { color: rgba(253, 250, 243, 0.8); transition: color 0.15s; }
.foot-links a:hover { color: var(--brand-yellow); }

.foot-socials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.foot-socials a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(253, 250, 243, 0.15);
  background: rgba(253, 250, 243, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: rgba(253, 250, 243, 0.85);
  transition: border-color 0.15s, color 0.15s;
}
.foot-socials a:hover { border-color: rgba(244, 200, 73, 0.5); color: var(--brand-yellow); }
.foot-socials svg { width: 16px; height: 16px; flex-shrink: 0; }
.foot-socials span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.foot-addr {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(253, 250, 243, 0.1);
  background: rgba(253, 250, 243, 0.03);
  border-radius: 16px;
}
.foot-addr .a {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-cream);
}
.foot-addr .b { font-size: 13px; color: rgba(253, 250, 243, 0.7); margin-top: 4px; }

.foot-sep { margin: 40px 0; height: 1px; background: rgba(253, 250, 243, 0.1); }
.foot-bottom {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 640px) { .foot-bottom { flex-direction: row; align-items: center; } }
.foot-bottom .copy { font-size: 13px; color: rgba(253, 250, 243, 0.65); }
.foot-bottom .links { display: flex; gap: 20px; font-size: 13px; }
.foot-bottom .links a { color: rgba(253, 250, 243, 0.65); transition: color 0.15s; }
.foot-bottom .links a:hover { color: var(--brand-yellow); }
