/* ==========================================================================
   CHUNGCHUN FRANCE — Design System 2026
   Rice Dog · Streetfood coréenne
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --red:        #E4322B;
  --red-deep:   #B71E1A;
  --ember:      #FF6B35;
  --gold:       #FFC23C;
  --cream:      #FFF6EC;
  --cream-2:    #FBE9D6;
  --ink:        #1A1310;
  --ink-soft:   #40332C;
  --paper:      #FFFDF9;
  --line:       rgba(26, 19, 16, 0.12);

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;

  /* Spacing / shape */
  --radius:     28px;
  --radius-lg:  40px;
  --radius-sm:  16px;
  --maxw:       1240px;
  --gutter:     clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 60px -20px rgba(26, 19, 16, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(26, 19, 16, 0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
.display {
  font-size: clamp(3rem, 11vw, 9.5rem);
  text-transform: uppercase;
  line-height: 0.88;
}
.h-xl { font-size: clamp(2.4rem, 6vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.hangul { font-family: var(--font-display); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 12vw, 160px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 30px -10px rgba(228,50,43,0.7); }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 18px 40px -12px rgba(228,50,43,0.8); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  padding: 12px var(--gutter);
  background: rgba(255, 246, 236, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  font-family: 'Baloo 2', var(--font-display);
  font-weight: 800;
  font-size: 1.58rem;
  letter-spacing: -0.01em;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  line-height: 1;
}
.brand-logo { height: 46px; width: auto; display: block; }
.nav.scrolled .brand-logo { height: 42px; }
.footer .brand-logo { height: 60px; }
.brand-mark { width: 36px; height: auto; flex: none; transform: translateY(-3px); }
.brand .brand-word { position: relative; top: 1px; }
.brand .dot { color: var(--red); }
.brand .kr { font-size: 0.85rem; color: var(--red); font-weight: 700; letter-spacing: 0; align-self: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
.nav-links a:hover { background: rgba(26,19,16,0.06); }
.nav-links a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 13px; right: 13px; height: 2px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav-burger span:nth-child(1) { top: 18px; }
.nav-burger span:nth-child(2) { top: 24px; }
.nav-burger span:nth-child(3) { top: 30px; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3.6rem);
  text-transform: uppercase;
  padding-block: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu a:hover { color: var(--red); }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.22s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.29s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.36s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.43s; }
.mobile-menu .m-foot { margin-top: 40px; opacity: 0.6; font-family: var(--font-body); font-size: 1rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background:
    radial-gradient(110% 80% at 12% 25%, rgba(255,107,53,0.14), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-content {
  padding: clamp(120px, 15vh, 180px) clamp(24px, 3vw, 56px) clamp(40px, 6vh, 70px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}
.hero-content .display {
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  color: var(--ink);
}
.hero-content .display .stroke { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.hero-content .display em { font-style: normal; color: var(--red); }
.hero-tag {
  max-width: 44ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Big full-height hero image */
.hero-visual { position: relative; overflow: hidden; }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(255,246,236,0) 18%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  left: 26px; bottom: 26px;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { justify-content: flex-end; padding-top: 120px; padding-bottom: 28px; }
  .hero-visual { min-height: 52vh; order: 2; }
  .hero-visual::after { background: linear-gradient(0deg, rgba(255,246,236,0), transparent); }
}

/* ==========================================================================
   MARQUEE / TICKER
   ========================================================================== */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.ticker.rev .ticker-track { animation-direction: reverse; }
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ticker-track span::after { content: "✦"; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   CONCEPT / SPLIT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.concept-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ember), var(--red));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.concept-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.concept-media .kr-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 14rem);
  color: rgba(255,255,255,0.9);
  line-height: 0.8;
}
.badge-ring {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 150px; height: 150px;
}
.badge-ring text { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 2px; fill: var(--ink); }
.badge-ring .disc { fill: var(--gold); }
.badge-ring svg { animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.concept-text p { font-size: 1.15rem; color: var(--ink-soft); margin-top: 20px; max-width: 46ch; }
.pate-media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); }
.pate-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; display: block; }
.pate-tag { position: absolute; left: 18px; bottom: 18px; background: var(--gold); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; padding: 9px 17px; border-radius: 999px; box-shadow: var(--shadow); }
.resto-photo { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); }
.resto-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.resto-photo .pate-tag { position: absolute; left: 18px; bottom: 18px; }
.photo-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-band .cap {
  position: absolute; left: 20px; bottom: 18px;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 9px 18px; border-radius: 999px;
}
@media (max-width: 700px) { .photo-band { aspect-ratio: 4 / 3; } }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--paper);
}
.pill strong { color: var(--red); }

/* ==========================================================================
   MENU CARDS
   ========================================================================== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head p { color: var(--ink-soft); max-width: 40ch; margin-top: 12px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 184px), 1fr));
  gap: clamp(10px, 1.1vw, 15px);
}
.dish {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 11px;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dish-media {
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  margin-bottom: 9px;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.dish:nth-child(4n+1) .dish-media { background: linear-gradient(150deg,#ffe0c2,#ffbf8f); }
.dish:nth-child(4n+2) .dish-media { background: linear-gradient(150deg,#ffd7d3,#ff9e97); }
.dish:nth-child(4n+3) .dish-media { background: linear-gradient(150deg,#ffeab0,#ffd25e); }
.dish:nth-child(4n+4) .dish-media { background: linear-gradient(150deg,#ffdba8,#ffb0b8); }
.dish-media .emoji { transition: transform 0.6s var(--ease); }
.dish:hover .dish-media .emoji { transform: scale(1.15) rotate(-6deg); }
.dish-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.06); }
/* Transparent product cut-outs: show whole product on the gradient */
.dish-media.cut img { inset: 7%; width: 86%; height: 86%; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18)); }
.dish:hover .dish-media.cut img { transform: scale(1.07) rotate(-3deg); }
/* Cut-out product cards: Chungchun yellow background + brand mark top-left */
.dish .dish-media.cut { background: radial-gradient(circle at 50% 44%, #ffe08a 0%, #ffc83f 66%, #f4b021 100%); }
.dish-media.cut .dish-tag { left: auto; right: 12px; }
.dm-brand {
  position: absolute; top: 13px; left: 15px; z-index: 3;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.dm-brand .dot { color: var(--red); }
.dish-tag {
  position: absolute;
  z-index: 2;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 100px;
}
.dish-tag.hot { background: var(--red); }
.dish-tag.veg { background: #2e7d32; }
.dish-tag.new { background: var(--gold); color: var(--ink); }
.dish h3 { font-size: 1.08rem; margin-bottom: 3px; line-height: 1.15; }
.dish p { color: var(--ink-soft); font-size: 0.83rem; line-height: 1.4; }

/* Menu category nav */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: sticky;
  top: 80px;
  z-index: 50;
}
.menu-tabs a {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--paper);
  transition: all 0.3s;
}
.menu-tabs a:hover { border-color: var(--ink); }
.menu-cat { scroll-margin-top: 140px; }
.menu-cat + .menu-cat { margin-top: clamp(40px, 5vw, 72px); }
.menu-cat-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.menu-cat-title .num { font-family: var(--font-display); color: var(--red); font-weight: 800; font-size: 1.1rem; }
.menu-cat-title .kr-cat { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--red); align-self: center; opacity: 0.8; }

/* Sauces list */
.sauce-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.sauce {
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.sauce:hover { background: var(--red); color: #fff; transform: translateY(-3px) rotate(-2deg); border-color: var(--red); }

/* ==========================================================================
   GALLERY (Instagram / donne faim)
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
.gcell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  background: var(--cream-2);
}
.gcell.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gcell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gcell:hover img { transform: scale(1.07); }
.gcell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(20,16,14,0.18));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gcell:hover::after { opacity: 1; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gcell.big { grid-column: span 2; grid-row: span 1; aspect-ratio: 1; }
}

/* ==========================================================================
   WORLD CUP BOX (édition limitée)
   ========================================================================== */
.wc-box {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255,194,60,0.25), transparent 55%),
    linear-gradient(150deg, #14100e, #241a14);
  color: var(--cream);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.wc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.wc-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 50px); align-items: center; }
.wc-media {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--gold), var(--ember));
  display: grid; place-items: center;
  font-size: clamp(5rem, 12vw, 9rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wc-info h2 { color: #fff; }
.wc-info > p { color: rgba(255,255,255,0.72); margin-top: 10px; font-size: 1.1rem; max-width: 42ch; }
.wc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 10px 22px; margin: 26px 0; }
.wc-list li { display: flex; align-items: baseline; gap: 10px; font-size: 1.02rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.wc-list li b { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; min-width: 20px; }
.wc-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.wc-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; }
.wc-price em { font-style: normal; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.wc-avail { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 720px) { .wc-grid { grid-template-columns: 1fr; } }

/* Homepage World Cup poster feature */
.wc-poster {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.wc-poster img { width: 100%; height: auto; display: block; transition: transform 0.7s var(--ease); }
.wc-poster:hover img { transform: scale(1.03); }
.wc-poster-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-top: 26px;
}
.wc-poster-foot p { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; }
.wc-poster-foot p strong { color: var(--ink); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: var(--gold);
}
.stat .l { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; margin-top: 10px; opacity: 0.75; font-weight: 600; }

/* ==========================================================================
   HISTOIRE
   ========================================================================== */
.story-hero { padding-top: 160px; }
.timeline { border-left: 2px solid var(--line); margin-top: 40px; }
.tl-item { padding: 0 0 44px 34px; position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px var(--cream);
}
.tl-item h3 { font-size: 1.4rem; margin-bottom: 8px; }
.tl-item p { color: var(--ink-soft); max-width: 55ch; }
.founders { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 40px; }
.founder {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.founder .av {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(150deg,var(--ember),var(--red));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.4rem;
  margin-bottom: 16px;
}
.founder h4 { font-size: 1.2rem; }
.founder span { color: var(--red); font-size: 0.85rem; font-weight: 600; }
.founder p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }

/* ==========================================================================
   ADRESSES
   ========================================================================== */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,320px),1fr)); gap: 22px; }
.loc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.loc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.loc-city { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.loc-city h3 { font-size: 1.6rem; }
.halal {
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 10px; border-radius: 100px;
  background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7;
}
.soon-badge {
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 10px; border-radius: 100px;
  background: var(--gold); color: var(--ink); border: 1px solid var(--ember);
}
.loc.soon { background: linear-gradient(150deg, #fffaf0, #fff4dd); border-color: var(--gold); }
.loc.soon:hover { border-color: var(--ember); }
.loc .addr { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 4px; }
.loc-meta { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 6px; }
.loc-meta .row { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.loc-meta .row .ic { color: var(--red); width: 18px; }
.loc-actions { display: flex; gap: 10px; margin-top: 18px; }
.loc-actions a { flex: 1; text-align: center; padding: 12px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; }
.loc-actions .call { background: var(--ink); color: var(--cream); }
.loc-actions .map { border: 1.5px solid var(--line); }

/* ==========================================================================
   FRANCHISE / CTA BAND
   ========================================================================== */
/* Decorative Korean background typography */
.kr-bg-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: rgba(26, 19, 16, 0.07);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
.kr-bg-word.tl { top: -5%; left: -2%; font-size: clamp(11rem, 28vw, 26rem); }
.kr-bg-word.br { bottom: -8%; right: -2%; font-size: clamp(8rem, 21vw, 19rem); color: rgba(228,50,43,0.07); }

/* Scattered Korean background layer */
.kr-scatter { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; user-select: none; }
.kr-scatter span { position: absolute; font-family: var(--font-display); font-weight: 800; line-height: 0.8; white-space: nowrap; color: rgba(26,19,16,0.07); }
.kr-scatter.on-dark span { color: rgba(255,194,60,0.11); }
/* Standard scattered Korean background (site-wide) — big & subtle */
.hero { position: relative; }
.kr-scatter .k1 { top: -5%; left: -2%; font-size: clamp(7rem, 23vw, 22rem); transform: rotate(-4deg); }
.kr-scatter .k2 { top: 34%; right: -3%; font-size: clamp(6rem, 18vw, 17rem); transform: rotate(3deg); }
.kr-scatter .k3 { bottom: -7%; left: 4%; font-size: clamp(6rem, 17vw, 15rem); }

/* Trend / market section (dark) */
.trend { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(40px,6vw,76px); position: relative; overflow: hidden; }
.trend > * { position: relative; z-index: 1; }
.trend-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,4vw,48px); margin-top: 34px; }
.trend-stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.8rem); color: var(--gold); line-height: 1; }
.trend-stat .l { color: rgba(255,246,236,0.82); margin-top: 10px; font-size: 0.98rem; max-width: 24ch; }
.trend-quote { margin-top: 40px; border-left: 3px solid var(--gold); padding-left: 22px; font-style: italic; font-size: clamp(1.05rem,1.6vw,1.35rem); max-width: 60ch; }
.trend-quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 760px) { .trend-stats { grid-template-columns: 1fr; gap: 26px; } }

/* Business model cards */
.bmodel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,24px); }
.bmodel .bcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,48px); text-align: center; }
.bmodel .bcard h4 { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.bmodel .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4.6vw,3.2rem); line-height: 1.05; margin-top: 16px; color: var(--ink); }
.bmodel .bcard.rev .big { color: var(--red); }
.bmodel .sub { color: var(--ink-soft); font-size: 0.92rem; margin: 4px 0 14px; }
@media (max-width: 700px) { .bmodel { grid-template-columns: 1fr; } }

.band {
  background: linear-gradient(150deg, var(--red), var(--red-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band .kr-ghost {
  position: absolute;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(12rem, 40vw, 30rem);
  color: rgba(255,255,255,0.08);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.band h2 { position: relative; z-index: 2; }
.band p { position: relative; z-index: 2; max-width: 46ch; margin: 20px auto 34px; font-size: 1.15rem; opacity: 0.92; }
.band .btn-primary { background: #fff; color: var(--red); }
.band .btn-primary:hover { background: var(--ink); color: #fff; }

.perks { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; margin-top: 50px; }
.perk { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); }
.perk .ic { font-size: 2rem; margin-bottom: 14px; }
.perk h4 { font-size: 1.2rem; margin-bottom: 8px; }
.perk p { color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form { display: grid; gap: 18px; max-width: 560px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field textarea, .field select {
  padding: 15px 18px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228,50,43,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--cream); padding: clamp(60px,8vw,110px) 0 40px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: var(--cream); font-size: 2rem; }
.footer-col h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 18px; opacity: 0.7; }
.footer-col a { display: block; padding: 6px 0; opacity: 0.85; transition: opacity 0.3s, color 0.3s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-tag { opacity: 0.7; margin-top: 16px; max-width: 32ch; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; opacity: 0.7; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; text-align: center; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 760px) {
  .hero-top { position: static; margin-bottom: 40px; }
  .hero { justify-content: center; }
  .menu-tabs { top: 72px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ==========================================================================
   VARIANTE JAUNE v2 — jaune FLASH plus vibrant
   ========================================================================== */
:root {
  --gold:        #FFD400;   /* jaune flash vibrant */
  --yellow:      #FFD400;
  --yellow-deep: #FFC400;
  --yellow-soft: #FFEB80;
}
.ticker { background: var(--yellow); color: var(--ink); border-block-color: rgba(26,19,16,0.14); }
.ticker-track span::after { color: var(--red); }
.hero {
  background:
    radial-gradient(120% 90% at 10% 15%, rgba(255,212,0,0.45), transparent 55%),
    radial-gradient(85% 75% at 92% 90%, rgba(255,107,53,0.12), transparent 55%),
    var(--cream);
}
.band { background: linear-gradient(150deg, var(--yellow), var(--yellow-deep)); color: var(--ink); box-shadow: 0 24px 60px -24px rgba(255,212,0,0.6); }
.band p { color: var(--ink-soft); opacity: 1; }
.band .kr-ghost { color: rgba(26,19,16,0.08); }
.band .btn-primary { background: var(--ink); color: #fff; }
.band .btn-primary:hover { background: var(--red); color: #fff; }
.menu-tabs a:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.dish:hover { border-color: var(--yellow); box-shadow: 0 18px 42px -22px rgba(255,212,0,0.7); }
.pill:hover { border-color: var(--yellow); }
.footer { border-top: 6px solid var(--yellow); }
.hero-photo-badge, .pate-tag { box-shadow: 0 8px 22px -8px rgba(255,212,0,0.7); }
