/* ============================================================
   EMELI — Sushi & Tandoori
   "Waar tandoori sushi ontmoet"
   Design system: neutrale schil + twee werelden (India / Japan)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Neutrale schil */
  --ink: #14110D;
  --ink-2: #221c14;
  --ink-soft: #615442;
  --paper: #F0E7D6;
  --paper-2: #E6D9C0;
  --line: rgba(20, 17, 13, .12);
  --gold: #C9A227;
  --gold-deep: #a07e16;

  /* Merkrood — uit het originele logo (geschilderde cirkel + eetstokjes) */
  --vermilion: #DA3A1C;
  --vermilion-deep: #B12C12;

  /* India — warm, kruidig, in de rode familie van het logo */
  --in-saffron: #F2734E;
  --in-terra: #C13A20;
  --in-wine: #5A1A2B;
  --in-turmeric: #E0532B;
  --in-cream: #FBF3E4;
  --in-dark: #200B07;

  /* Japan — sakura, zen */
  --jp-sakura: #F3C6CE;
  --jp-rose: #E29CA8;
  --jp-accent: #C25C75;
  --jp-white: #FCFCFA;
  --jp-wood: #E3D2B8;
  --jp-ink: #1C1C1A;
  --jp-matcha: #A8B89A;

  /* Functioneel */
  --wa: #25D366;
  --wa-deep: #1da851;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(20, 17, 13, .35);
  --shadow-lg: 0 40px 90px -40px rgba(20, 17, 13, .55);
  --container: 1200px;
  --ease: cubic-bezier(.4, .12, .2, 1);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
:focus-visible { outline: 3px solid var(--vermilion); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.container.wide { max-width: 1360px; }
.section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
.section.tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.center { text-align: center; }
.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin: .6rem 0; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem;
  color: var(--in-terra);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vermilion); }
.world-japan .eyebrow, .eyebrow.jp { color: var(--jp-rose); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--bg); color: var(--fg);
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(0, 0, 0, .5); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--gold { --bg: var(--vermilion); --fg: #FFF6EE; }
.btn--gold:hover { --bg: var(--vermilion-deep); }
.btn--india { --bg: var(--in-terra); --fg: #fff; }
.btn--japan { --bg: var(--jp-ink); --fg: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { --bg: rgba(255, 255, 255, .08); --fg: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--whatsapp { --bg: var(--wa); --fg: #06351c; width: 100%; justify-content: center; font-size: 1.08rem; }
.btn--whatsapp:hover { --bg: var(--wa-deep); }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--in-terra); }
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }

/* ---------- Skip link / progress / to-top ---------- */
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 200; background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 1rem; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120; background: var(--vermilion); }
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: .35rem;
}
/* Donkere top-scrim zodat de witte nav leesbaar blijft over de lichte (Japan) helft van de hero */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 160px; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 8, 5, .58), rgba(10, 8, 5, 0));
  transition: opacity .35s; pointer-events: none;
}
.site-header.scrolled::before { opacity: 0; }
.site-header:not(.scrolled) .nav-links a,
.site-header:not(.scrolled) .brand { text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.site-header.scrolled { background: rgba(240, 231, 214, .92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 700; font-size: 1.65rem; letter-spacing: .14em; color: #fff; transition: color .35s; }
.site-header.scrolled .brand { color: var(--ink); }
.brand .brand-mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .56rem; letter-spacing: .34em; opacity: .8; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a { padding: .55rem .9rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: #fff; transition: background .25s, color .25s; }
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { background: rgba(255, 255, 255, .14); }
.site-header.scrolled .nav-links a:hover { background: rgba(20, 17, 13, .07); }

.nav-actions { display: flex; align-items: center; gap: .6rem; }

/* Taalkeuze NL / EN / FR in de header */
.lang-switch { display: flex; align-items: center; gap: .05rem; font-size: .78rem; font-weight: 700; letter-spacing: .06em; }
.lang-switch a { color: rgba(255, 255, 255, .72); padding: .3rem .45rem; border-radius: 8px; transition: color .25s, background .25s; }
.lang-switch a:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.lang-switch a[aria-current="true"] { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: var(--vermilion); }
.lang-switch .sep { color: rgba(255, 255, 255, .3); }
.site-header.scrolled .lang-switch a { color: var(--ink-soft); }
.site-header.scrolled .lang-switch a:hover { color: var(--ink); background: rgba(20, 17, 13, .07); }
.site-header.scrolled .lang-switch a[aria-current="true"] { color: var(--vermilion-deep); }
.site-header.scrolled .lang-switch .sep { color: rgba(20, 17, 13, .25); }

/* Taalkeuze in het mobiele menu */
.mobile-lang { display: flex; gap: .5rem; margin-top: 1.1rem; }
.mobile-lang a {
  flex: 1; text-align: center; padding: .6rem 0 !important; border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 10px; border-bottom: 1.5px solid rgba(255, 255, 255, .25) !important;
  font-size: .9rem !important; font-weight: 700 !important; letter-spacing: .08em;
}
.mobile-lang a[aria-current="true"] { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }
.nav-cart {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; border-radius: 999px; font-weight: 600; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3); transition: color .35s, border-color .35s, background .25s;
}
.nav-cart svg { width: 1.2em; height: 1.2em; }
.site-header.scrolled .nav-cart { color: var(--ink); border-color: var(--line); }
.nav-cart:hover { background: rgba(255, 255, 255, .12); }
.site-header.scrolled .nav-cart:hover { background: rgba(20, 17, 13, .06); }
.nav-cart .count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px; background: var(--in-terra); color: #fff;
  font-size: .72rem; font-weight: 700; transform: scale(0); transition: transform .25s var(--ease);
}
.nav-cart .count.on { transform: scale(1); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor; transition: transform .3s, top .3s, opacity .2s; }
.nav-toggle { color: #fff; }
.site-header.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 99;
  background: var(--ink); color: #fff; padding: 6rem 1.6rem 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { padding: .95rem .4rem; font-size: 1.15rem; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-menu .btn { margin-top: 1.2rem; justify-content: center; }
.nav-backdrop { position: fixed; inset: 0; z-index: 98; background: rgba(10, 8, 5, .5); opacity: 0; pointer-events: none; transition: opacity .35s; }
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO — split screen
   ============================================================ */
.hero-split { position: relative; min-height: 100svh; display: flex; isolation: isolate; }
.hero-half {
  position: relative; flex: 1 1 50%; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 5rem);
  transition: flex-grow .6s var(--ease);
}
.hero-half--india { background:
    radial-gradient(120% 90% at 30% 115%, rgba(242, 115, 78, .4), transparent 55%),
    radial-gradient(80% 60% at 70% 0%, rgba(90, 26, 43, .55), transparent 60%),
    linear-gradient(160deg, #2e0e08, var(--in-dark) 70%);
  color: #fbe9d4;
}
.hero-half--japan { background:
    radial-gradient(120% 90% at 70% 0%, var(--jp-sakura), transparent 55%),
    linear-gradient(200deg, #ffffff, #fdeef0 60%, #f7e2e6);
  color: var(--jp-ink);
}
/* Desktop: hovered helft groeit */
@media (hover: hover) and (min-width: 901px) {
  .hero-split:hover .hero-half { flex-grow: .82; }
  .hero-split:hover .hero-half:hover { flex-grow: 1.36; }
}
.hero-half-inner { position: relative; z-index: 3; max-width: 30ch; }
.hero-half--japan .hero-half-inner { margin-left: auto; text-align: right; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: .78rem; opacity: .92; }
.hero-kicker svg { width: 1.25em; height: 1.25em; flex: none; }
.hero-half .hero-title { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem); margin: .5rem 0 .6rem; }
.hero-half--india .hero-title { color: #fff; }
.hero-half .hero-sub { font-size: 1.02rem; opacity: .88; margin-bottom: 1.4rem; }
.hero-half--india .btn { box-shadow: 0 10px 30px -12px rgba(242, 115, 78, .65); }

/* Sfeer-laag: embers (India) & petals (Japan) */
.embers, .petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.ember { position: absolute; bottom: -10px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #ffc287, #ee5a2b); filter: blur(.3px);
  opacity: 0; animation: rise var(--dur, 7s) linear var(--delay, 0s) infinite; }
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  15% { opacity: .9; }
  100% { transform: translateY(-78vh) translateX(var(--drift, 20px)) scale(1.1); opacity: 0; }
}
.petal { position: absolute; top: -8%; width: 14px; height: 14px;
  background: radial-gradient(120% 120% at 30% 30%, #ffffff, var(--jp-sakura) 55%, var(--jp-rose));
  border-radius: 14px 1px 14px 1px; opacity: .85;
  animation: fall var(--dur, 9s) linear var(--delay, 0s) infinite; }
@keyframes fall {
  0% { transform: translateY(-10%) translateX(0) rotate(0); opacity: 0; }
  12% { opacity: .9; }
  100% { transform: translateY(112svh) translateX(var(--drift, 40px)) rotate(420deg); opacity: .3; }
}

/* Centrale merk-overlay */
.hero-center {
  position: absolute; inset: 0; z-index: 4; margin: auto;
  width: max-content; height: max-content; max-width: 90vw;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  pointer-events: none;
}
.hero-center > * { pointer-events: auto; position: relative; z-index: 1; }
/* Zachte donkere scrim achter het merk — houdt de witte tekst leesbaar,
   ook waar hij over de lichte Japan-helft valt */
.hero-center::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 48%; transform: translate(-50%, -50%);
  width: 175%; height: 190%; min-width: 560px; min-height: 400px;
  background: radial-gradient(ellipse at center, rgba(8, 6, 4, .55) 0%, rgba(8, 6, 4, .3) 42%, rgba(8, 6, 4, .12) 60%, rgba(8, 6, 4, 0) 78%);
  filter: blur(14px); pointer-events: none;
}
.hero-emblem { width: clamp(58px, 8vw, 84px); height: clamp(58px, 8vw, 84px); margin-bottom: .4rem; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .35)); }
.hero-brand {
  font-size: clamp(3.2rem, 2rem + 7vw, 7rem); line-height: .9; letter-spacing: .06em;
  color: #fff; text-shadow: 0 6px 40px rgba(0, 0, 0, .4); font-weight: 600;
}
.hero-baseline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, .9rem + 1.2vw, 1.9rem); color: var(--gold); margin-top: .2rem; text-shadow: 0 2px 18px rgba(0, 0, 0, .5); }
.hero-desc { color: rgba(255, 255, 255, .92); font-weight: 500; margin-top: .7rem; letter-spacing: .02em; text-shadow: 0 2px 16px rgba(0, 0, 0, .55); }
.hero-combine { display: inline-block; margin-top: 1.1rem; color: #fff; font-weight: 600; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; text-shadow: 0 2px 14px rgba(0, 0, 0, .6); }
.hero-combine:hover { color: var(--gold); }
.hero-seam { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; z-index: 4; background: linear-gradient(var(--gold), transparent); opacity: .5; transform: translateX(-.5px); }

.scroll-cue { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 5; color: #fff; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem; opacity: .85; filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .6)); }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid currentColor; border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; border-radius: 2px; background: currentColor; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 100% { opacity: 0; top: 15px; } }

/* ============================================================
   WORLD THEMING (scoped accent per wereld)
   ============================================================ */
.world-india { --accent: var(--in-terra); --accent-2: var(--in-saffron); --soft-bg: var(--in-cream); }
.world-japan { --accent: var(--jp-accent); --accent-2: var(--jp-matcha); --soft-bg: #fbeef0; }
.world-emeli { --accent: var(--vermilion); --accent-2: var(--gold); --soft-bg: #FBF0E2; }

/* ---------- Band: één bestelling, twee werelden ---------- */
.duo-band { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.duo-band::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(60% 120% at 0% 100%, rgba(193, 58, 32, .5), transparent 60%),
    radial-gradient(60% 120% at 100% 0%, rgba(243, 198, 206, .35), transparent 60%); }
.duo-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.duo-band h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem); color: #fff; }
.duo-band p { color: rgba(247, 242, 233, .8); margin-top: .7rem; max-width: 50ch; }

/* ============================================================
   SIGNATURE CARDS
   ============================================================ */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.sig-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.sig-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sig-card .ph { aspect-ratio: 4 / 3; }
.sig-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.sig-tag { align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.sig-tag svg { width: 1.2em; height: 1.2em; flex: none; }
.sig-tag.india { background: var(--in-cream); color: var(--in-terra); }
.sig-tag.japan { background: #fbeef0; color: var(--jp-rose); }
.sig-tag.chef { background: #fbf3df; color: var(--gold-deep); }
.sig-card h3 { font-size: 1.5rem; }
.sig-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.sig-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }

/* ============================================================
   PHOTO PLACEHOLDERS (vervang door <img> — zie README)
   ============================================================ */
.ph { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--paper-2); color: rgba(20, 17, 13, .45); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.ph--india { background: linear-gradient(150deg, #2e0e08, var(--in-dark)); color: rgba(255, 206, 186, .6); }
.ph--india::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 40% 110%, rgba(242, 115, 78, .45), transparent 60%); }
.ph--japan { background: linear-gradient(200deg, #fff, var(--jp-sakura)); color: rgba(28, 28, 26, .42); }
.ph--wood { background: linear-gradient(160deg, #ede0c8, var(--jp-wood)); color: rgba(28, 28, 26, .4); }
.ph .ph-ic { width: 40px; height: 40px; opacity: .7; position: relative; z-index: 2; }
.ph .ph-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .7rem .9rem; font-size: .76rem; font-weight: 600; letter-spacing: .02em; background: linear-gradient(transparent, rgba(0, 0, 0, .35)); color: #fff; }
.ph--japan .ph-cap, .ph--wood .ph-cap { background: linear-gradient(transparent, rgba(0, 0, 0, .25)); }

/* ============================================================
   STORY / OVER ONS
   ============================================================ */
.story-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.story-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 90px); gap: 14px; }
.story-media .ph { border-radius: var(--radius-sm); }
.story-media .ph:nth-child(1) { grid-row: span 2; }
.story-media .ph:nth-child(2) { grid-row: span 1; }
.story-media .ph:nth-child(3) { grid-row: span 2; }
.story-media .ph:nth-child(4) { grid-row: span 1; }
.prose p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.06rem; }
.prose p.lead { color: var(--ink); font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); font-family: var(--font-display); font-style: italic; }
.bg-paper-2 { background: var(--paper-2); }
.split-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem); line-height: 1.25; max-width: 22ch; }

/* ============================================================
   MENU (switch + tabs + dish cards)
   ============================================================ */
.menu-switch { display: inline-flex; padding: 5px; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); }
.menu-switch button { padding: .7rem 1.4rem; border-radius: 999px; font-weight: 700; letter-spacing: .02em; color: var(--ink-soft); transition: color .25s, background .25s; display: inline-flex; align-items: center; gap: .5rem; }
.menu-switch button[aria-selected="true"] { color: #fff; }
.menu-switch button[data-world="india"][aria-selected="true"] { background: var(--in-terra); }
.menu-switch button[data-world="japan"][aria-selected="true"] { background: var(--jp-ink); }
.menu-switch button[data-world="all"][aria-selected="true"] { background: var(--vermilion); }
.menu-switch button svg { width: 1.1em; height: 1.1em; flex: none; }
/* Gekleurde iconen wit maken op een gekleurde (geselecteerde) knop */
.menu-switch button[data-world="india"][aria-selected="true"] svg path,
.menu-switch button[data-world="japan"][aria-selected="true"] svg path,
.menu-switch button[data-world="japan"][aria-selected="true"] svg circle { fill: #fff; }
.menu-switch button[data-world="all"][aria-selected="true"] svg path:first-of-type,
.menu-switch button[data-world="emeli"][aria-selected="true"] svg path:first-of-type { fill: #fff; }
.menu-switch button[data-world="all"][aria-selected="true"] svg path:last-of-type,
.menu-switch button[data-world="emeli"][aria-selected="true"] svg path:last-of-type { stroke: #14110D; }
.menu-switch button[data-world="emeli"][aria-selected="true"] { background: var(--vermilion); }
@media (max-width: 700px) {
  .menu-switch { flex-wrap: wrap; justify-content: center; border-radius: 24px; }
}

.menu-tabs { position: sticky; top: 70px; z-index: 40; display: flex; gap: .4rem; overflow-x: auto; padding: .8rem clamp(.6rem, 2vw, 1rem); margin-bottom: 1.2rem; border-radius: 0 0 14px 14px; background: rgba(246, 240, 228, .9); backdrop-filter: blur(10px) saturate(1.05); box-shadow: 0 6px 18px -12px rgba(20, 17, 13, .4), inset 0 -1px 0 var(--line); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button { flex: none; padding: .5rem 1rem; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); border: 1px solid var(--line); white-space: nowrap; transition: background .2s, color .2s, border-color .2s; }
.menu-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-tabs button svg { width: 1em; height: 1em; vertical-align: -.13em; margin-right: .15rem; }

.menu-stage { transition: background .4s; }

/* Wereld-blok: maakt India en Japan onmiskenbaar verschillend */
.world-band { border-radius: clamp(16px, 2.5vw, 26px); padding: clamp(1.4rem, 3.5vw, 2.8rem); margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); border: 1px solid transparent; }
.world-band.world-india { background: linear-gradient(165deg, #fff4ec, var(--in-cream)); border-color: rgba(193, 58, 32, .18); }
.world-band.world-japan { background: linear-gradient(165deg, #ffffff, #fbedf4); border-color: rgba(194, 92, 117, .22); }
.world-band.world-emeli { background: linear-gradient(165deg, #fffcf5, #FAF1E0); border-color: rgba(218, 58, 28, .16); }
.world-band-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: clamp(1.2rem, 2.5vw, 1.9rem); padding-bottom: 1.1rem; border-bottom: 2px solid var(--accent); }
.world-band-head .wbh-icon { font-size: clamp(2.1rem, 1.4rem + 1.8vw, 3rem); line-height: 1; flex: none; color: var(--accent); }
.world-band-head .wbh-icon svg { width: 1em; height: 1em; display: block; }
.wbh-eyebrow { display: block; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--accent); }
.world-band-head h2 { font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.9rem); line-height: 1; margin: .15rem 0; color: var(--ink); }
.world-band-head p { color: var(--ink-soft); font-family: var(--font-display); font-style: italic; font-size: 1.06rem; }
.world-band .dish { border-left: 3px solid var(--accent); }
.world-band .dish:hover { border-left-color: var(--accent); }

/* Achtergrond van de menuzone kleurt mee met de gekozen wereld
   — koel/zen voor Japan (geen warme crème), warm voor India, neutraal bij Alles */
.section[data-world-bg] { transition: background .45s var(--ease); }
.section[data-world-bg="india"] { background: #f8f3ea; }
.section[data-world-bg="japan"] { background: #eef0f2; }
.section[data-world-bg="all"] { background: #f3f3f1; }

.menu-group { margin-bottom: clamp(2rem, 4vw, 3.2rem); scroll-margin-top: 130px; }
.menu-group:last-child { margin-bottom: 0; }
.group-title { font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.85rem); display: flex; align-items: center; gap: .6rem; }
.group-title::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.group-rule { height: 2px; background: linear-gradient(90deg, var(--accent), transparent 70%); opacity: .5; margin: .5rem 0 1.3rem; border-radius: 2px; }
.group-note { color: var(--ink-soft); font-style: italic; font-size: .94rem; max-width: 68ch; margin: -.6rem 0 1.3rem; }
.dish-variants-list { font-weight: 600; font-size: .92rem; color: var(--ink); margin-top: .45rem; }
.allergen-note { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.4rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.75; margin-top: 2.2rem; }
.allergen-note strong { color: var(--ink); }

.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.dish { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; transition: border-color .25s, box-shadow .25s, transform .25s; }
.dish:hover { box-shadow: var(--shadow); border-color: transparent; }
.dish-main { flex: 1; min-width: 0; }
/* Gerecht-illustratie (vlakke kleur) naast elk gerecht */
.dish-ic {
  flex: none; width: 50px; height: 50px; border-radius: 14px;
  background: var(--soft-bg, var(--paper-2));
  box-shadow: inset 0 0 0 1px rgba(20, 17, 13, .06);
  display: grid; place-items: center;
}
.dish-ic svg { width: 38px; height: 38px; display: block; }
@media (max-width: 560px) {
  .dish-ic { width: 42px; height: 42px; border-radius: 12px; }
  .dish-ic svg { width: 32px; height: 32px; }
}
.dish-head { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; }
.dish-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; }
.dish-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; white-space: nowrap; color: var(--accent); }
.dish-desc { color: var(--ink-soft); font-size: .94rem; margin-top: .25rem; }
.dish-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.tag { display: inline-flex; align-items: center; gap: .32rem; font-size: .72rem; font-weight: 600; padding: .22rem .55rem; border-radius: 999px; background: var(--soft-bg, var(--paper-2)); color: var(--ink-soft); }
.tag svg { width: 1.05em; height: 1.05em; flex: none; }
.tag.sig { background: #fbf3df; color: var(--gold-deep); }

.dish-controls { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.dish-opt { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--ink-soft); }
.dish-opt select { border: 1px solid var(--line); border-radius: 8px; padding: .35rem .5rem; background: #fff; font-size: .85rem; }
.dish-add { margin-left: auto; display: inline-flex; align-items: center; gap: .45rem; background: var(--accent); color: #fff; padding: .55rem 1rem; border-radius: 999px; font-weight: 700; font-size: .9rem; transition: transform .2s, filter .2s; }
.dish-add svg { width: 1.05em; height: 1.05em; }
.dish-add:hover { transform: translateY(-2px); filter: brightness(1.06); }
.dish-add.added { background: var(--jp-matcha); color: #1d2a16; }

/* ============================================================
   CART — FAB, mobiele balk, drawer
   ============================================================ */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  background: var(--ink); color: #fff; box-shadow: 0 -10px 30px -16px rgba(0, 0, 0, .6);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.cart-bar.show { transform: none; }
.cart-bar .cb-info { display: flex; flex-direction: column; line-height: 1.2; }
.cart-bar .cb-info b { font-size: 1.15rem; font-family: var(--font-display); }
.cart-bar .cb-info span { font-size: .8rem; opacity: .7; }
.cart-bar .btn { background: var(--vermilion); color: #FFF6EE; }

.cart-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(10, 8, 5, .55); opacity: 0; pointer-events: none; transition: opacity .35s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 111; width: min(440px, 100vw);
  background: var(--paper); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: none; }
.cart-header { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-header h2 { font-size: 1.6rem; margin-right: auto; }
.cart-close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); flex: none; }
.cart-close svg { width: 20px; height: 20px; }

/* Mandje leegmaken — eerste tik vraagt bevestiging, tweede tik wist */
.cart-clear {
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  padding: .5rem .75rem; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  transition: color .2s, background .2s, border-color .2s;
}
.cart-clear svg { width: 1.1em; height: 1.1em; }
.cart-clear:hover { color: var(--vermilion-deep); border-color: rgba(218, 58, 28, .35); background: rgba(218, 58, 28, .06); }
.cart-clear.confirm { color: #fff; background: var(--vermilion); border-color: var(--vermilion); }
.cart-clear[hidden] { display: none; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }

.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty .ce-ic { width: 56px; height: 56px; margin: 0 auto 1rem; opacity: .4; }

.cart-section-title { display: flex; align-items: center; gap: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; margin: 1.2rem 0 .6rem; }
.cart-section-title svg { width: 1.2em; height: 1.2em; flex: none; }
.cart-section-title:first-child { margin-top: 0; }
.cart-section-title.india { color: var(--in-terra); }
.cart-section-title.japan { color: var(--jp-rose); }
.cart-section-title.emeli { color: var(--vermilion); }

.cart-line { display: grid; grid-template-columns: 1fr auto; gap: .3rem .8rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.cart-line .cl-name { font-weight: 600; }
.cart-line .cl-opt { font-size: .82rem; color: var(--ink-soft); }
.cart-line .cl-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; text-align: right; }
.cart-line .cl-qty { display: inline-flex; align-items: center; gap: .2rem; border: 1px solid var(--line); border-radius: 999px; padding: .15rem; background: #fff; }
.cart-line .cl-qty button { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--ink); transition: background .2s; }
.cart-line .cl-qty button:hover { background: var(--paper-2); }
.cart-line .cl-qty span { min-width: 22px; text-align: center; font-weight: 700; }

.checkout { border-top: 1px solid var(--line); padding: 1.2rem 1.4rem; background: #fff; }
.checkout-totals { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.checkout-totals .ct-label { color: var(--ink-soft); }
.checkout-totals .ct-sum { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.field { margin-bottom: .8rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .25rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: .7rem .8rem; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--vermilion); box-shadow: 0 0 0 3px rgba(218, 58, 28, .16); }
.field textarea { resize: vertical; min-height: 56px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field.invalid input, .field.invalid select { border-color: #d3492f; box-shadow: 0 0 0 3px rgba(211, 73, 47, .15); }
.field .err { display: none; color: #c33; font-size: .76rem; margin-top: .25rem; }
.field.invalid .err { display: block; }
.checkout-note { font-size: .78rem; color: var(--ink-soft); text-align: center; margin-top: .7rem; }
.checkout-note b { color: var(--in-terra); }

/* ============================================================
   PRAKTISCH / INFO
   ============================================================ */
.info-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.info-card { background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr.closed td { color: var(--in-terra); }
.info-contact { list-style: none; margin-top: 1.4rem; display: grid; gap: .8rem; }
.info-contact li { display: flex; align-items: center; gap: .7rem; }
.info-contact svg { width: 20px; height: 20px; color: var(--in-terra); flex: none; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; height: 100%; }
.map-wrap .ph { height: 100%; min-height: 320px; }

/* ============================================================
   CTA BAND + FOOTER
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(20px, 3vw, 32px); padding: clamp(2.5rem, 5vw, 4.5rem); text-align: center; color: #fff;
  background: linear-gradient(125deg, var(--in-wine), var(--in-dark) 55%, #1a1a18); }
.cta-band::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(50% 80% at 12% 110%, rgba(242, 115, 78, .45), transparent 60%),
    radial-gradient(50% 90% at 88% -10%, rgba(243, 198, 206, .4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 52ch; margin: 1rem auto 1.8rem; }
.cta-band .hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.site-footer { background: var(--ink); color: rgba(247, 242, 233, .8); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.2fr; gap: 2rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; max-width: 36ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--in-terra); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--in-saffron); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; opacity: .75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-split { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .duo-inner { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .nav-links, .site-header .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* Hero stacked + merk-band bovenaan */
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-half { flex: none; min-height: 56svh; justify-content: flex-end; }
  .hero-half--japan .hero-half-inner { margin-left: 0; text-align: left; }
  .hero-half-inner { max-width: none; }
  .hero-seam, .scroll-cue { display: none; }
  .hero-center {
    position: static; inset: auto; width: 100%; max-width: none; order: -1;
    background: linear-gradient(135deg, #2e0e08, var(--ink)); padding: 6.5rem 1.4rem 2.4rem;
  }
  .hero-center::before { display: none; }
  .hero-brand { text-shadow: none; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr; }
  .cart-bar { display: flex; }
  .duo-band .btn { width: 100%; justify-content: center; }
  .to-top { display: none; }
  .menu-tabs { top: 64px; }
}

/* Tablet+ : geen mobiele balk nodig (drawer via header-knop) */
@media (min-width: 641px) {
  .cart-bar { display: none !important; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .ember, .petal { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
