/* ===========================================
   BILENGI — Les délices d'Afrique
   Style : editorial botanical, mobile-first
   =========================================== */

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100svh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
button { border: 0; background: none; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

/* ============ TOKENS ============ */
:root {
  /* palette */
  --canvas: #F1EBDD;
  --paper: #FDF9EE;
  --paper-warm: #F5EEDC;
  --ink: #0F2E1F;
  --ink-soft: #2C4A3C;
  --leaf: #1B5E3F;
  --leaf-deep: #12402A;
  --sage: #A8B99D;
  --pepper: #C63A2B;
  --mango: #E8A13C;
  --passion: #E56B2F;
  --cream: #FDF5E4;

  /* typo */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --f-mono: 'DM Mono', 'SF Mono', Consolas, monospace;

  /* measurements */
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-y: clamp(64px, 12vw, 140px);
  --radius: 18px;
  --radius-lg: 32px;

  /* motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ============ BASE ============ */
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  background-image:
    radial-gradient(ellipse at 15% -10%, rgba(27, 94, 63, .06), transparent 55%),
    radial-gradient(ellipse at 110% 8%, rgba(198, 58, 43, .05), transparent 45%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--canvas); }

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: .25; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ============ AMBIENT BLOBS ============ */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; animation: drift 24s ease-in-out infinite; }
.blob--1 { width: 520px; height: 520px; background: var(--sage); top: -10%; left: -15%; }
.blob--2 { width: 420px; height: 420px; background: var(--mango); top: 40%; right: -20%; opacity: .22; animation-delay: -8s; }
.blob--3 { width: 360px; height: 360px; background: var(--pepper); bottom: -10%; left: 30%; opacity: .14; animation-delay: -16s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(.95); }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--canvas);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; padding: var(--pad-x); }
.preloader__mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(56px, 14vw, 140px);
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: .9;
  display: inline-flex;
}
.preloader__mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: preFadeUp .6s var(--ease-out) forwards;
}
.preloader__mark span:nth-child(1) { animation-delay: .05s; }
.preloader__mark span:nth-child(2) { animation-delay: .12s; }
.preloader__mark span:nth-child(3) { animation-delay: .19s; }
.preloader__mark span:nth-child(4) { animation-delay: .26s; }
.preloader__mark span:nth-child(5) { animation-delay: .33s; }
.preloader__mark span:nth-child(6) { animation-delay: .40s; }
.preloader__mark span:nth-child(7) { animation-delay: .47s; color: var(--pepper); font-style: italic; }
@keyframes preFadeUp { to { opacity: 1; transform: none; } }
.preloader__line {
  width: 0; height: 1px; background: var(--ink); margin: 24px auto 18px;
  animation: preLine 1.2s .7s var(--ease-out) forwards;
}
@keyframes preLine { to { width: 140px; } }
.preloader__sub {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(14px, 3vw, 20px); color: var(--ink-soft);
  opacity: 0; animation: preFadeUp .7s 1.1s var(--ease-out) forwards;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s var(--ease-out), backdrop-filter .4s, padding .4s;
}
.site-header.is-scrolled {
  background: rgba(241, 235, 221, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  padding: 12px var(--pad-x);
  border-bottom: 1px solid rgba(15, 46, 31, .08);
}

.wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -.04em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 1px;
}
.wordmark__b { color: var(--pepper); font-style: italic; }
.wordmark em { color: var(--mango); font-style: normal; margin-left: 1px; }
.wordmark--light { color: var(--canvas); }
.wordmark--light .wordmark__b { color: var(--mango); }

.nav-toggle {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(15, 46, 31, .22);
  position: relative; z-index: 102;
  transition: background .3s, border-color .3s;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease-out), opacity .3s, background .3s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] { background: var(--ink); border-color: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--canvas); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.primary-nav {
  position: fixed; inset: 0; z-index: 101;
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(90px, 16vw, 140px) var(--pad-x) var(--pad-x);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.primary-nav.is-open { opacity: 1; visibility: visible; }
.primary-nav ul { display: flex; flex-direction: column; gap: clamp(12px, 3vw, 22px); }
.primary-nav li {
  transform: translateY(30px); opacity: 0;
  transition: transform .6s var(--ease-out), opacity .5s var(--ease-out);
  transition-delay: calc(80ms * var(--i, 0));
}
.primary-nav.is-open li { transform: none; opacity: 1; }
.primary-nav a {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(42px, 10vw, 88px);
  letter-spacing: -.035em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 18px;
  color: var(--canvas);
  transition: color .3s;
}
.primary-nav a::before {
  content: attr(data-num);
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 2px;
  color: var(--sage); align-self: flex-start; padding-top: 8px;
}
.primary-nav a:hover, .primary-nav a:focus { color: var(--mango); font-style: italic; }
.primary-nav__footer {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--sage); border-top: 1px solid rgba(241, 235, 221, .15); padding-top: 20px;
}

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 1;
  padding: clamp(120px, 20vw, 180px) var(--pad-x) clamp(60px, 10vw, 100px);
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: clamp(28px, 6vw, 44px);
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pepper); animation: pulse 2.2s infinite ease-in-out; }
.hero__eyebrow em { font-style: normal; color: var(--pepper); font-weight: 500; font-family: var(--f-display); font-size: 14px; }
.hero__eyebrow .spacer { color: var(--sage); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(1.15); } }

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(60px, 16vw, 200px);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--ink);
  max-width: 16ch;
}
.hero__title span { display: block; }
.hero__italic em {
  font-style: italic; font-weight: 500; color: var(--pepper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero__lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-top: clamp(24px, 5vw, 40px);
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 80;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(28px, 6vw, 44px);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  transition: transform .3s var(--ease-spring), background .3s, color .3s;
  will-change: transform;
}
.btn--primary { background: var(--ink); color: var(--canvas); }
.btn--primary:hover { background: var(--pepper); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--primary svg { transition: transform .3s var(--ease-spring); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--canvas); }

/* hero fruits */
.hero__fruit { position: absolute; pointer-events: none; z-index: -1; opacity: .9; mix-blend-mode: multiply; }
.hero__fruit--pine { top: 8%; right: -30px; width: clamp(110px, 22vw, 240px); transform: rotate(14deg); animation: float 7s ease-in-out infinite; }
.hero__fruit--passion {
  bottom: 6%;
  left: -60px;
  width: clamp(70px, 12vw, 130px);
  opacity: .55;
  animation: float 9s ease-in-out infinite;
  animation-delay: -2s;
}
.hero__fruit--leaf { bottom: -10px; right: 10%; width: clamp(80px, 14vw, 160px); transform: rotate(-18deg); animation: float 11s ease-in-out infinite; animation-delay: -5s; opacity: .85; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--r, 0deg)); }
}
.hero__fruit--pine { --r: 14deg; }
.hero__fruit--leaf { --r: -18deg; }

.hero__stamp {
  position: absolute;
  top: clamp(120px, 18vw, 160px); right: clamp(-30px, -2vw, 10px);
  width: clamp(100px, 18vw, 180px);
  animation: spin 36s linear infinite;
  mix-blend-mode: multiply;
  opacity: .9;
  z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); opacity: .6;
}
.hero__scroll svg { animation: bounce 2s infinite ease-in-out; color: var(--ink-soft); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============ MARQUEE ============ */
.marquee {
  position: relative; z-index: 2;
  background: var(--ink); color: var(--canvas);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(241, 235, 221, .08);
  border-bottom: 1px solid rgba(241, 235, 221, .08);
}
.marquee__track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  font-size: clamp(22px, 4vw, 38px);
  padding-left: 28px;
}
.marquee__track li { display: inline-block; }
.marquee__track li:nth-child(even) { color: var(--mango); font-style: normal; font-family: var(--f-body); font-weight: 300; font-size: 14px; align-self: center; transform: translateY(-4px); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTION HEADS ============ */
.section-head { margin-bottom: clamp(40px, 7vw, 64px); max-width: 760px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--dark { color: var(--canvas); }

.section-tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pepper); margin-bottom: 18px;
  padding-left: 24px; position: relative;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 1.5px; background: currentColor;
}
.section-head--dark .section-tag { color: var(--mango); }

.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(44px, 9vw, 108px);
  line-height: .94;
  letter-spacing: -.035em;
}
.section-title em {
  font-style: italic; font-weight: 500;
  color: var(--pepper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-head--dark .section-title em { color: var(--mango); }

.section-intro {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--ink-soft);
  max-width: 50ch; margin-top: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  font-variation-settings: "opsz" 48, "SOFT" 80;
}
.section-head--dark .section-intro { color: rgba(241, 235, 221, .78); }

/* ============ JUICES ============ */
.juices {
  position: relative; z-index: 2;
  padding: var(--pad-y) var(--pad-x);
  background: var(--canvas);
}
.juice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.juice-card {
  position: relative;
  background: var(--bg, var(--paper));
  border: 1px solid rgba(15, 46, 31, .12);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  overflow: hidden;
  transition: transform .5s var(--ease-spring), box-shadow .5s;
}
.juice-card:hover {
  transform: translateY(-6px) rotate(-.5deg);
  box-shadow: 0 30px 60px -20px rgba(15, 46, 31, .25);
}
.juice-card__num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 2px;
  color: var(--ink-soft); position: absolute; top: 20px; right: 22px;
  opacity: .6;
}
.juice-card__bottle {
  height: clamp(180px, 32vw, 220px);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.juice-card__bottle svg { height: 100%; width: auto; filter: drop-shadow(0 12px 20px rgba(15, 46, 31, .18)); transition: transform .6s var(--ease-spring); }
.juice-card:hover .juice-card__bottle svg { transform: rotate(-4deg) scale(1.04); }
.juice-card__name {
  font-family: var(--f-display); font-weight: 600; font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: clamp(26px, 5vw, 32px);
  letter-spacing: -.02em; line-height: 1.05;
  color: var(--ink);
}
.juice-card__desc {
  font-size: 14px; color: var(--ink-soft); margin: 10px 0 18px;
  max-width: 32ch;
}
.juice-card__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; border-top: 1px dashed rgba(15, 46, 31, .25);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft);
}
.juice-card__price {
  font-family: var(--f-display); font-weight: 700; font-style: normal;
  font-size: 26px; color: var(--ink);
  text-transform: none; letter-spacing: 0;
}
.juice-card__price em { font-size: 14px; font-weight: 400; margin-left: 2px; color: var(--ink-soft); font-style: normal; }

.juices__foot {
  margin-top: clamp(40px, 7vw, 56px);
  padding: 24px 26px; border-radius: var(--radius);
  background: var(--paper-warm);
  font-family: var(--f-display); font-style: italic; font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft); max-width: 700px;
}
.juices__foot em { color: var(--pepper); font-style: normal; font-weight: 600; }

/* ============ TABLE ============ */
.table {
  position: relative; z-index: 2;
  padding: var(--pad-y) var(--pad-x);
  background: var(--ink);
  color: var(--canvas);
  overflow: hidden;
}
.table::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, var(--canvas), transparent);
  opacity: .03;
  pointer-events: none;
}

.menu-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 56px);
}
.menu-column__title {
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: clamp(28px, 5vw, 36px);
  color: var(--mango);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.menu-column--accent .menu-column__title { color: var(--pepper); }
.menu-list {
  display: flex; flex-direction: column; gap: 18px;
}
.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 12px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(241, 235, 221, .15);
}
.menu-list__name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(17px, 2.3vw, 19px);
  letter-spacing: -.01em;
}
.menu-list__dots {
  height: 1px;
  background-image: radial-gradient(circle, rgba(241, 235, 221, .35) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  align-self: center;
  transform: translateY(4px);
}
.menu-list__price {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--mango);
}
.menu-list__note {
  grid-column: 1 / -1;
  font-family: var(--f-display); font-style: italic;
  font-size: 13px; color: rgba(241, 235, 221, .55);
  margin-top: 4px;
  font-variation-settings: "opsz" 14, "SOFT" 80;
}

.table__chef {
  margin-top: clamp(56px, 9vw, 80px);
  padding: clamp(28px, 5vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--leaf-deep), var(--leaf));
  position: relative; overflow: hidden;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.table__chef::before {
  content: '"';
  position: absolute;
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 280px;
  color: var(--mango);
  opacity: .14;
  top: -60px; left: -10px;
  line-height: 1;
}
.table__chef-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mango); margin-bottom: 18px;
}
.table__chef blockquote {
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  font-size: clamp(19px, 3vw, 26px);
  line-height: 1.4;
  color: var(--canvas);
  position: relative;
}
.table__chef cite {
  display: block; margin-top: 20px;
  font-family: var(--f-mono); font-style: normal; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage);
}

/* ============ EVENTS ============ */
.events {
  position: relative; z-index: 2;
  padding: var(--pad-y) var(--pad-x);
  background: var(--canvas);
}
.events-list { display: flex; flex-direction: column; gap: 14px; }
.event {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px;
  background: var(--paper);
  border: 1px solid rgba(15, 46, 31, .1);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-spring), box-shadow .4s, border-color .4s;
}
.event:hover {
  transform: translateX(6px);
  border-color: var(--leaf);
  box-shadow: -6px 10px 30px -12px rgba(15, 46, 31, .2);
}
.event__date {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 6px; border-radius: 12px;
  background: var(--ink); color: var(--canvas);
  line-height: 1;
}
.event__day {
  font-family: var(--f-display); font-weight: 700; font-size: 32px;
  letter-spacing: -.03em;
}
.event__month {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mango); margin-top: 6px;
}
.event__body h3 {
  font-family: var(--f-display); font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  font-size: clamp(19px, 3vw, 22px);
  letter-spacing: -.01em;
}
.event__body p {
  color: var(--ink-soft); font-size: 14px; margin-top: 4px;
}
.event__meta {
  margin-top: 8px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 1.2px;
  color: var(--ink-soft); text-transform: uppercase;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.event__meta span:nth-child(2) { color: var(--sage); }
.event__pill {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 12px; border: 1px solid currentColor;
  border-radius: 999px;
  align-self: start;
  white-space: nowrap;
}
.event__pill--live { color: var(--pepper); background: rgba(198, 58, 43, .08); }
.event__pill--star { color: var(--mango); background: rgba(232, 161, 60, .12); }

/* ============ STORY ============ */
.story {
  position: relative; z-index: 2;
  padding: var(--pad-y) var(--pad-x);
  background: var(--paper-warm);
}
.story__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px);
}
.story__lede {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  font-size: clamp(22px, 3.8vw, 32px);
  line-height: 1.32;
  color: var(--leaf-deep);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.story__body p { margin-bottom: 16px; max-width: 52ch; color: var(--ink-soft); }
.story__body em { color: var(--pepper); font-style: italic; font-weight: 500; }

.story__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(15, 46, 31, .25);
}
.story__stats > div { text-align: left; }
.story__stat-num {
  display: block;
  font-family: var(--f-display); font-weight: 600;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1; letter-spacing: -.02em;
  color: var(--leaf-deep);
}
.story__stat-num sup { font-size: .55em; font-weight: 500; color: var(--pepper); }
.story__stat-lbl {
  display: block; margin-top: 6px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-soft);
}

.story__map {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(15, 46, 31, .1);
}

/* ============ CONTACT ============ */
.contact {
  position: relative; z-index: 2;
  padding: var(--pad-y) var(--pad-x);
  background: var(--canvas);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.contact__card {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(15, 46, 31, .12);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .4s var(--ease-spring), background .4s, color .4s, border-color .4s;
  overflow: hidden;
  min-height: 150px;
}
.contact__card--wa {
  background: #0F2E1F;
  color: var(--canvas);
  border-color: var(--leaf);
  grid-row: 1;
}
.contact__card--wa::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, var(--mango) 0%, transparent 70%);
  opacity: .6;
}
.contact__card--kin { background: var(--pepper); color: var(--canvas); border-color: var(--pepper); }
.contact__card:not(.contact__card--static):hover {
  transform: translateY(-4px);
}
.contact__tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); opacity: .7;
}
.contact__card--wa .contact__tag,
.contact__card--kin .contact__tag { color: var(--mango); opacity: 1; }
.contact__label {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: clamp(22px, 4vw, 28px);
}
.contact__value {
  font-family: var(--f-display); font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 100;
  font-size: clamp(19px, 2.8vw, 22px);
  line-height: 1.2; margin-top: auto;
}
.contact__sub {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--ink-soft); text-transform: uppercase; margin-top: 6px;
}
.contact__arrow {
  position: absolute; top: 20px; right: 20px;
  font-size: 20px;
  transition: transform .3s var(--ease-spring);
}
.contact__card:hover .contact__arrow { transform: translate(4px, -4px) rotate(-8deg); }

/* ============ FOOTER ============ */
.site-footer {
  position: relative; z-index: 2;
  background: var(--ink); color: var(--canvas);
  padding: 0 0 var(--pad-x);
}
.site-footer__wave svg { display: block; width: 100%; height: 50px; }
.site-footer__wave path { fill: var(--ink); }
.site-footer__wave { background: var(--canvas); }
.site-footer__inner { padding: clamp(40px, 6vw, 60px) var(--pad-x) 0; }
.site-footer__brand p { max-width: 44ch; color: rgba(241, 235, 221, .7); margin-top: 10px; }
.site-footer__links {
  margin-top: clamp(36px, 5vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.site-footer__links a {
  display: inline-block; padding: 6px 0;
  font-family: var(--f-display); font-style: italic; font-size: 19px;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  color: var(--canvas);
  transition: color .3s, padding-left .3s;
}
.site-footer__links a:hover { color: var(--mango); padding-left: 8px; }
.site-footer__legal {
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: 20px;
  border-top: 1px solid rgba(241, 235, 221, .12);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(241, 235, 221, .55);
}
.site-footer__legal .dot { width: 4px; height: 4px; background: var(--sage); border-radius: 50%; }
.site-footer__big {
  margin-top: clamp(40px, 6vw, 56px);
  font-family: var(--f-display); font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(88px, 28vw, 320px);
  line-height: .8;
  letter-spacing: -.06em;
  color: var(--canvas);
  opacity: .12;
  overflow: hidden;
  text-align: center;
  user-select: none;
}

/* ============ MEDIA QUERIES ============ */
@media (min-width: 680px) {
  .juice-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__card--wa { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .juice-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 60px; }

  .primary-nav {
    position: static; inset: auto;
    opacity: 1; visibility: visible;
    background: transparent; color: inherit;
    padding: 0; display: flex; flex-direction: row; align-items: center;
    gap: 8px;
  }
  .primary-nav ul { flex-direction: row; gap: 4px; }
  .primary-nav li { transform: none; opacity: 1; }
  .primary-nav a {
    font-family: var(--f-body); font-weight: 500; font-size: 14px;
    letter-spacing: .02em; color: var(--ink);
    padding: 10px 14px; border-radius: 999px;
    transition: background .3s, color .3s;
  }
  .primary-nav a::before { display: none; }
  .primary-nav a:hover { background: var(--ink); color: var(--canvas); font-style: normal; }
  .primary-nav__footer { display: none; }
  .nav-toggle { display: none; }

  .hero__lede { font-size: 22px; }

  .story__grid { grid-template-columns: 1.3fr 1fr; align-items: center; }
  .story__grid .section-head { grid-column: 1 / -1; }
  .story__map { grid-row: 2; }
  .story__body { grid-row: 2; }

  .contact__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .contact__card--wa {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 320px;
  }

  .site-footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1440px) {
  .hero__title { font-size: clamp(120px, 13vw, 220px); }
}

/* ============ REVEAL (placed last to win cascade for transition prop) ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity .9s var(--ease-out) var(--d, 0ms),
    transform .9s var(--ease-out) var(--d, 0ms),
    filter .9s var(--ease-out) var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
