:root {
  --bg: #140a05;
  --bg-soft: #24130a;
  --card: rgba(48, 26, 13, .68);
  --card-solid: #1f1108;
  --text: #fff5df;
  --muted: #d8bd8f;
  --muted-dim: #b79a6b;
  --gold: #e0ad4f;
  --gold-soft: #f1d28a;
  --brown: #4b260f;
  --green: #8fae5a;
  --line: rgba(245, 204, 128, .18);
  --line-strong: rgba(245, 204, 128, .34);
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --shadow-sm: 0 12px 34px rgba(0,0,0,.30);
  --wa: #25d366;
  --radius: 26px;
  --header-h: 76px;
}
html[data-theme="light"] {
  --bg: #fff8ed;
  --bg-soft: #f4e6cb;
  --card: rgba(255,255,255,.74);
  --card-solid: #fffdf8;
  --text: #2d1608;
  --muted: #6e4a25;
  --muted-dim: #8a6535;
  --gold: #b07d1f;
  --gold-soft: #8a5a18;
  --brown: #4b260f;
  --green: #5d7a2c;
  --line: rgba(91, 47, 14, .16);
  --line-strong: rgba(91, 47, 14, .28);
  --shadow: 0 22px 70px rgba(87,52,16,.16);
  --shadow-sm: 0 12px 30px rgba(87,52,16,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(224,173,79,.20), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(107,53,19,.22), transparent 34%),
    linear-gradient(150deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; color: var(--text); }
h1 em, h2 em { font-style: italic; color: var(--gold-soft); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 60;
  background: var(--gold); color: #2b1608; padding: 10px 16px;
  border-radius: 12px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Texture & atmosphere */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ambient { position: fixed; width: 420px; height: 420px; border-radius: 999px; filter: blur(100px); opacity: .30; z-index: 0; pointer-events: none; }
.ambient-one { top: 60px; left: -160px; background: var(--gold); }
.ambient-two { right: -140px; bottom: 4%; background: #6b3513; }
main, .navbar, footer { position: relative; z-index: 1; }

section { scroll-margin-top: calc(var(--header-h) + 8px); }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header-h); padding: 12px 6vw;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.brand-mark {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 16px; overflow: hidden; background: #fdf6e7;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); }
.brand-text strong { font-family: 'Fraunces', serif; font-size: 16px; color: var(--text); letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta {
  padding: 9px 18px; border-radius: 999px; color: #2b1608 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)); font-weight: 700;
}
.nav-tools { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line-strong);
  background: var(--card); color: var(--text); font-size: 19px; cursor: pointer;
  display: grid; place-items: center; transition: transform .2s, border-color .2s;
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.nav-toggle { display: none; gap: 5px; flex-direction: column; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-family: inherit; font-weight: 700; letter-spacing: .01em; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn.block { width: 100%; }
.primary { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #2b1608; box-shadow: 0 16px 40px rgba(224,173,79,.28); }
.secondary { border: 1px solid var(--line-strong); background: var(--card); color: var(--text); }
.secondary:hover { border-color: var(--gold); }

.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: 12px; margin: 0 0 8px; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  padding: clamp(40px, 7vw, 80px) 6vw;
}
.hero h1 { font-size: clamp(48px, 7.4vw, 104px); font-weight: 900; line-height: .96; letter-spacing: -.02em; max-width: 12ch; margin-bottom: 18px; }
.tagline { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: clamp(20px, 2.2vw, 30px); color: var(--gold-soft); max-width: 30ch; margin: 0 0 18px; }
.intro { font-size: 17px; color: var(--muted); max-width: 52ch; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.trust-row li { border: 1px solid var(--line); padding: 9px 14px; border-radius: 999px; color: var(--muted); background: color-mix(in srgb, var(--text) 4%, transparent); font-size: 13px; font-weight: 600; }

.hero-visual { position: relative; }
.photo-card { margin: 0; border: 1px solid var(--line-strong); border-radius: 32px; overflow: hidden; background: var(--card); box-shadow: var(--shadow); transform: rotate(1.4deg); }
.photo-card img { width: 100%; height: auto; display: block; }
.seal {
  position: absolute; right: -10px; top: 6%; width: 124px; height: 124px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; line-height: 1.05;
  background: linear-gradient(135deg, var(--gold-soft), #b98327); color: #321807; font-weight: 700; font-size: 13px;
  box-shadow: 0 20px 50px rgba(0,0,0,.3); animation: pulse 2.8s ease-in-out infinite;
}
.seal strong { font-family: 'Fraunces', serif; font-size: 28px; }
.floaty { animation: floaty 5s ease-in-out infinite; }

/* Section headings */
.section-heading { max-width: 720px; margin-bottom: 30px; }
.section-heading h2 { font-size: clamp(32px, 4.6vw, 58px); font-weight: 800; letter-spacing: -.01em; }
.lede { color: var(--muted); font-size: 17px; margin: 12px 0 0; max-width: 56ch; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 8px 6vw 70px; }
.features article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.features span { color: var(--gold); font-weight: 900; font-size: 14px; letter-spacing: .1em; }
.features h3 { font-size: 27px; font-weight: 700; margin: 14px 0 10px; }
.features p, .menu-card p, .story > p, .step-grid p, .package-card li, .testi-card blockquote { color: var(--muted); }

/* Menu */
.menu, .packages, .steps, .testimonials, .faq { padding: 70px 6vw; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.menu-card { position: relative; padding: 28px 26px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s; }
.menu-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.menu-card h3 { font-size: 25px; font-weight: 700; margin-bottom: 8px; }
.menu-card .dot { position: absolute; top: 24px; right: 24px; width: 16px; height: 16px; border-radius: 50%; box-shadow: 0 0 0 5px color-mix(in srgb, var(--text) 6%, transparent); }
.dot-cheese { background: #f3d77a; }
.dot-choco { background: #5a3320; }
.dot-matcha { background: var(--green); }
.dot-peanut { background: #cf9b56; }

/* Packages */
.packages { border-top: 1px solid var(--line); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.package-card {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  padding: 34px 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-sm);
}
.package-card.featured { border-color: var(--gold); background: linear-gradient(160deg, color-mix(in srgb, var(--gold) 16%, var(--card)), var(--card)); box-shadow: var(--shadow); }
.ribbon { position: absolute; top: -13px; left: 30px; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #2b1608; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; }
.package-card h3 { font-size: 26px; font-weight: 700; }
.price { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 700; line-height: 1; margin: 6px 0 2px; }
.price span { font-size: 18px; vertical-align: super; color: var(--muted); margin-right: 2px; }
.price-note { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.package-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.package-card li { padding-left: 26px; position: relative; font-size: 15px; }
.package-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.package-card .btn { margin-top: auto; }

/* Steps */
.steps { border-top: 1px solid var(--line); }
.step-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-grid li { padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.step-no { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #2b1608; font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; margin-bottom: 16px; }
.step-grid h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.step-grid p { font-size: 15px; margin: 0; }

/* Story */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; padding: 84px 6vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.04; }
.story > p { font-size: 19px; line-height: 1.85; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.testi-card blockquote { margin: 0 0 16px; font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; line-height: 1.55; color: var(--text); }
.testi-card figcaption { color: var(--gold); font-weight: 700; font-size: 14px; }

/* Order */
.order { padding: 70px 6vw; border-top: 1px solid var(--line); }
.order-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line-strong); border-radius: 34px; background: linear-gradient(150deg, color-mix(in srgb, var(--gold) 14%, var(--card)), var(--card)); box-shadow: var(--shadow); }
.order-logo { display: inline-grid; place-items: center; width: 92px; height: 92px; border-radius: 22px; overflow: hidden; background: #fdf6e7; border: 1px solid var(--line-strong); margin-bottom: 16px; }
.order-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); }
.order-intro h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.order-intro p { color: var(--muted); }
.order-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.field .opt { font-weight: 500; color: var(--muted-dim); }
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: 14px; border: 1px solid var(--line-strong);
  background: var(--card-solid); color: var(--text); font-family: inherit; font-size: 15px;
}
.field input::placeholder { color: var(--muted-dim); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 26%, transparent); }
.form-hint { text-align: center; font-size: 13px; color: var(--muted-dim); margin: 2px 0 0; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-list { max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--card); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; border: none; background: none; color: var(--text);
  font-family: inherit; font-size: 17px; font-weight: 600; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .25s; }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* CTA */
.cta { margin: 70px 6vw; padding: 38px; display: grid; grid-template-columns: 124px 1fr auto; gap: 30px; align-items: center; border: 1px solid var(--line-strong); border-radius: 34px; background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 18%, var(--card)), var(--card)); box-shadow: var(--shadow); }
.cta-logo { display: inline-grid; place-items: center; width: 124px; height: 124px; border-radius: 24px; overflow: hidden; background: #fdf6e7; border: 1px solid var(--line-strong); }
.cta-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); }
.cta h2 { font-size: clamp(26px, 3.4vw, 46px); font-weight: 800; line-height: 1.06; }

/* Footer */
footer { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px 40px; padding: 50px 6vw; border-top: 1px solid var(--line); color: var(--muted); }
.foot-brand strong { font-family: 'Fraunces', serif; font-size: 20px; color: var(--text); }
.foot-brand p { margin: 8px 0 0; font-size: 15px; max-width: 42ch; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-start; justify-content: flex-end; font-weight: 600; }
.foot-links a:hover { color: var(--gold-soft); }
.foot-copy { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; font-size: 13px; margin: 0; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: clamp(16px, 4vw, 30px); bottom: clamp(16px, 4vw, 30px); z-index: 40;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.42);
  transition: transform .2s; animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(1.4deg); } 50% { transform: translateY(-14px) rotate(0deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes waPulse { 0%, 100% { box-shadow: 0 14px 34px rgba(37,211,102,.42); } 50% { box-shadow: 0 14px 34px rgba(37,211,102,.42), 0 0 0 12px rgba(37,211,102,.10); } }

/* Responsive */
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; max-width: 520px; }
  .features, .package-grid, .testi-grid { grid-template-columns: 1fr; }
  .menu-grid, .step-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; gap: 22px; }
  .order-card { grid-template-columns: 1fr; gap: 26px; }
  .cta { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer { grid-template-columns: 1fr; }
  .foot-links { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 6vw 22px;
    background: var(--card-solid); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s;
  }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .menu-grid, .step-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .seal { width: 100px; height: 100px; right: 8px; }
  .seal strong { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty, .seal, .wa-float { animation: none; }
  .btn:hover, .menu-card:hover, .icon-btn:hover, .wa-float:hover { transform: none; }
}
