/* ============================================================
   OUTRAM YA HUA BAK KUT TEH — landing page
   Red & white brand theme
   ============================================================ */
:root{
  /* palette */
  --ink:        #1f1714;   /* primary text on light */
  --muted:      #6b5b52;   /* secondary text on light */
  --paper:      #fdf8f1;   /* page base, warm white */
  --paper-2:    #f6ece0;   /* alt section background */
  --card:       #ffffff;
  --line:       rgba(31,23,20,.12);
  --line-2:     rgba(31,23,20,.24);

  --red:        #c8102e;   /* brand red */
  --red-deep:   #8c0a1f;   /* deep red — hero/footer/late */
  --red-bright: #e2342a;   /* hover / glow accent */
  --red-soft:   rgba(200,16,46,.08);

  --cream:      #fdf3ec;   /* primary text on red */
  --bone:       #f7ddd5;   /* warm light accent on red */
  --on-red-mut: rgba(253,243,236,.72);

  /* type */
  --display: "Fraunces", Georgia, serif;
  --sans:    "Space Grotesk", system-ui, sans-serif;
  --cn:      "Noto Serif SC", "Fraunces", serif;

  /* layout */
  --pad: clamp(1.25rem, 5vw, 7rem);
  --maxw: 1480px;
  --ease: cubic-bezier(.62,.05,.01,.99);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --r: 14px;
}

/* ============================================================
   Reset
   ============================================================ */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; }
html.lenis,html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-stopped{ overflow:hidden; }

body{
  font-family:var(--sans);
  background:var(--paper);
  color:var(--ink);
  font-size:clamp(15px,1.05vw,17px);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  cursor:none;
}
@media (hover:none){ body{ cursor:auto; } }

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
::selection{ background:var(--red); color:var(--cream); }

/* Visible keyboard focus (the page hides the mouse cursor, so this matters) */
:focus-visible{ outline:2px solid var(--red); outline-offset:3px; border-radius:4px; }

/* Screen-reader-only utility */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Skip link */
.skip-link{
  position:fixed; top:-120px; left:1rem; z-index:9999;
  background:var(--red); color:var(--cream); font-weight:600;
  padding:.75rem 1.2rem; border-radius:10px; transition:top .3s var(--ease-out);
}
.skip-link:focus{ top:1rem; }

body.is-loading{ overflow:hidden; height:100vh; }

/* ============================================================
   Texture overlays
   ============================================================ */
.grain{
  position:fixed; inset:0; z-index:9000; pointer-events:none;
  opacity:.04; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette{
  position:fixed; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(120% 90% at 50% 35%, transparent 55%, rgba(31,23,20,.06) 100%);
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor{ position:fixed; top:0; left:0; z-index:9999; pointer-events:none; mix-blend-mode:difference; }
.cursor__dot{
  position:fixed; width:7px; height:7px; border-radius:50%; background:#fff;
  transform:translate(-50%,-50%);
}
.cursor__ring{
  position:fixed; width:38px; height:38px; border:1px solid rgba(255,255,255,.7); border-radius:50%;
  transform:translate(-50%,-50%); transition:width .35s var(--ease-out),height .35s var(--ease-out),background .35s;
}
.cursor__label{
  position:fixed; transform:translate(-50%,-50%); font-family:var(--sans); font-size:11px;
  letter-spacing:.08em; text-transform:uppercase; color:#111; font-weight:600;
  opacity:0; white-space:nowrap;
}
body.cursor-hover .cursor__ring{ width:64px; height:64px; background:#fff; }
body.cursor-hover .cursor__label{ opacity:1; }
body.cursor-hover .cursor__dot{ opacity:0; }
@media (hover:none){ .cursor{ display:none; } }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-progress{ position:fixed; top:0; left:0; right:0; height:2px; z-index:8000; background:rgba(31,23,20,.08); }
.scroll-progress span{ display:block; height:100%; width:0%;
  background:linear-gradient(90deg,var(--red),var(--red-bright)); transform-origin:left; }

/* ============================================================
   Preloader
   ============================================================ */
.preloader{
  position:fixed; inset:0; z-index:9500; background:var(--red-deep); color:var(--cream);
  display:grid; place-items:center;
  transition:transform 1s var(--ease-out), opacity .6s ease;
}
.preloader.is-hidden{ transform:translateY(-100%); opacity:0; pointer-events:none; }
.preloader__inner{ text-align:center; width:min(80vw,420px); }
.preloader__bowl{ display:flex; justify-content:center; margin-bottom:1.5rem; }
.preloader__steam{ width:120px; height:80px; color:var(--bone); }
.preloader__steam path{
  fill:none; stroke:currentColor; stroke-width:3; stroke-linecap:round;
  stroke-dasharray:90; stroke-dashoffset:90;
  animation:steamline 2.4s var(--ease) infinite;
}
.preloader__steam path:nth-child(2){ animation-delay:.4s; }
.preloader__steam path:nth-child(3){ animation-delay:.8s; }
@keyframes steamline{ 0%{stroke-dashoffset:90;opacity:0} 30%{opacity:.9} 70%{opacity:.6} 100%{stroke-dashoffset:-90;opacity:0} }
.preloader__brand{ display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.6rem; }
.preloader__cn{ font-family:var(--cn); font-weight:900; font-size:clamp(2rem,7vw,3rem); color:var(--cream); letter-spacing:.1em; }
.preloader__en{ font-family:var(--sans); font-size:.78rem; letter-spacing:.4em; text-transform:uppercase; color:var(--on-red-mut); }
.preloader__bar{ height:2px; width:100%; background:rgba(255,255,255,.22); overflow:hidden; border-radius:2px; }
.preloader__bar span{ display:block; height:100%; width:0%; background:var(--cream); }
.preloader__meta{ display:flex; justify-content:space-between; margin-top:.9rem; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--on-red-mut); }

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:7000;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem var(--pad);
  transition:transform .5s var(--ease-out), background .4s, padding .4s;
}
.nav.is-hidden{ transform:translateY(-110%); }
.nav.is-solid{ background:rgba(253,248,241,.85); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  padding-top:.7rem; padding-bottom:.7rem; box-shadow:0 1px 0 var(--line); }
.nav__brand{ display:flex; align-items:center; gap:.6rem; }
/* default (over the red hero) = light text; solid (over white) = dark text */
.nav__brand-cn{ font-family:var(--cn); font-weight:900; font-size:1.5rem; color:var(--cream); transition:color .4s; }
.nav__brand-en{ display:flex; flex-direction:column; font-weight:600; font-size:.92rem; letter-spacing:.02em; line-height:1.05; color:var(--cream); transition:color .4s; }
.nav__brand-en small{ font-size:.58rem; letter-spacing:.18em; text-transform:uppercase; color:var(--on-red-mut); font-weight:400; }
.nav__links{ display:flex; gap:2.2rem; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; }
.nav__links a{ position:relative; padding:.3rem 0; color:var(--cream); opacity:.9; transition:opacity .3s,color .4s; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:currentColor; transition:width .4s var(--ease-out); }
.nav__links a:hover{ opacity:1; } .nav__links a:hover::after{ width:100%; }
.nav__cta{
  display:inline-flex; align-items:center; padding:.7rem 1.4rem; border-radius:100px;
  background:var(--cream); color:var(--red); font-weight:600; font-size:.82rem;
  letter-spacing:.04em; transition:background .3s, color .3s, transform .3s;
}
.nav__cta:hover{ background:#fff; }
.nav__burger{ display:none; flex-direction:column; gap:6px; width:34px; height:34px; align-items:center; justify-content:center; }
.nav__burger span{ display:block; width:24px; height:2px; background:var(--cream); transition:transform .4s var(--ease), opacity .3s, background .4s; }
.nav.is-open .nav__burger span:nth-child(1){ transform:translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ transform:translateY(-4px) rotate(-45deg); }
/* solid (scrolled, white background) overrides */
.nav.is-solid .nav__brand-cn{ color:var(--red); }
.nav.is-solid .nav__brand-en{ color:var(--ink); }
.nav.is-solid .nav__brand-en small{ color:var(--muted); }
.nav.is-solid .nav__links a{ color:var(--ink); }
.nav.is-solid .nav__cta{ background:var(--red); color:var(--cream); }
.nav.is-solid .nav__cta:hover{ background:var(--red-bright); }
.nav.is-solid .nav__burger span{ background:var(--ink); }

/* ============================================================
   Mobile menu
   ============================================================ */
.mobile-menu{
  position:fixed; inset:0; z-index:6500; background:var(--red-deep); color:var(--cream);
  display:flex; flex-direction:column; justify-content:center; gap:2rem; padding:var(--pad);
  clip-path:inset(0 0 100% 0); transition:clip-path .7s var(--ease);
  pointer-events:none;
}
.mobile-menu.is-open{ clip-path:inset(0 0 0 0); pointer-events:auto; }
.mobile-menu__links{ display:flex; flex-direction:column; gap:.2rem; }
.mobile-menu__links a{ font-family:var(--display); font-size:clamp(2rem,12vw,3.4rem); font-weight:400; display:flex; align-items:baseline; gap:1rem; line-height:1.1; color:var(--cream); }
.mobile-menu__links a span{ font-family:var(--sans); font-size:.8rem; color:var(--bone); letter-spacing:.1em; }
.mobile-menu__cta{ align-self:flex-start; padding:.9rem 1.8rem; border-radius:100px; background:var(--cream); color:var(--red); font-weight:600; }
.mobile-menu__contact{ display:flex; flex-direction:column; gap:.3rem; color:var(--on-red-mut); font-size:.9rem; }

/* ============================================================
   Shared section bits
   ============================================================ */
section{ position:relative; }
.section-head{ max-width:var(--maxw); margin:0 auto; padding:clamp(4rem,10vw,9rem) var(--pad) clamp(2rem,5vw,4rem); }
.section-head--center{ text-align:center; }
.section-head--center .section-sub{ margin-left:auto; margin-right:auto; }
.section-index{
  display:inline-block; font-size:.74rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--red); margin-bottom:1.4rem;
}
.section-title{
  font-family:var(--display); font-weight:340; font-size:clamp(2.6rem,8vw,7rem);
  line-height:.98; letter-spacing:-.02em; color:var(--ink);
}
.section-title em{ font-style:italic; color:var(--red); font-variation-settings:"SOFT" 60, "WONK" 1; }
.section-sub{ max-width:46ch; margin-top:1.5rem; color:var(--muted); font-size:1.05rem; }

/* generic reveal initial states (JS adds animation) */
[data-reveal]{ opacity:0; transform:translateY(28px); }
.no-anim [data-reveal]{ opacity:1; transform:none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  position:relative; display:inline-flex; align-items:center; gap:.6rem;
  padding:1rem 1.9rem; border-radius:100px; font-weight:600; font-size:.9rem; letter-spacing:.02em;
  overflow:hidden; isolation:isolate; transition:color .4s var(--ease-out), border-color .4s, background .4s;
}
.btn span{ position:relative; z-index:2; }
.btn--primary{ background:var(--red); color:var(--cream); }
.btn--primary::before{ content:""; position:absolute; inset:0; z-index:1; background:var(--red-bright);
  transform:translateY(101%); transition:transform .5s var(--ease-out); }
.btn--primary:hover::before{ transform:translateY(0); }
.btn--ghost{ border:1px solid var(--line-2); color:var(--ink); }
.btn--ghost::before{ content:""; position:absolute; inset:0; z-index:1; background:var(--red);
  transform:translateY(101%); transition:transform .5s var(--ease-out); }
.btn--ghost:hover{ color:var(--cream); border-color:var(--red); }
.btn--ghost:hover::before{ transform:translateY(0); }

/* On the red hero / footer, invert the buttons so they read on red */
.hero .btn--primary,.footer .btn--primary{ background:var(--cream); color:var(--red); }
.hero .btn--primary::before,.footer .btn--primary::before{ background:#fff; }
.hero .btn--ghost,.footer .btn--ghost{ border-color:rgba(255,255,255,.55); color:var(--cream); }
.hero .btn--ghost::before,.footer .btn--ghost::before{ background:var(--cream); }
.hero .btn--ghost:hover,.footer .btn--ghost:hover{ color:var(--red); border-color:var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100vh; min-height:100svh; display:flex; flex-direction:column; justify-content:center;
  padding:0 var(--pad); overflow:hidden; color:var(--cream);
  background:radial-gradient(120% 120% at 50% 8%, var(--red) 0%, var(--red-deep) 70%); }
.hero__canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.hero__glow{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(60% 50% at 50% 62%, rgba(255,170,150,.30), transparent 70%); }
.hero__inner{ position:relative; z-index:3; max-width:var(--maxw); margin:0 auto; width:100%; padding-top:6rem; }
.hero__eyebrow{ font-size:.82rem; letter-spacing:.28em; text-transform:uppercase; color:var(--bone); margin-bottom:1.6rem; overflow:hidden; }
.hero__eyebrow .line{ display:inline-block; }
.hero__title{ font-family:var(--display); font-weight:330; line-height:.86; letter-spacing:-.03em; color:var(--cream); }
.hero__line{ display:block; overflow:hidden; }
.hero__title .hero__line:nth-child(1){ font-size:clamp(3.2rem,13vw,11rem); }
.hero__line--cn{ font-size:clamp(3.6rem,15vw,13rem); line-height:.9; }
.hero__line--cn em{ font-family:var(--cn); font-style:normal; font-weight:900; color:#fff;
  background:linear-gradient(180deg,#ffffff,var(--bone)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.hero__line--sub{ font-size:clamp(1.6rem,5vw,3.4rem); font-style:italic; color:var(--on-red-mut); margin-top:.2rem; }
.hero__lede{ max-width:42ch; margin-top:2rem; font-size:clamp(1rem,1.4vw,1.2rem); color:var(--cream); }
.hero__lede strong{ color:#fff; }
.hero__actions{ display:flex; gap:1rem; margin-top:2.4rem; flex-wrap:wrap; }
.hero__footer{ position:relative; z-index:3; max-width:var(--maxw); margin:0 auto; width:100%;
  display:flex; justify-content:space-between; align-items:flex-end; padding-bottom:2.2rem; padding-top:3rem; gap:2rem; }
.hero__scroll{ display:flex; flex-direction:column; align-items:center; gap:.6rem; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--on-red-mut); }
.hero__scroll-line{ width:1px; height:54px; background:linear-gradient(var(--bone),transparent); position:relative; overflow:hidden; }
.hero__scroll-line::after{ content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:#fff; animation:scrolldrop 2s var(--ease) infinite; }
@keyframes scrolldrop{ 0%{top:-50%} 100%{top:120%} }
.hero__stats{ display:flex; gap:2.4rem; }
.hero__stats li{ display:flex; flex-direction:column; }
.hero__stats b{ font-family:var(--display); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:400; color:#fff; line-height:1; }
.hero__stats span{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--on-red-mut); margin-top:.3rem; }

.hero__spices{ position:absolute; inset:0; z-index:2; pointer-events:none; }
.spice{ position:absolute; color:rgba(255,255,255,.32); opacity:1; }
.spice--anise{ width:90px; top:18%; right:12%; color:rgba(255,235,228,.5); }
.spice--pepper{ width:46px; top:30%; left:8%; }
.spice--garlic{ width:70px; bottom:22%; right:18%; color:rgba(255,255,255,.26); }
.spice--pepper2{ width:34px; bottom:30%; left:16%; color:rgba(255,255,255,.3); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{ border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:1.4rem 0; overflow:hidden; background:var(--paper-2); }
.marquee__track{ display:flex; align-items:center; gap:2.5rem; white-space:nowrap; width:max-content; }
.marquee__track span{ font-family:var(--display); font-style:italic; font-size:clamp(1.4rem,3vw,2.4rem); color:var(--ink); font-weight:340; }
.marquee__track i{ color:var(--red); font-style:normal; font-size:1rem; }

/* ============================================================
   STORY
   ============================================================ */
.story{ background:linear-gradient(180deg,var(--paper),var(--paper-2)); }
.story__grid{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad);
  display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,6vw,6rem); align-items:center; }
.story__lead p{ font-size:clamp(1.05rem,1.4vw,1.25rem); color:var(--ink); margin-bottom:1.4rem; max-width:52ch; }
.story__lead strong{ color:var(--red); }
.story__quote{ margin-top:2.4rem; padding-left:1.5rem; border-left:2px solid var(--red); }
.story__quote span{ display:block; font-family:var(--display); font-style:italic; font-size:clamp(1.4rem,2.6vw,2.1rem); line-height:1.15; color:var(--ink); }
.story__quote cite{ display:block; margin-top:1rem; font-style:normal; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }

.story__figure{ position:relative; }
.story__photo{ position:relative; aspect-ratio:4/5; border-radius:var(--r); overflow:hidden;
  background:radial-gradient(120% 100% at 30% 20%, #ffffff, var(--paper-2)); border:1px solid var(--line);
  display:grid; place-items:center; }
.story__photo-art{ width:60%; color:var(--red); opacity:.5; }
.photo-tag{ position:absolute; left:1rem; bottom:1rem; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink); background:rgba(255,255,255,.7); padding:.4rem .7rem; border-radius:100px;
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.story__badge{ position:absolute; top:-34px; right:-20px; width:110px; height:110px; color:var(--cream);
  background:var(--red); border-radius:50%; display:grid; place-items:center; box-shadow:0 20px 50px rgba(140,10,31,.35); }
.story__badge svg{ width:84px; animation:spin 26s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* Timeline */
.timeline{ max-width:var(--maxw); margin:clamp(4rem,9vw,8rem) auto 0; padding:0 0 clamp(4rem,8vw,7rem); position:relative; }
.timeline__progress{ position:absolute; left:var(--pad); right:var(--pad); top:46px; height:1px; background:var(--line); }
.timeline__progress span{ display:block; height:100%; width:0%; background:var(--red); }
.timeline__track{ display:flex; gap:clamp(1rem,3vw,2.5rem); padding:0 var(--pad); overflow-x:auto; scrollbar-width:none; }
.timeline__track::-webkit-scrollbar{ display:none; }
.timeline__item{ flex:0 0 clamp(240px,26vw,320px); padding-top:80px; position:relative; }
.timeline__item::before{ content:""; position:absolute; top:42px; left:0; width:9px; height:9px; border-radius:50%;
  background:var(--paper); border:2px solid var(--red); }
.timeline__item.is-now::before{ background:var(--red); box-shadow:0 0 0 6px rgba(200,16,46,.16); }
.timeline__year{ font-family:var(--display); font-size:clamp(1.6rem,3vw,2.4rem); color:var(--red); display:block; margin-bottom:.6rem; }
.timeline__item h3{ font-size:1.05rem; margin-bottom:.5rem; font-weight:600; color:var(--ink); }
.timeline__item p{ color:var(--muted); font-size:.95rem; }

/* ============================================================
   BOWL / ANATOMY (sticky)
   ============================================================ */
.bowl{ background:var(--paper-2); }
.bowl__sticky{ max-width:var(--maxw); margin:0 auto; padding:clamp(4rem,9vw,8rem) var(--pad);
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,6vw,6rem); align-items:center; min-height:100vh; min-height:100svh; }
.bowl__visual{ position:sticky; top:0; height:100vh; height:100svh; display:grid; place-items:center; }
.bowl__art{ width:min(80%,460px); color:var(--red); filter:drop-shadow(0 24px 50px rgba(140,10,31,.18)); }
.bowl__rings{ position:absolute; inset:0; display:grid; place-items:center; pointer-events:none; }
.bowl__rings span{ position:absolute; border:1px solid rgba(200,16,46,.22); border-radius:50%;
  width:300px; height:300px; animation:ripple 5s var(--ease-out) infinite; }
.bowl__rings span:nth-child(2){ animation-delay:1.6s; } .bowl__rings span:nth-child(3){ animation-delay:3.2s; }
@keyframes ripple{ 0%{ transform:scale(.6); opacity:.6; } 100%{ transform:scale(1.7); opacity:0; } }
.bowl__steam-label{ position:absolute; top:18%; right:14%; font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted);
  padding:.35rem .7rem; border:1px solid var(--line); border-radius:100px; background:rgba(255,255,255,.5); }
.bowl__content .section-title{ margin-bottom:2.4rem; }
.bowl__list{ display:flex; flex-direction:column; gap:.4rem; }
.bowl__row{ display:flex; gap:1.2rem; padding:1.2rem 0; border-top:1px solid var(--line); opacity:.45; transition:opacity .5s var(--ease); }
.bowl__row:last-child{ border-bottom:1px solid var(--line); }
.bowl__row.is-active{ opacity:1; }
.bowl__num{ font-family:var(--display); color:var(--red); font-size:1.1rem; flex:0 0 auto; }
.bowl__row h3{ font-size:1.25rem; margin-bottom:.3rem; font-weight:600; color:var(--ink); }
.bowl__row.is-active h3{ color:var(--red); }
.bowl__row p{ color:var(--muted); font-size:.98rem; max-width:46ch; }
.bowl__note{ margin-top:2rem; color:var(--ink); font-size:.95rem; }
.bowl__note strong{ color:var(--red); }

/* ============================================================
   MENU
   ============================================================ */
.menu{ background:linear-gradient(180deg,var(--paper-2),var(--paper)); }
.menu__grid{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad);
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.dish{ position:relative; border:1px solid var(--line); border-radius:var(--r); padding:2rem; overflow:hidden;
  background:var(--card); transition:border-color .4s, transform .5s var(--ease-out), box-shadow .4s; }
.dish::after{ content:""; position:absolute; inset:0; background:radial-gradient(80% 60% at 50% 0%, var(--red-soft), transparent 70%);
  opacity:0; transition:opacity .5s; }
.dish:hover{ border-color:rgba(200,16,46,.45); transform:translateY(-6px); box-shadow:0 24px 50px rgba(140,10,31,.1); }
.dish:hover::after{ opacity:1; }
.dish:hover .dish__art svg{ transform:scale(1.08) rotate(-3deg); color:var(--red-bright); }
.dish--feature{ grid-column:span 1; grid-row:span 2; display:flex; flex-direction:column; justify-content:space-between;
  background:linear-gradient(180deg, var(--red-soft), var(--card)); border-color:rgba(200,16,46,.3); }
.dish__art{ height:120px; display:grid; place-items:center; margin-bottom:1.4rem; }
.dish--feature .dish__art{ height:260px; }
.dish__art svg{ width:88px; color:var(--red); transition:transform .6s var(--ease-out), color .4s; }
.dish--feature .dish__art svg{ width:170px; }
.dish__tag{ display:inline-block; font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--cream);
  background:var(--red); padding:.3rem .7rem; border-radius:100px; margin-bottom:1rem; font-weight:600; }
.dish__body h3{ font-family:var(--display); font-weight:400; font-size:1.5rem; line-height:1.1; display:flex; flex-direction:column; color:var(--ink); }
.dish--feature .dish__body h3{ font-size:2.1rem; }
.dish__body h3 small{ font-family:var(--cn); font-size:.95rem; color:var(--muted); margin-top:.25rem; }
.dish__body p{ color:var(--muted); font-size:.95rem; margin:.7rem 0 1.2rem; }
.dish__price{ font-family:var(--sans); font-weight:600; color:var(--red); letter-spacing:.02em; }
.menu__foot{ max-width:var(--maxw); margin:clamp(3rem,6vw,5rem) auto 0; padding:0 var(--pad) clamp(4rem,8vw,7rem);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.menu__foot p{ color:var(--muted); }
.menu__foot a[href*="yahua.com"]{ color:var(--red); border-bottom:1px solid currentColor; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards{ background:var(--paper); padding:clamp(3rem,7vw,6rem) 0; border-top:1px solid var(--line); }
.awards__head{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad) 2.5rem; }
.awards__head h2{ font-family:var(--display); font-weight:330; font-size:clamp(1.8rem,4vw,3.2rem); line-height:1; letter-spacing:-.02em; color:var(--ink); }
.awards__head em{ font-style:italic; color:var(--red); }
.awards__list{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad);
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.awards__list li{ background:var(--paper); padding:2rem 1.5rem; display:flex; flex-direction:column; gap:.5rem; transition:background .4s; }
.awards__list li:hover{ background:#fff; }
.awards__list b{ font-family:var(--display); font-weight:400; font-size:1.3rem; color:var(--red); }
.awards__list span{ color:var(--muted); font-size:.82rem; letter-spacing:.04em; }

/* ============================================================
   OPEN LATE  (red band)
   ============================================================ */
.late{ position:relative; overflow:hidden; color:var(--cream); }
.late__bg{ position:absolute; inset:0; background:
  radial-gradient(80% 80% at 80% 20%, rgba(255,150,130,.22), transparent 60%),
  linear-gradient(180deg, var(--red), var(--red-deep)); }
.late__inner{ position:relative; max-width:var(--maxw); margin:0 auto; padding:clamp(5rem,11vw,10rem) var(--pad);
  display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(2rem,6vw,6rem); align-items:center; }
.late .section-index{ color:var(--bone); }
.late .section-title{ color:var(--cream); }
.late .section-title em{ color:#fff; }
.late__clock{ display:grid; place-items:center; }
.late__clock svg{ width:min(70%,300px); color:var(--cream); filter:drop-shadow(0 0 40px rgba(255,200,190,.35)); }
.late__clock .clock-min{ transform-origin:100px 100px; animation:spin 8s linear infinite; }
.late__clock .clock-hour{ transform-origin:100px 100px; animation:spin 96s linear infinite; }
.late__copy p{ color:var(--cream); font-size:clamp(1.05rem,1.4vw,1.25rem); max-width:48ch; margin-top:1.4rem; }
.late__hours{ color:var(--on-red-mut) !important; }
.late__hours span{ color:#fff; font-weight:600; }

/* ============================================================
   VISIT / outlets
   ============================================================ */
.visit{ background:linear-gradient(180deg,var(--paper),var(--paper-2)); }
.visit__grid{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad) clamp(4rem,8vw,7rem);
  display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
.outlet{ border:1px solid var(--line); border-radius:var(--r); padding:clamp(1.6rem,3vw,2.6rem);
  background:var(--card); transition:border-color .4s, transform .5s var(--ease-out), box-shadow .4s; }
.outlet:hover{ border-color:rgba(200,16,46,.4); transform:translateY(-4px); box-shadow:0 24px 50px rgba(140,10,31,.1); }
.outlet__top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1.6rem; }
.outlet__top h3{ font-family:var(--display); font-weight:400; font-size:clamp(1.6rem,3vw,2.3rem); line-height:1.05; display:flex; flex-direction:column; color:var(--ink); }
.outlet__top h3 small{ font-family:var(--sans); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--red); margin-top:.4rem; font-weight:500; }
.outlet__pin{ width:42px; height:42px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; color:var(--red); flex:0 0 auto; }
.outlet__pin svg{ width:20px; }
.outlet__addr{ font-style:normal; color:var(--ink); line-height:1.7; margin-bottom:1.6rem; font-size:1.05rem; }
.outlet__meta{ display:flex; gap:2.5rem; margin-bottom:1.8rem; }
.outlet__meta dt{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:.3rem; }
.outlet__meta dd{ color:var(--ink); font-size:.95rem; }
.outlet__meta a:hover{ color:var(--red); }
.outlet__map{ width:100%; justify-content:center; }

/* ============================================================
   FOOTER  (red)
   ============================================================ */
.footer{ background:var(--red-deep); color:var(--cream); }
.footer__cta{ max-width:var(--maxw); margin:0 auto; padding:clamp(5rem,12vw,11rem) var(--pad); text-align:center; }
.footer__kicker{ font-size:.82rem; letter-spacing:.28em; text-transform:uppercase; color:var(--bone); margin-bottom:1.4rem; }
.footer__big{ font-family:var(--display); font-weight:330; font-size:clamp(3rem,12vw,10rem); line-height:.9; letter-spacing:-.03em; color:var(--cream); }
.footer__big .word{ display:inline-block; }
.footer__actions{ display:flex; gap:1rem; justify-content:center; margin-top:2.6rem; flex-wrap:wrap; }
.footer__grid{ max-width:var(--maxw); margin:0 auto; padding:0 var(--pad) 3rem;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2rem; border-top:1px solid rgba(255,255,255,.18); padding-top:3rem; }
.footer__col h4{ font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:var(--on-red-mut); margin-bottom:1.2rem; }
.footer__col a{ display:block; color:var(--bone); margin-bottom:.6rem; transition:color .3s; font-size:.95rem; }
.footer__col a:hover{ color:#fff; }
.footer__cn{ font-family:var(--cn); font-weight:900; font-size:1.8rem; color:var(--cream); }
.footer__col--brand p{ color:var(--on-red-mut); margin-top:.6rem; font-size:.92rem; }
.footer__since{ max-width:34ch; }
.footer__base{ max-width:var(--maxw); margin:0 auto; padding:1.6rem var(--pad); border-top:1px solid rgba(255,255,255,.15);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; color:var(--on-red-mut); font-size:.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .story__grid{ grid-template-columns:1fr; }
  .story__figure{ max-width:480px; }
  .bowl__sticky{ grid-template-columns:1fr; }
  .bowl__visual{ position:relative; height:auto; top:auto; padding:2rem 0; }
  .bowl__art{ width:min(60%,320px); }
  .bowl__rings span{ width:220px; height:220px; }
  .late__inner{ grid-template-columns:1fr; }
  .late__clock{ order:-1; }
  .late__clock svg{ width:200px; }
  .menu__grid{ grid-template-columns:repeat(2,1fr); }
  .dish--feature{ grid-column:span 2; grid-row:span 1; flex-direction:row; align-items:center; gap:2rem; }
  .dish--feature .dish__art{ height:auto; flex:0 0 40%; }
  .awards__list{ grid-template-columns:repeat(2,1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:2.5rem 2rem; }
}
@media (max-width:680px){
  body{ cursor:auto; }
  .visit__grid{ grid-template-columns:1fr; }
  .menu__grid{ grid-template-columns:1fr; }
  .dish--feature{ grid-column:span 1; flex-direction:column; align-items:stretch; }
  .dish--feature .dish__art{ height:180px; }
  .awards__list{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr; }
  .hero__footer{ flex-direction:column; align-items:flex-start; }
  .hero__stats{ gap:1.6rem; }
  .hero__scroll{ display:none; }
  .timeline__progress{ display:none; }
  .menu__foot{ flex-direction:column; align-items:flex-start; }
  .section-head--center .section-sub{ text-align:left; }
}

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