/* ==========================================================================
   Thai Sakhon Restaurant — Premium Light Theme
   ========================================================================== */

/* -- Reset & base ---------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color system — warm cream light palette */
  --bg:            #f1e9dc;
  --bg-elev:       #e9dfcf;
  --bg-card:       #faf4ea;
  --bg-card-2:     #f0e7d8;
  --line:          #d8cdbd;
  --line-soft:     rgba(215, 38, 56, 0.08);

  --text:          #2a1f15;
  --text-soft:     #6b5c4e;
  --text-mute:     #9a8d7f;

  /* Primary accent — Thai red */
  --gold:          #c41e30;
  --gold-bright:   #d72638;
  --gold-deep:     #8b0a1f;
  --thai-red:      #c41e30;
  --thai-green:    #3d7a2a;

  /* Editorial secondary accent — imperial gold (ornamental only) */
  --imp-gold:      #a88a3c;
  --imp-gold-soft: #8b6f2a;
  --imp-gold-deep: #7a6230;
  --imp-gold-line: rgba(168, 138, 60, 0.28);

  --shadow-soft:   0 6px 22px rgba(42, 31, 21, 0.08);
  --shadow-strong: 0 20px 60px rgba(42, 31, 21, 0.12);

  /* Type */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Noto Sans Thai', 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:         1240px;
  --gap:           clamp(1rem, 2vw, 1.75rem);
  --section-y:     clamp(5rem, 11vw, 9rem);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     24px;

  /* Motion */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);

  /* Tinted shadows */
  --shadow-tint:   0 8px 30px rgba(215, 38, 56, 0.08), 0 2px 8px rgba(42,31,21,0.1);
  --z-overlay:     999;
}

/* ==========================================================================
   Interactive affordances — applied site-wide per ui-ux-pro-max audit.
   ========================================================================== */

/* Every anchor inside an interactive card / gallery / menu row is        */
/* clickable — cursor must reflect that on devices with a pointer.        */
a.dish-card,
a.event-card,
a.occasion-card,
a.event-menu-tile,
a.gallery-item,
a.menu-item-thumb,
a.info-chip { cursor: pointer; }

/* Non-anchor interactive cards still need the cursor signal where their */
/* parent is the clickable surface (e.g. a card with a CTA child).        */
.dish-card,
.event-card,
.event-menu-tile { cursor: default; }
.dish-card a,
.event-card a,
.event-menu-tile a { cursor: pointer; }

/* Visible focus rings for keyboard nav on interactive cards & images.   */
/* Buttons have their own :focus-visible (already implemented).           */
.gallery-item:focus-visible,
.occasion-card:focus-visible,
.dish-card a:focus-visible,
.menu-item-thumb:focus-visible,
.info-chip:focus-visible {
  outline: 2px solid var(--imp-gold);
  outline-offset: 3px;
  border-radius: var(--radius-xl);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Subtle grain overlay — breaks digital flatness, fixed across viewport */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Skip-to-content link — keyboard accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: top .25s var(--ease);
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Form fields stay at regular weight — user-typed content should read   */
/* naturally, not bolded.                                                */
input, select, textarea {
  font-weight: 400;
}
::placeholder { font-weight: 400; }

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
input, select, textarea { font: inherit; color: inherit; }

/* -- Typography ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-weight: 600; }

/* Tabular figures for prices and numeric data — aligned columns */
.dish-price, .menu-item-price, .price-option .val, .stat .num, .num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

/* -- Inline typography image — gpt-taste signature creative move ---------- */
/* Pill-shaped image embedded INSIDE a display headline. Use sparingly:    */
/* at most one per page, in a single h2/h3 where it adds editorial punch.   */
.inline-img {
  display: inline-block;
  vertical-align: -0.18em;
  width: clamp(2.4em, 5vw, 3.4em);
  height: 1em;
  margin: 0 0.25em;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 16px rgba(196, 30, 48, 0.15);
  transition: transform .6s var(--ease-spring), filter .4s var(--ease);
  filter: saturate(1.08) contrast(1.05);
}
.inline-img:hover {
  transform: rotate(-3deg) scale(1.08);
  filter: saturate(1.15) brightness(1.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--imp-gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--imp-gold));
  margin-right: 0.9rem;
}
.eyebrow.center::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--imp-gold), transparent);
  margin-left: 0.9rem;
}

/* Ornamental divider — thin gold hairline with center diamond dot         */
/* Use sparingly between sections or above section headings for a refined  */
/* luxury cadence. Never decorative for its own sake.                      */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 220px;
  color: var(--imp-gold);
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--imp-gold-line), transparent);
}
.ornament-dot {
  width: 5px;
  height: 5px;
  background: var(--imp-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(201, 165, 92, 0.08);
}

.lead { color: var(--text-soft); font-size: 1.08rem; max-width: 60ch; }

/* -- Layout helpers -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin: 0 auto; max-width: 22ch; }
.section-head p { color: var(--text-soft); margin: 1rem auto 0; max-width: 56ch; }

/* -- Buttons --------------------------------------------------------------- */
/* Asian editorial system — rectangular with thin gold detail, wider tracking. */
/* Inspired by high-end Thai / Japanese hospitality print, not stereotype.     */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 3px;             /* Editorial — barely-rounded, not pill */
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-indent: 0.28em;             /* Optical balance for wide-tracked uppercase */
  transition:
    transform .55s var(--ease-out),
    box-shadow .55s var(--ease-out),
    border-color .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease);
  will-change: transform;
}
.btn > * { position: relative; z-index: 2; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn--primary {
  color: #fff;
  background:
    linear-gradient(165deg, #c41e30 0%, #a8182a 55%, #8b0a1f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(196, 30, 48, 0.25),
    0 10px 24px rgba(196, 30, 48, 0.18);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background:
    linear-gradient(165deg, #d72638 0%, #b01a2c 55%, #8b0a1f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(196, 30, 48, 0.3),
    0 16px 34px rgba(196, 30, 48, 0.22);
}
.btn--primary:hover::before { transform: translateX(130%); }
.btn--primary:active {
  transform: translateY(0);
  transition-duration: .12s;
  box-shadow:
    inset 0 3px 7px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(196, 30, 48, 0.2);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 4px rgba(42, 31, 21, 0.06);
}
.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(215, 38, 56, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(196, 30, 48, 0.1),
    0 2px 6px rgba(42, 31, 21, 0.06);
}
.btn--ghost:hover::before { opacity: 1; }
.btn--ghost:active {
  transform: translateY(0);
  transition-duration: .12s;
  box-shadow:
    inset 0 2px 4px rgba(42, 31, 21, 0.08),
    0 1px 3px rgba(42, 31, 21, 0.06);
}

.btn--gold-line {
  color: var(--imp-gold-deep);
  border: 1px solid var(--imp-gold);
  background: transparent;
  box-shadow: none;
}
.btn--gold-line:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(196, 30, 48, 0.2);
}
.btn--gold-line:active {
  transform: translateY(0);
  transition-duration: .12s;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ---------- Small variant — proportional adjustments ----------------- */
.btn--sm {
  padding: 0.78rem 1.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  gap: 0.5rem;
  text-indent: 0.26em;
}
.btn--sm.btn--primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 2px 5px rgba(196, 30, 48, 0.2),
    0 6px 16px rgba(196, 30, 48, 0.15);
}
.btn--sm.btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 3px 7px rgba(196, 30, 48, 0.25),
    0 10px 22px rgba(196, 30, 48, 0.2);
}

/* ---------- Reduced motion — kill the sweep, soften the transitions -- */
@media (prefers-reduced-motion: reduce) {
  .btn { transition: background .2s ease, color .2s ease, border-color .2s ease; }
  .btn:hover, .btn:active { transform: none; }
  .btn--primary::before,
  .btn--ghost::before { display: none; }
}

/* ---------- Magnetic button — pulls slightly toward cursor on hover ---- */
/* JS updates --magnet-x / --magnet-y CSS vars; CSS does the GPU transform. */
.btn-magnetic {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-magnetic:hover { transition-duration: .12s; }
@media (prefers-reduced-motion: reduce) {
  .btn-magnetic { transform: none !important; }
}

/* ---------- Kinetic marquee — endless horizontal scroll, dual-direction - */
/* Used to surface trust signals (hours, rating, years, cuisine) in motion. */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(168, 138, 60, 0.04), transparent),
    var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-style: italic;
  color: var(--text-soft);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee-item .sep {
  width: 6px;
  height: 6px;
  background: var(--imp-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.marquee-item .accent {
  color: var(--imp-gold-soft);
  font-weight: 500;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .marquee { padding: 1.25rem 0; }
}

/* -- Header / Nav ---------------------------------------------------------- */
/* Backdrop-filter lives on the ::before pseudo so the header itself doesn't */
/* establish a containing block for the mobile drawer (which is fixed).      */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: padding-block .35s var(--ease);
  background: transparent;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled::before {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.site-header.scrolled { padding-block: 0.7rem; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: #f4ecdf;
  transition: color .35s var(--ease);
}
.site-header.scrolled .brand { color: var(--text); }
/* Brand mark — shows the full logo image (rose + wordmark baked in).      */
/* `mix-blend-mode: screen` lifts the dark image bg into the page bg so    */
/* the rose and wordmark appear to float, no visible rectangle.            */
/* A red drop-shadow gives the mark presence on the dark canvas.           */
.brand-mark {
  width: 92px;
  height: 92px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), filter .4s var(--ease);
  filter:
    drop-shadow(0 2px 8px rgba(42, 31, 21, 0.12))
    drop-shadow(0 0 12px rgba(215, 38, 56, 0.15));
}
.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.05);
  filter:
    drop-shadow(0 4px 14px rgba(42, 31, 21, 0.18))
    drop-shadow(0 0 18px rgba(215, 38, 56, 0.25));
}
.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  position: static;
  transform: none;
  display: block;
  border-radius: 0;
  filter: saturate(1.08) contrast(1.02);
}
.brand-mark svg {
  width: 28px; height: 28px; display: block;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Side wordmark hidden — the logo image already includes "Thai Sakhon     */
/* Restaurant" as part of its mark. Avoids duplicate text in the header.   */
.brand-name { display: none; }
.site-header.scrolled .brand-mark {
  width: 72px;
  height: 72px;
  filter:
    drop-shadow(0 2px 6px rgba(42, 31, 21, 0.1))
    drop-shadow(0 0 10px rgba(215, 38, 56, 0.12));
}
.site-footer .brand-mark {
  width: 88px;
  height: 88px;
  filter:
    drop-shadow(0 0 14px rgba(215, 38, 56, 0.20))
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244, 236, 223, 0.95);
  position: relative;
  padding-block: 0.4rem;
  transition: color .35s var(--ease);
}
.site-header.scrolled .nav-links a { color: var(--text-soft); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta { display: flex; align-items: center; gap: 0.95rem; }

/* -- Language switcher ---------------------------------------------------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
}
.lang-opt {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(244, 236, 223, 0.6);
  padding: 0.2rem 0.1rem;
  transition: color .25s var(--ease);
}
.lang-opt:hover { color: #f4ecdf; }
.lang-opt.is-active { color: var(--imp-gold); }
.site-header.scrolled .lang-opt { color: var(--text-mute); }
.site-header.scrolled .lang-opt:hover { color: var(--text); }
.lang-opt:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.lang-sep { color: rgba(244, 236, 223, 0.35); font-size: 0.74rem; transition: color .35s var(--ease); }
.site-header.scrolled .lang-sep { color: var(--line); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: #f4ecdf;
  transition: all .35s var(--ease);
}
.site-header.scrolled .menu-toggle span { background: var(--text); }
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* -- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh; /* fixes iOS Safari viewport jumping */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 120px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.15) contrast(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 20% 50%, rgba(20,14,10,0.72) 0%, rgba(20,14,10,0.2) 55%, transparent 100%),
    linear-gradient(180deg, rgba(20,14,10,0.4) 0%, rgba(20,14,10,0.25) 40%, rgba(20,14,10,0.55) 100%);
}
.hero-glow {
  position: absolute;
  top: 15%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(215,38,56,0.18) 0%, rgba(215,38,56,0) 65%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: glowFloat 9s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  from { transform: translate(0, 0); opacity: 0.8; }
  to   { transform: translate(-30px, 20px); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(215, 38, 56, 0.45);
  background: rgba(10, 8, 7, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4ecdf;
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(74,222,128,0.05); }
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #f4ecdf;
}
.hero h1 .accent {
  color: #e0c084;
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: #c9bfae;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero .btn--ghost,
.reserve-strip .btn--ghost,
.cta-band .btn--ghost,
.page-hero .btn--ghost {
  color: #f4ecdf;
  border-color: rgba(244, 236, 223, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.hero .btn--ghost:hover,
.reserve-strip .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.page-hero .btn--ghost:hover {
  border-color: rgba(244, 236, 223, 0.7);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.hero-rating .rating-text {
  font-size: 0.85rem;
  color: #c9bfae;
}
.hero-rating .rating-text strong {
  color: #f4ecdf;
  font-weight: 500;
}

/* Scroll hint — bottom centred, refined */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-mute);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s var(--ease);
}
.scroll-hint:hover { color: var(--gold); }
.scroll-hint span { animation: floatUp 2.4s ease-in-out infinite; }
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(6px); opacity: 0.55; }
}

/* -- Info bar (below hero) ------------------------------------------------ */
.info-bar {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  z-index: 4;
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
  min-width: 0;
}
.info-chip:hover {
  background: rgba(215, 38, 56, 0.08);
  transform: translateY(-2px);
}
.info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(215, 38, 56, 0.1);
  border: 1px solid rgba(215, 38, 56, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.info-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.2rem;
}
.info-val {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 980px) {
  .info-bar-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .info-bar-inner { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .hero-rating { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* -- Intro / About strip --------------------------------------------------- */
.intro {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text h2 .gold { color: var(--gold); font-style: italic; }
.intro-text p { color: var(--text-soft); margin-bottom: 1.2rem; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.3rem;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.12), 0 8px 20px rgba(42, 31, 21, 0.08);
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.intro-image:hover img { transform: scale(1.05); }
.intro-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196, 30, 48, 0.3);
  border-radius: calc(var(--radius-lg) - 6px);
  z-index: 2;
  pointer-events: none;
}

/* -- Featured Dishes ------------------------------------------------------- */
.featured { background: var(--bg); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-flow: dense; /* gapless bento — fills every cell */
  gap: 1.75rem;
}
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .7s var(--ease-out),
              border-color .4s var(--ease),
              box-shadow .6s var(--ease);
  position: relative;
  isolation: isolate;
  /* CSS variables updated by JS (mousemove) for the spotlight effect */
  --mx: 50%;
  --my: 50%;
}
/* Spotlight border — radial gradient illuminates under cursor */
.dish-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: radial-gradient(220px circle at var(--mx) var(--my),
    rgba(201, 165, 92, 0.55) 0%,
    rgba(215, 38, 56, 0.25) 30%,
    transparent 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.dish-card:hover::before { opacity: 1; }
.dish-card .dish-img img {
  transition: transform .9s var(--ease-out), filter .5s var(--ease);
}
.dish-card:hover .dish-img img {
  transform: scale(1.1);
  filter: brightness(1.05) saturate(1.08);
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 38, 56, 0.5);
  box-shadow: 0 16px 40px rgba(42, 31, 21, 0.12), 0 6px 16px rgba(196, 30, 48, 0.08);
}
.dish-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
}
.dish-body { padding: 1.5rem 1.5rem 1.7rem; }
.dish-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.dish-desc { color: var(--text-soft); font-size: 0.93rem; margin-bottom: 1rem; min-height: 2.6em; }
.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.dish-price {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}
.dish-id { font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.1em; }

/* -- Reservation CTA strip ------------------------------------------------- */
.reserve-strip {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem);
  background-image:
    linear-gradient(rgba(10,8,7,0.78), rgba(10,8,7,0.85)),
    url('../assets/wix/71e716_5b32a34888f2481c9e27e1b41f2d20c2~mv2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.reserve-strip { color: #f4ecdf; }
.reserve-strip h2 { max-width: 22ch; margin: 0 auto 1.2rem; color: #f4ecdf; }
.reserve-strip h2 .gold { color: var(--gold-bright); font-style: italic; }
.reserve-strip p { color: #c9bfae; max-width: 50ch; margin: 0 auto 2rem; }
.reserve-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -- Gallery --------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense; /* gapless bento — no empty cells */
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-card-2);
  box-shadow: 0 2px 10px rgba(42, 31, 21, 0.06);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(42, 31, 21, 0.16);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .6s var(--ease);
  filter: saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.12) brightness(1.03); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,31,21,0.45));
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Zoom affordance — circular glyph that fades in on hover */
.gallery-zoom {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: #f4ecdf;
  background: rgba(196, 30, 48, 0.9);
  border: 1px solid rgba(244, 236, 223, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Gallery preview homepage variant */
.gallery-preview .gallery-grid { grid-template-columns: repeat(6, 1fr); }
.gallery-preview .gallery-grid .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-preview .gallery-grid .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.gallery-preview .gallery-grid .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-preview .gallery-grid .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.gallery-preview .gallery-grid .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

/* Full gallery page — perfectly-tiling 6-item bento block (feature + 2 stack + 3 across) */
.gallery-page .gallery-grid .gallery-item:nth-child(6n+1) { grid-column: 1 / span 3; grid-row: span 2; }
.gallery-page .gallery-grid .gallery-item:nth-child(6n+2) { grid-column: 4 / span 3; grid-row: span 1; }
.gallery-page .gallery-grid .gallery-item:nth-child(6n+3) { grid-column: 4 / span 3; grid-row: span 1; }
.gallery-page .gallery-grid .gallery-item:nth-child(6n+4) { grid-column: span 2; grid-row: span 1; }
.gallery-page .gallery-grid .gallery-item:nth-child(6n+5) { grid-column: span 2; grid-row: span 1; }
.gallery-page .gallery-grid .gallery-item:nth-child(6n+0) { grid-column: span 2; grid-row: span 1; }
/* Graceful trailing item — if a feature would be orphaned as the final tile,
   stretch it into a full-width banner so no empty cell is left behind. */
.gallery-page .gallery-grid .gallery-item:last-child:nth-child(6n+1) { grid-column: 1 / -1; grid-row: span 1; }

/* -- Private Events block on home ----------------------------------------- */
.private-block {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.private-image {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.12), 0 8px 20px rgba(42, 31, 21, 0.08);
}
.private-image img { width: 100%; height: 100%; object-fit: cover; }
.private-text ul {
  list-style: none;
  margin-top: 1.5rem;
}
.private-text li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-soft);
}
.private-text li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.private-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* -- Trust / Reviews ------------------------------------------------------- */
.trust { background: var(--bg); }
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .3s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: rgba(215, 38, 56, 0.35); }
.review::before {
  content: '"';
  position: absolute;
  top: 0.3rem; left: 1.2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.15em; }
.review p { color: var(--text-soft); font-style: italic; margin-bottom: 1.2rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.review-author .name { font-size: 0.95rem; color: var(--text); }
.review-author .source { font-size: 0.78rem; color: var(--text-mute); }

/* -- Section divider — gold hairline with center rose glyph --------------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 6%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--imp-gold-line) 50%, transparent);
}
.section-divider .glyph {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--imp-gold);
  letter-spacing: 0.3em;
  opacity: 0.7;
  flex-shrink: 0;
  line-height: 1;
}

/* -- Chef / Heritage section --------------------------------------------- */
.heritage {
  background: var(--bg-elev);
  overflow: hidden;
}
.heritage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.heritage-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.12), 0 8px 20px rgba(42, 31, 21, 0.08);
}
.heritage-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.08);
  transition: transform 1.2s var(--ease-out);
}
.heritage-figure:hover img { transform: scale(1.05); }
.heritage-figure::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: calc(var(--radius-xl) - 8px);
  z-index: 2;
  pointer-events: none;
}
.heritage-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 138, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
}
.heritage-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.heritage-quote .who {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--imp-gold);
}
.heritage-text h2 { margin-bottom: 1.5rem; }
.heritage-text h2 em { font-style: italic; color: var(--imp-gold-soft); }
.heritage-text p { color: var(--text-soft); margin-bottom: 1.2rem; }
.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.heritage-stats .figure {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--imp-gold-soft);
}
.heritage-stats .cap {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media (max-width: 900px) {
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-figure { max-width: 460px; margin: 0 auto; }
}

/* -- Opening Hours strip — 3 editorial cards ----------------------------- */
.hours-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hour-card {
  background: var(--bg-card);
  padding: clamp(2.2rem, 4vw, 3rem) 1.5rem;
  text-align: center;
  transition: background .4s var(--ease);
}
.hour-card:hover { background: var(--bg-card-2); }
.hour-card.is-closed { opacity: 0.72; }
.hour-card .day {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--imp-gold);
  margin-bottom: 1rem;
}
.hour-card .time {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.hour-card .note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
@media (max-width: 760px) {
  .hours-strip { grid-template-columns: 1fr; }
}

/* -- Contact / Location strip --------------------------------------------- */
.contact-strip { background: var(--bg-elev); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: stretch;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.info-list { list-style: none; margin-top: 2rem; }
.info-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list .icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.info-list .meta { color: var(--text-mute); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.25rem; }
.info-list .val { color: var(--text); font-size: 1rem; }
.info-list .val a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.2) contrast(0.95); }

/* -- Menu page ------------------------------------------------------------- */
.page-hero {
  padding: 180px 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(10,8,7,0.7), rgba(10,8,7,0.96)),
    url('../assets/wix/71e716_60f1f2aae03f49cc996b79b24e3cf83a~mv2.jpg') center / cover;
  text-align: center;
  position: relative;
}
.page-hero { color: #f4ecdf; }
.page-hero h1 { margin-bottom: 1rem; color: #f4ecdf; }
.page-hero h1 .accent {
  color: var(--imp-gold-soft);
  font-style: italic;
  font-weight: 400;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--imp-gold), transparent);
  opacity: 0.6;
}
.page-hero p { color: #c9bfae; max-width: 56ch; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8275;
  margin-top: 1.5rem;
}
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--gold-bright); }

.menu-controls {
  position: relative;
  background: rgba(250,246,240,0.9);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}
.menu-controls-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.menu-search {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.menu-search input {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  transition: all .25s var(--ease);
}
.menu-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.14);
}
.menu-search svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}
.menu-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: transparent;
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--gold); border-color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.menu-section { margin-bottom: 4rem; }
.menu-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.menu-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.menu-section-head .deco {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--imp-gold);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.menu-section-head .deco::before {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--imp-gold));
}
.menu-section-head .deco::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--imp-gold), transparent);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 2rem 3rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: 1.75rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: transform .4s var(--ease-out);
  position: relative;
}
.menu-item::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--imp-gold-line) 30%, var(--imp-gold-line) 70%, transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.menu-item:hover { transform: translateX(6px); }
.menu-item:hover::after { opacity: 1; }

.menu-item-thumb {
  width: 168px;
  height: 128px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  display: block;
  flex-shrink: 0;
  box-shadow:
    0 4px 14px rgba(42, 31, 21, 0.1),
    0 1px 4px rgba(42, 31, 21, 0.06);
  transition: box-shadow .5s var(--ease-out), transform .5s var(--ease-out);
}
.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .5s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}
.menu-item-thumb:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(196, 30, 48, 0.1),
    0 4px 10px rgba(42, 31, 21, 0.08);
}
.menu-item-thumb:hover img { transform: scale(1.08); filter: brightness(1.05) saturate(1.15); }
.menu-item-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(201, 165, 92, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow .35s var(--ease);
  pointer-events: none;
}
.menu-item-thumb:hover::after {
  box-shadow:
    inset 0 0 0 1px rgba(201, 165, 92, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.menu-item-thumb--placeholder {
  display: grid;
  place-items: center;
  color: var(--imp-gold);
  opacity: 0.4;
}
.menu-item-thumb--placeholder svg { width: 44px; height: 44px; }
.menu-item-body { min-width: 0; padding-right: 0.5rem; }
.menu-item .menu-item-name { font-size: 1.28rem; }
.menu-item .menu-item-desc { font-size: 0.98rem; line-height: 1.6; }
.menu-item .menu-item-price { font-size: 1.1rem; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.menu-item-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
}
.menu-item-desc {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}
.menu-item-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}
.price-options { display: flex; flex-direction: column; gap: 0.2rem; align-items: flex-end; }
.price-option {
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.price-option .label { color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; }
.price-option .val {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-mute);
}
.menu-empty h3 { color: var(--text); margin-bottom: 0.5rem; }

/* -- Reservation form ----------------------------------------------------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-strong);
  max-width: 760px;
  margin-inline: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field label .req { color: var(--gold); margin-left: 0.2rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: all .25s var(--ease);
  font-family: var(--font-body);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.12);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--thai-red);
}
.field .err-msg {
  font-size: 0.78rem;
  color: var(--thai-red);
  min-height: 1.1em;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-note { color: var(--text-mute); font-size: 0.82rem; max-width: 38ch; }

.alert {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
}
.alert.show { display: block; animation: fadeIn .4s var(--ease); }
.alert--success {
  background: rgba(61, 122, 42, 0.08);
  border: 1px solid var(--thai-green);
  color: #2d5a1a;
}
.alert--error {
  background: rgba(196, 30, 48, 0.06);
  border: 1px solid var(--thai-red);
  color: #8b1a24;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* -- Private events page -------------------------------------------------- */
/* Asymmetric event-card layout with header images.                       */
/* First card spans both rows as the wide editorial "feature".            */
.event-cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .5s var(--ease-out),
              border-color .35s var(--ease),
              box-shadow .5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  border-color: rgba(168, 138, 60, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42, 31, 21, 0.1),
              0 6px 16px rgba(196, 30, 48, 0.06);
}
.event-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05);
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.event-card:hover .event-card-img img {
  transform: scale(1.07);
  filter: brightness(1.02) saturate(1.12);
}
.event-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 31, 21, 0.45) 100%);
  pointer-events: none;
}
.event-card-body {
  padding: 2rem 1.85rem 2.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(215, 38, 56, 0.12);
  color: var(--gold);
  display: grid; place-items: center;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(201, 165, 92, 0.2);
}
.event-card h3 { margin-bottom: 0.75rem; }
.event-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }

/* First card — editorial feature with larger image and richer typography */
.event-card:first-child { grid-row: 1 / span 2; }
.event-card:first-child .event-card-img { aspect-ratio: auto; flex: 1 1 auto; min-height: 340px; }
.event-card:first-child .event-card-body { padding: 2.5rem 2.5rem 2.75rem; flex: 0 0 auto; }
.event-card:first-child .event-icon { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.event-card:first-child h3 { font-size: 1.65rem; margin-bottom: 1rem; }
.event-card:first-child p { font-size: 1.02rem; line-height: 1.7; }

@media (max-width: 760px) {
  .event-cards { grid-template-columns: 1fr; }
  .event-card:first-child { grid-row: auto; }
  .event-card:first-child .event-card-img { aspect-ratio: 16 / 10; }
  .event-card:first-child .event-card-body { padding: 2rem 1.85rem 2.1rem; }
  .event-card:first-child h3 { font-size: 1.45rem; }
  .event-card:first-child p { font-size: 0.98rem; }
}

/* -- Menu category banner — large landscape image per category --------- */
.menu-section-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 7;
  max-height: 280px;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(42, 31, 21, 0.1);
}
.menu-section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.08);
  transition: transform 1.4s var(--ease-out), filter .6s var(--ease);
}
.menu-section-banner:hover img {
  transform: scale(1.04);
  filter: brightness(0.8) saturate(1.15);
}
.menu-section-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 31, 21, 0.15) 0%, rgba(42, 31, 21, 0.65) 100%),
    linear-gradient(90deg, rgba(42, 31, 21, 0.45) 0%, transparent 60%);
  pointer-events: none;
}
.menu-section-banner-label {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--imp-gold-soft);
}
.menu-section-banner-label .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--imp-gold-soft);
  opacity: 0.7;
}
.menu-section-banner-label .text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f4ecdf;
  padding-left: 1rem;
  border-left: 1px solid var(--imp-gold-line);
}

/* -- Reservation page — split layout with ambient side image ----------- */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.reservation-grid .form-card { max-width: none; margin: 0; }
.reservation-image {
  position: sticky;
  top: 110px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.12), 0 8px 20px rgba(42, 31, 21, 0.08);
}
.reservation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.08);
}
.reservation-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 31, 21, 0.45) 100%);
  pointer-events: none;
}
.reservation-image-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: #f4ecdf;
}
.reservation-image-caption .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--imp-gold);
  margin-bottom: 0.4rem;
  display: block;
}
.reservation-image-caption .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .reservation-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reservation-image { position: static; aspect-ratio: 16 / 10; }
}

/* -- Contact page — cinematic interior strip --------------------------- */
/* Quick-contact action cards (replaces the old full-bleed photo strip) */
.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.qc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.75rem 1.6rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), border-color .35s var(--ease), box-shadow .4s var(--ease);
}
.qc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 48, 0.35);
  box-shadow: 0 18px 44px rgba(42, 31, 21, 0.14);
}
.qc-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(196, 30, 48, 0.1);
  color: var(--gold);
  border: 1px solid rgba(196, 30, 48, 0.18);
  margin-bottom: 0.85rem;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.qc-card:hover .qc-icon { background: var(--gold); color: #fff; }
.qc-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}
.qc-value {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.qc-cta {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.85;
  transition: transform .35s var(--ease-out);
}
.qc-card:hover .qc-cta { transform: translateX(4px); opacity: 1; }

/* Opening-hours panel inside the contact grid */
.hours-card {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.hours-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.hours-rows { list-style: none; }
.hours-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1rem;
}
.hours-rows li:last-child { border-bottom: 0; }
.hours-rows li span:last-child { font-weight: 600; }
.hours-rows li.is-closed { color: var(--text-mute); }
.hours-rows li.is-closed span:last-child { color: var(--gold); font-weight: 600; }
.contact-cta-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* -- Homepage About — tiny image cluster ------------------------------- */
.intro-image-cluster {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 38%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: 0 14px 36px rgba(42, 31, 21, 0.12);
  z-index: 2;
}
.intro-image-cluster img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.1);
}
.intro-image { position: relative; }
@media (max-width: 980px) {
  .intro-image-cluster { display: none; }
}

.cta-band {
  background:
    linear-gradient(180deg, rgba(42, 31, 21, 0.72) 0%, rgba(42, 31, 21, 0.82) 100%),
    url('../assets/wix/71e716_d2274483b4c84df4becc4ad9fd030d2e~mv2.jpg') center / cover;
  border: 1px solid rgba(168, 138, 60, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.15);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(215, 38, 56, 0.22), transparent 55%);
  z-index: 0;
}
.cta-band::after {
  /* Ornamental gold corner brackets */
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 32px; height: 32px;
  border-top: 1px solid var(--imp-gold);
  border-left: 1px solid var(--imp-gold);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.cta-band { color: #f4ecdf; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: 1.25rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #f4ecdf; }
.cta-band p { color: #c9bfae; max-width: 52ch; margin: 0 auto 2rem; font-size: 1.02rem; }

/* -- Perfect For — image-backed occasion tiles ------------------------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}
.occasion-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease-out);
  isolation: isolate;
  border: 1px solid var(--line);
}
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.1);
  transition: transform 1.2s var(--ease-out), filter .5s var(--ease);
}
.occasion-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(42, 31, 21, 0.65) 75%, rgba(42, 31, 21, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
.occasion-card-label {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1.1rem, 2vw, 1.5rem);
  z-index: 2;
  color: #f4ecdf;
}
.occasion-card-label .num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--imp-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.occasion-card-label .name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.occasion-card-label .hint {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #c9bfae;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .35s var(--ease), margin-top .4s var(--ease);
}
.occasion-card:hover {
  transform: translateY(-6px);
}
.occasion-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.78) saturate(1.18);
}
.occasion-card:hover .occasion-card-label .hint {
  max-height: 4em;
  opacity: 1;
  margin-top: 0.6rem;
}

@media (max-width: 1080px) {
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .occasion-card:nth-child(7),
  .occasion-card:nth-child(8) { display: none; }
}
@media (max-width: 760px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .occasion-card { aspect-ratio: 3 / 4; }
  .occasion-card:nth-child(7),
  .occasion-card:nth-child(8) { display: block; }
}

/* -- Event Menu — asymmetric bento of signature dishes ----------------- */
.event-menu-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto 2rem;
}
.event-menu-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), border-color .35s var(--ease);
  isolation: isolate;
}
.event-menu-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.08);
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.event-menu-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(42, 31, 21, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
.event-menu-tile-label {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  z-index: 2;
}
.event-menu-tile-label .meta {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--imp-gold);
  margin-bottom: 0.4rem;
}
.event-menu-tile-label .title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: #f4ecdf;
  line-height: 1.2;
}
.event-menu-tile:hover { transform: translateY(-4px); border-color: rgba(201, 165, 92, 0.45); }
.event-menu-tile:hover img { transform: scale(1.06); filter: brightness(0.95) saturate(1.18); }
/* First tile spans both rows on left */
.event-menu-tile:first-child { grid-row: 1 / span 2; }
.event-menu-tile:first-child .event-menu-tile-label .title { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

@media (max-width: 880px) {
  .event-menu-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .event-menu-tile:first-child { grid-row: auto; grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .event-menu-bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .event-menu-tile:first-child { grid-column: auto; }
}

/* -- Event facts strip — quick figures with gold accent ---------------- */
.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--imp-gold-line);
  border-bottom: 1px solid var(--imp-gold-line);
  padding: 2.5rem 0;
}
.fact {
  text-align: center;
  padding: 0 1.25rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.fact:last-child { border-right: none; }
.fact .figure {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--imp-gold-soft);
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.fact .label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.fact .desc {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mute);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 880px) {
  .facts-strip { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 1.5rem 0; }
  .fact { min-width: 0; padding: 1.25rem 1rem; border-right: none; border-bottom: 1px solid var(--line); }
  .fact:nth-last-child(-n+2) { border-bottom: none; }
  .fact:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* -- Footer --------------------------------------------------------------- */
.site-footer {
  background: #1a1510;
  color: #f4ecdf;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid var(--line);
}
.site-footer h2,
.site-footer h3,
.site-footer h4 { color: #f4ecdf; }
.site-footer .brand-mark img { filter: brightness(1.1) saturate(1.15); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p { color: #c9bfae; font-size: 0.92rem; max-width: 32ch; margin-top: 1.2rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a, .footer ul li { color: #c9bfae; font-size: 0.92rem; }
.footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid #3a3228;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #c9bfae;
  transition: all .25s var(--ease);
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #3a3228;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #8a8275;
}

/* -- Reveal animations ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

/* -- Lightbox -------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; animation: fadeIn .3s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.5rem;
  transition: all .2s var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: #fff; transform: rotate(90deg); }

/* -- Mobile nav drawer ---------------------------------------------------- */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    padding: 6rem 2rem 4rem;
    z-index: 105; /* above .site-header (100), below .menu-toggle (110) */
    margin: 0;
    list-style: none;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { list-style: none; width: 100%; text-align: center; }
  .nav-links a {
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
    display: inline-block;
    color: var(--text) !important;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold) !important; }
  .nav-cta .btn { display: none; }

  /* Smaller logo on mobile so it doesn't dominate the header */
  .brand-mark { width: 64px; height: 64px; }
  .site-header.scrolled .brand-mark { width: 52px; height: 52px; }
  .site-footer .brand-mark { width: 72px; height: 72px; }

  .intro-grid,
  .private-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
  .intro-image { aspect-ratio: 4/3; max-width: 600px; margin: 0 auto; }
  .private-image { order: -1; max-width: 600px; margin: 0 auto; }

  .form-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 1rem; }
  /* Tablet — keep the bento but shorten rows */
  .gallery-grid { grid-auto-rows: 160px; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  /* Clear the fixed header (logo 64px + padding) before hero content */
  .hero { min-height: 92vh; padding-top: 150px; padding-bottom: 90px; }
  .hero-badge { margin-bottom: 1.5rem; }
  /* Stack the hero CTAs full-width so the buttons don't clip their text */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .stat:last-child { grid-column: 1 / -1; }
  .menu-controls { padding: 1rem 0; }
  .menu-item { grid-template-columns: 110px 1fr; gap: 1rem; padding: 1.2rem 0; }
  .menu-item-thumb { width: 110px; height: 88px; }
  .menu-item .menu-item-name { font-size: 1.1rem; }
  .menu-item .menu-item-desc { font-size: 0.92rem; }
  .menu-item .menu-item-price { font-size: 1.1rem; }
  .menu-item-price, .price-options { grid-column: 2 / -1; text-align: left; align-items: flex-start; margin-top: 0.5rem; }
  /* Mobile — simple 2-up grid with an occasional tall feature for rhythm.
     Selectors must out-specify the base `.gallery-preview .gallery-grid` rule. */
  .gallery-grid,
  .gallery-preview .gallery-grid,
  .gallery-page .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-preview .gallery-grid .gallery-item,
  .gallery-page .gallery-grid .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-preview .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
  .gallery-page .gallery-grid .gallery-item:nth-child(5n+1) { grid-column: span 2 !important; grid-row: span 2 !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
