/* ═══════════════ AIYARA THAI — dark luxury ═══════════════ */
:root {
  --bg: #0b0a08;
  --bg-2: #12100c;
  --cream: #f4eee1;
  --muted: #a89f8d;
  --gold: #c9a24b;
  --gold-bright: #e8cd87;
  --line: rgba(244, 238, 225, 0.1);
  --glass: rgba(255, 255, 255, 0.035);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Lenis smooth-scroll (overrides native smooth while active) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden) — hidden would break the sticky hero pin */
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h1 em, h2 em { font-style: italic; color: var(--gold-bright); font-weight: 300; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
/* centered eyebrows get jeweler hairlines */
.section-head .eyebrow,
.finale .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.section-head .eyebrow::before, .section-head .eyebrow::after,
.finale .eyebrow::before, .finale .eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.55));
}
.section-head .eyebrow::after,
.finale .eyebrow::after {
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.55), transparent);
}

::selection { background: var(--gold); color: #171204; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2b251a; border-radius: 99px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.section-head { max-width: 900px; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.center { text-align: center; margin-top: 3rem; }

/* ─── buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease), box-shadow 0.45s var(--ease),
    transform 0.3s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn .arr { transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: #171204; position: relative; overflow: hidden; }
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 14px 40px rgba(201, 162, 75, 0.25); }
/* sheen sweep across the gold on hover */
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-gold:hover::after { left: 130%; }
.btn-ghost { border: 1px solid rgba(244, 238, 225, 0.28); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.72rem; }

.glass {
  /* no backdrop-filter: these sit on a flat bg, so blur was invisible but costly */
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 20px;
}
/* the one card that overlays a photo keeps a real frosted blur */
.story-card { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.stars { color: var(--gold-bright); letter-spacing: 0.15em; }
.stars .half { opacity: 0.35; }

/* ─── nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.5s, border-color 0.5s, padding 0.5s, transform 0.55s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.away { transform: translateY(-110%); }
.nav.scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-emblem { height: 44px; width: auto; }
.nav-wordmark { height: 26px; width: auto; }

/* ─── scroll progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 200;
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-phone { font-size: 0.82rem; color: var(--muted); transition: color 0.3s; }
.nav-phone:hover { color: var(--gold-bright); }
.nav-burger { display: none; background: none; border: 0; width: 30px; cursor: pointer; padding: 6px 0; }
.nav-burger span { display: block; height: 1.5px; background: var(--cream); margin: 5px 0; transition: 0.4s var(--ease); }
.nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu > a:not(.btn) { font-family: var(--serif); font-size: 2rem; }

/* ─── hero: pinned while the page slides over it (Rolex-style curtain) ─── */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-dim {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.curtain {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -40px 90px rgba(0, 0, 0, 0.65);
  overflow: clip;
}
.hero-media { position: absolute; inset: -4%; will-change: transform; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ping-pong loop — seamless back-and-forth cinematic motion */
  animation: kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.18) translate(-1.4%, -1.8%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 42%, rgba(11, 10, 8, 0.42) 0%, rgba(11, 10, 8, 0.82) 82%),
    linear-gradient(to bottom, rgba(11, 10, 8, 0.6), rgba(11, 10, 8, 0.32) 42%, var(--bg) 99%);
}
.hero-content { position: relative; z-index: 2; padding: 7rem 1.5rem 4rem; max-width: 1000px; }
.hero-emblem {
  height: clamp(84px, 12vw, 118px);
  width: auto;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
}
.hero-sub { max-width: 520px; margin: 1.8rem auto 0; color: var(--muted); font-size: 1.05rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 3rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.hero-proof .dot { opacity: 0.4; }
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--line);
  overflow: hidden;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip { to { top: 110%; } }

/* ─── marquee ─── */
.marquee { border-block: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: scroll 36s linear infinite; }
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
.marquee-track .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 238, 225, 0.4);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── story ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}
.story-media { position: relative; }
.story-media .pwrap { aspect-ratio: 3 / 2; }
.story-media .pwrap img { transform: none; }

/* parallax clip — image oversized inside, shifted on scroll */
.pwrap { border-radius: 22px; overflow: hidden; }
.pwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  will-change: transform;
}
.story-card {
  position: absolute;
  bottom: -1.6rem;
  right: -1.2rem;
  padding: 1.4rem 1.7rem;
  background: rgba(18, 16, 12, 0.75);
}
.story-card-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-bright); line-height: 1; }
.story-card-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.story-copy p:not(.eyebrow) { color: var(--muted); margin-top: 1.6rem; max-width: 480px; }
.story-points { list-style: none; margin: 2.2rem 0 2.6rem; }
.story-points li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.story-points li span { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 0.9rem; }

/* ─── meet the chef ─── */
.chef { background: var(--bg-2); border-block: 1px solid var(--line); }
.chef-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}
.chef-media { position: relative; }
.chef-media .pwrap { aspect-ratio: 4 / 5; }
.record-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.chef-badge {
  position: absolute;
  left: -1.2rem;
  bottom: -1.4rem;
  padding: 1.2rem 1.5rem;
  background: rgba(11, 10, 8, 0.82);
  text-align: center;
}
.chef-badge-k {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.chef-badge-v {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.chef-copy p:not(.eyebrow):not(.chef-quote) { color: var(--muted); margin: 1.6rem 0; max-width: 480px; }
.chef-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--cream);
  padding-left: 1.3rem;
  border-left: 2px solid var(--gold);
  margin: 1.8rem 0 2.4rem !important;
  max-width: 480px;
}

/* ─── dishes ─── */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1250px;
  margin: 0 auto;
}
.dish { overflow: hidden; transition: transform 0.6s var(--ease), border-color 0.6s; }
.dish:hover { transform: translateY(-8px); border-color: rgba(201, 162, 75, 0.35); }
.dish-img { overflow: hidden; aspect-ratio: 4 / 3; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.06); }
.dish-body { padding: 1.5rem 1.6rem 1.8rem; }
.dish-tag {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.dish-body h3 { font-size: 1.45rem; margin: 0.55rem 0 0.5rem; }
.dish-body p { font-size: 0.88rem; color: var(--muted); }

.menu-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1250px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--line);
}
.menu-cats a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.5rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: background 0.4s, color 0.4s;
}
.menu-cats a span { font-family: var(--sans); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; }
.menu-cats a:hover { background: var(--glass); color: var(--gold-bright); }

/* ─── bar ─── */
.bar { background: var(--bg-2); border-block: 1px solid var(--line); }
.bar-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}
.bar-copy p:not(.eyebrow) { color: var(--muted); margin: 1.6rem 0 2.4rem; max-width: 440px; }
.bar-media .pwrap { aspect-ratio: 4 / 5; }

/* ─── reviews ─── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1250px;
  margin: 0 auto;
}
.review-grid blockquote { padding: 3.6rem 2rem 2.2rem; position: relative; }
.review-grid blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.6rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
}
.review-grid .stars { font-size: 0.8rem; }
.review-grid p { font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; margin: 1.2rem 0 1.6rem; }
.review-grid cite { font-style: normal; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.link-more { font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold); border-bottom: 1px solid transparent; transition: 0.3s; }
.link-more:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* ─── visit ─── */
.visit { background: var(--bg-2); border-top: 1px solid var(--line); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1250px;
  margin: 0 auto;
  align-items: start;
}
.visit-block { margin-top: 2.4rem; }
.visit-block h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.visit-block p { color: var(--muted); margin-bottom: 0.5rem; }
.hours { border-collapse: collapse; width: 100%; max-width: 340px; }
.hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--muted); }
.hours td:last-child { text-align: right; color: var(--cream); }
.hours .closed td:last-child { color: var(--gold); font-style: italic; }
.visit-phone { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); transition: color 0.3s; }
.visit-phone:hover { color: var(--gold-bright); }
.visit-info .hero-cta { justify-content: flex-start; margin-top: 2.8rem; }
.visit-map {
  position: sticky;
  top: 100px;
  aspect-ratio: 1 / 1.05;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-2);
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  /* subtle dark-theme blend so the map matches the luxury palette */
  filter: grayscale(0.35) contrast(1.05) brightness(0.92);
}
/* placeholder shown until the map iframe loads in */
.map-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(201, 162, 75, 0.1), transparent 58%), var(--bg);
}
.map-emblem { height: 88px; width: auto; opacity: 0.9; }
.map-sub { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ─── footer ─── */
.footer { text-align: center; padding: 5.5rem 1.5rem 8rem; }
.footer-logo { height: 130px; width: auto; margin: 0 auto 0.8rem; }
.footer-tag { color: var(--muted); font-size: 0.85rem; margin-top: 0.6rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin: 2.2rem 0; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy { font-size: 0.72rem; color: rgba(168, 159, 141, 0.5); }

/* ─── mobile sticky bar ─── */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 1.05rem 0.5rem calc(1.05rem + env(safe-area-inset-bottom));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-bar a.gold { background: var(--gold); color: #171204; }

/* ─── reveal animations ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }
/* large headings rise a touch further for emphasis (cheaper than animating blur) */
h2.reveal { transform: translateY(44px); }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }
.reveal.in { opacity: 1; transform: none; }

/* ?calm — opt-in gentle mode (full cinematic motion is the default) */
html.calm .hero-media img, html.calm .marquee-track, html.calm .scroll-hint span { animation: none; }
html.calm .reveal { transform: none; transition: opacity 0.85s var(--ease); }
html.calm { scroll-behavior: auto; }

/* ─── responsive ─── */
@media (max-width: 1024px) {
  .dish-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cats { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-phone { display: none; }
}
@media (max-width: 768px) {
  .nav-actions { display: none; }
  .nav-burger { display: block; }
  .story-grid, .bar-grid, .visit-grid, .chef-grid { grid-template-columns: 1fr; }
  .bar-grid .bar-media { order: -1; }
  .chef-grid .chef-media { order: -1; }
  .story-card { right: 0.8rem; bottom: 0.8rem; }
  .dish-grid, .review-grid { grid-template-columns: 1fr; }
  .visit-map { position: static; }
  .mobile-bar { display: flex; }
  .footer { padding-bottom: 10rem; }
  .hero-side { display: none; }
}

/* ═══════════════ $100k layer ═══════════════ */

/* ─── intro curtain ─── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: transform 1.05s var(--ease);
}
.intro img {
  height: clamp(110px, 16vw, 160px);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.9s var(--ease), transform 1.1s var(--ease);
}
.intro.go img { opacity: 1; transform: scale(1); }
.intro.lift { transform: translateY(-101%); }
.intro.lift img { opacity: 0; transform: scale(1.06); transition: 0.5s; }
html.intro-lock { overflow: hidden; }

/* ─── film grain ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─── custom cursor ─── */
.cursor-dot, .cursor-ring { display: none; }
html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }
html.has-cursor .cursor-dot {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--gold-bright);
  z-index: 1001;
  pointer-events: none;
}
html.has-cursor .cursor-ring {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.55);
  z-index: 1001;
  pointer-events: none;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), border-color 0.35s;
}
html.has-cursor .cursor-ring.on {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: var(--gold-bright);
}

/* ─── hero: masked line reveal ─── */
h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
  margin-bottom: -0.09em;
}
h1 .line-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 1.25s var(--ease);
}
h1 .line:nth-child(2) .line-inner { transition-delay: 0.14s; }
h1.in .line-inner { transform: translateY(0); }

/* ─── hero: vertical side captions ─── */
.hero-side {
  position: absolute;
  top: 50%;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(244, 238, 225, 0.4);
}
.hero-side-l { left: 2rem; transform: translateY(-50%) rotate(180deg); }
.hero-side-r { right: 2rem; transform: translateY(-50%); }

/* ─── dishes: image blooms open on reveal ─── */
.dish .dish-img img { transform: scale(1.25); }
.dish.in .dish-img img { transform: scale(1); }
.dish.in:hover .dish-img img { transform: scale(1.06); }

/* ─── photos develop from a veil as they reveal ─── */
.pwrap, .dish-img { position: relative; }
.pwrap::after, .dish-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.15s var(--ease) 0.15s;
}
.reveal.in .pwrap::after, .dish.in .dish-img::after { opacity: 0; }

/* ─── filmstrip: drifts sideways while you scroll ─── */
.strip { padding: clamp(3.5rem, 7vw, 6rem) 0; overflow: clip; }
.strip-track {
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  width: max-content;
  padding-left: 4vw;
  will-change: transform;
}
.strip-track img {
  height: clamp(220px, 30vw, 370px);
  width: auto;
  border-radius: 18px;
  filter: brightness(0.86) saturate(0.96);
  transition: filter 0.5s;
}
.strip-track img:hover { filter: brightness(1.05) saturate(1); }

/* ─── finale ─── */
.finale {
  position: relative;
  text-align: center;
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 10rem);
}
.finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 62%, rgba(201, 162, 75, 0.12), transparent 62%);
  pointer-events: none;
}
.finale h2 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
.finale .hero-cta { margin-top: 2.8rem; }
.finale-note { margin-top: 1.8rem; font-size: 0.85rem; color: var(--muted); }
.finale-note a { color: var(--gold); transition: color 0.3s; }
.finale-note a:hover { color: var(--gold-bright); }

html.calm .intro { display: none; }
html.calm h1 .line-inner { transform: none; transition: none; }
html.calm .dish .dish-img img { transform: none; }
html.calm .btn-gold::after { display: none; }
html.calm h2.reveal { filter: none; }
html.calm .pwrap::after, html.calm .dish-img::after { display: none; }

/* ═══════════════ MENU PAGE ═══════════════ */
.nav-links a.current { color: var(--gold-bright); }
.nav-links a.current::after {
  content: ""; display: block; height: 1px; margin-top: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-hero {
  padding: clamp(8.5rem, 15vw, 12rem) clamp(1.25rem, 6vw, 6rem) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 75, 0.10), transparent 60%),
    var(--bg);
}
.menu-hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.menu-lead { color: var(--muted); max-width: 640px; margin: 1.5rem auto 2.2rem; font-size: 1.02rem; }

/* sticky category bar */
.cat-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.cat-bar-inner {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.65rem clamp(0.9rem, 4vw, 2rem);
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-bar a {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
}
.cat-bar a span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold); }
.cat-bar a:hover { color: var(--cream); }
.cat-bar a.active { color: var(--gold-bright); background: var(--glass); }

/* category sections */
.mcat {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
  max-width: 1320px;
  margin: 0 auto;
}
.mcat-head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2.6rem; }
.mcat-head .num { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; color: var(--gold); }
.mcat-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.mcat-note { color: var(--muted); font-size: 0.86rem; font-style: italic; margin: -1.9rem 0 2.6rem; max-width: 720px; }
.msub {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.24em;
  font-size: 0.7rem; color: var(--gold); margin: 2.8rem 0 1.4rem;
}
.msub:first-of-type { margin-top: 0; }
.mlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; }
.mitem { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.mitem h3 { font-family: var(--serif); font-size: 1.24rem; font-weight: 400; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.55rem; }
.mitem h3 .tag {
  font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #171204; background: var(--gold); padding: 0.2rem 0.55rem; border-radius: 999px; transform: translateY(-1px);
}
.mitem p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; margin-top: 0.4rem; }

@media (max-width: 720px) {
  .mlist { grid-template-columns: 1fr; }
}
