/* =============================================================================
   NOVECENTO — STYLE.CSS
   Ultra-premium Italian restaurant · Sousse, Tunisia
   Palette: Charcoal #0f0f0f · Ivory #f5f1eb · Gold #c8a96b · Gray #b8b8b8
   Fonts: Cormorant Garamond (display) · Inter (body)
   ============================================================================= */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  /* Brand */
  --gold:           #c8a96b;
  --gold-light:     #d9bf8e;
  --gold-dark:      #a8893b;

  /* Dark theme (default) */
  --bg:             #0f0f0f;
  --bg-2:           #161616;
  --bg-3:           #1e1e1e;
  --surface:        rgba(22, 22, 22, 0.94);
  --border:         rgba(255, 255, 255, 0.07);
  --text:           #f5f1eb;
  --text-2:         #b8b8b8;
  --text-3:         #6a6a6a;

  /* Nav */
  --nav-bg:         rgba(15, 15, 15, 0.93);
  --nav-border:     rgba(255, 255, 255, 0.06);

  /* Typography */
  --ff-display:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --fs-xs:   0.65rem;
  --fs-sm:   0.8rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  clamp(2.4rem, 5vw, 4.5rem);
  --fs-hero: clamp(5.5rem, 12vw, 13rem);

  /* Spacing (8-point grid) */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-24: 12rem;

  /* Layout */
  --container:     1380px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --section-py:    clamp(5rem, 10vw, 10rem);
  --nav-h:         80px;
  --radius:        4px;

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --ease-io:   cubic-bezier(0.45, 0, 0.55, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    0.18s;
  --t-med:     0.35s;
  --t-slow:    0.65s;

  /* Z-index */
  --z-loader:  9999;
  --z-cursor:  9998;
  --z-grain:   9990;
  --z-nav:     100;
  --z-mobile:  99;
  --z-above:   10;
}

/* Light theme overrides */
[data-theme="light"] {
  --bg:      #f5f1eb;
  --bg-2:    #ede7dc;
  --bg-3:    #e3dbd0;
  --surface: rgba(245, 241, 235, 0.94);
  --border:  rgba(0, 0, 0, 0.07);
  --text:    #0f0f0f;
  --text-2:  #4a4a4a;
  --text-3:  #8a8a8a;
  --nav-bg:  rgba(245, 241, 235, 0.93);
  --nav-border: rgba(0, 0, 0, 0.07);
}

/* ─── BASE RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  /* Lenis écrase cette valeur à l'init ; sert de fallback si Lenis échoue */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  cursor: none;                          /* custom cursor on desktop */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--t-slow) var(--ease-io),
              color var(--t-slow) var(--ease-io);
}

body.loading { overflow: hidden; }

img, video { display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── FOCUS STATES (accessibility) ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SELECTION ──────────────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--bg); }

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 99px; }

/* ─── CONTAINER ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── SECTION DEFAULTS ───────────────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
  position: relative;
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }

/* ─── SECTION LABEL ──────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}
.section-label span {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SECTION TITLE ──────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: var(--fs-lg);
  color: var(--text-2);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ─── BODY TEXT ──────────────────────────────────────────────────────────── */
.body-text {
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.6rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-expo);
  will-change: transform;
}

.btn span { position: relative; z-index: 1; pointer-events: none; }

/* Gold fill */
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease-expo);
}
.btn--gold:hover { color: var(--gold); }
.btn--gold:hover::after { transform: scaleX(1); transform-origin: left; }

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
[data-theme="light"] .btn--ghost { border-color: rgba(0,0,0,0.2); }
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease-expo);
}
.btn--outline:hover { color: var(--bg); }
.btn--outline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  top: 0; left: 0;
}
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--t-fast), height var(--t-fast),
              opacity var(--t-fast);
}
.cursor-ring {
  position: absolute;
  width: 38px; height: 38px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s, opacity var(--t-fast);
}
.cursor.is-hover .cursor-dot  { width: 10px; height: 10px; }
.cursor.is-hover .cursor-ring { width: 60px; height: 60px; border-color: rgba(200,169,107,0.7); }
.cursor.is-hidden .cursor-dot,
.cursor.is-hidden .cursor-ring { opacity: 0; }

/* ─── GRAIN TEXTURE ──────────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
[data-theme="light"] .grain { opacity: 0.7; }

/* ─── LOADER ─────────────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-line {
  width: 160px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  transform: scaleX(0);
  transform-origin: center;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
}
.loader-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.loader-logo {
  height: clamp(90px, 14vw, 160px);
  width: auto;
  object-fit: contain;
  display: block;
}
.loader-sub {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.loader-bar-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
}
.loader-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: none;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  transition: background var(--t-slow) var(--ease-io),
              box-shadow var(--t-slow) var(--ease-io),
              height var(--t-med) var(--ease-out);
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--nav-border);
}
.navbar-inner {
  max-width: var(--container);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.navbar-logo {
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--t-med);
}
.navbar-logo:hover .navbar-logo-img { opacity: 0.75; }

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav-link {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-med);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease-expo);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* Controls */
.navbar-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language toggle */
.lang-btn {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.5rem;
  transition: color var(--t-fast);
}
.lang-btn:hover { color: var(--text); }
.lang-opt { transition: color var(--t-fast), opacity var(--t-fast); }
.lang-opt.active { color: var(--gold); font-weight: 500; }
.lang-sep { opacity: 0.35; }

/* Theme toggle */
.theme-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border-radius: 50%;
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.theme-btn:hover { color: var(--gold); background: rgba(200,169,107,0.08); }
.theme-icon { position: absolute; transition: opacity var(--t-med), transform var(--t-med) var(--ease-expo); }
.icon-sun  { opacity: 0; transform: rotate(-90deg) scale(0.8); }
.icon-moon { opacity: 1; transform: none; }
[data-theme="light"] .icon-sun  { opacity: 1; transform: none; }
[data-theme="light"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.8); }

/* Burger */
.burger {
  width: 34px; height: 34px;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 0 2px;
}
.burger-line {
  display: block;
  height: 1px;
  background: var(--text);
  transition: width var(--t-med) var(--ease-expo),
              transform var(--t-med) var(--ease-expo),
              opacity var(--t-fast);
}
.burger-line:first-child { width: 22px; }
.burger-line:last-child  { width: 14px; }
.burger.open .burger-line:first-child { width: 18px; transform: translateY(3.5px) rotate(45deg); }
.burger.open .burger-line:last-child  { width: 18px; transform: translateY(-3.5px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: var(--z-mobile);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow) var(--ease-io);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 3rem;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-link {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-3);
  display: block;
  padding-block: 0.4rem;
  transition: color var(--t-med), transform var(--t-med) var(--ease-expo);
  transform: translateX(0);
}
.mobile-link:hover { color: var(--text); transform: translateX(8px); }
.mobile-menu-foot { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--text-3);
}
.mobile-phone {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Media layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: -15% 0;
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.82) 100%
  );
}
[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15,15,15,0.45) 0%,
    rgba(15,15,15,0.60) 50%,
    rgba(15,15,15,0.85) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* will-change : couches GPU allouées dès le rendu initial →
   zéro repaint au moment où GSAP déclenche les animations héro */
.hero-eyebrow,
.hero-line,
.hero-tagline,
.hero-cta,
.hero-scroll {
  will-change: opacity, transform;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.85);
}
.eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: rgba(200,169,107,0.55);
  flex-shrink: 0;
}

/* Heading */
.hero-heading {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #f5f1eb;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.hero-line { display: block; }
.hero-line--italic {
  font-style: italic;
  padding-left: clamp(1rem, 3vw, 3.5rem);
}

/* Tagline */
.hero-tagline {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 300;
  color: rgba(245,241,235,0.7);
  letter-spacing: 0.01em;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* CTA group */
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-track {
  width: 1px; height: 48px;
  background: rgba(200,169,107,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollThumb 1.6s var(--ease-io) infinite;
}
.scroll-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.6);
}

/* ─── EXPERIENCE SECTION ─────────────────────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
.exp-text { max-width: 560px; }

/* Stats */
.exp-stats {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.4rem;
}
.stat-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin-inline: 0.5rem;
}

/* Experience visual */
.exp-visual {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
}
.exp-img-main {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  border-radius: var(--radius);
}
.exp-img-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.exp-img-main:hover img { transform: scale(1.04); }

.exp-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-style: italic;
  font-weight: 400;
  padding: 1.25rem 1.75rem;
  z-index: 3;
  line-height: 1;
}
.exp-img-accent {
  position: absolute;
  bottom: -4rem;
  left: -3rem;
  width: 48%;
  padding-bottom: 55%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  z-index: 2;
}
.exp-img-accent img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.exp-img-accent:hover img { transform: scale(1.04); }

/* ─── MENU SECTION ───────────────────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 3.5rem;
}
.menu-tab {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.65rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 0;
  position: relative;
  transition: color var(--t-med), border-color var(--t-med);
  cursor: none;
}
.menu-tab:hover { color: var(--text-2); }
.menu-tab.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  overflow: hidden;
}

/* Cards */
.menu-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  transition: opacity var(--t-med) var(--ease-out);
}
.menu-card.hidden { display: none; }
.menu-card-img {
  position: relative;
  padding-bottom: 62%;
  overflow: hidden;
}
.menu-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-card-body {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}
.menu-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.menu-card-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}
.menu-card-price {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}
.menu-card-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--text-3);
  line-height: 1.6;
}

.menu-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 420px 420px;
  gap: 3px;
  margin-top: 2rem;
}

/* Asymmetric layout */
.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }  /* tall left */
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 8 / 11; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 9; grid-row: 3; display: none; }  /* responsive */
.gallery-item:nth-child(5) { grid-column: 11 / 13; grid-row: 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.85s var(--ease-out);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item figcaption span {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.9);
}

/* ─── RESERVATION SECTION ────────────────────────────────────────────────── */
.reservation {
  position: relative;
  padding-block: var(--section-py);
}
.reservation-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reservation-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
[data-theme="light"] .reservation-bg img { opacity: 0.25; }
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.75));
}
[data-theme="light"] .reservation-overlay {
  background: linear-gradient(135deg, rgba(245,241,235,0.94), rgba(245,241,235,0.82));
}
.reservation > .container { position: relative; z-index: 2; }

.reservation-card {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .reservation-card {
  background: rgba(245,241,235,0.65);
}
.reservation-card .section-label { justify-content: center; }

.reservation-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-block: 1.25rem 1.25rem;
}
.reservation-title em { font-style: italic; color: var(--gold); }

.reservation-desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
}

.reservation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.res-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  text-align: left;
  transition: border-color var(--t-med), background var(--t-med), transform var(--t-med) var(--ease-expo);
}
[data-theme="light"] .res-btn { background: rgba(0,0,0,0.03); }
.res-btn:hover {
  border-color: var(--gold);
  background: rgba(200,169,107,0.06);
}

.res-btn-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200,169,107,0.1);
  color: var(--gold);
}
.res-btn--wa .res-btn-icon { background: rgba(37,211,102,0.1); color: #25D366; }

.res-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.res-btn-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.res-btn-val {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Hours */
.reservation-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.res-hours-item { display: flex; flex-direction: column; gap: 0.25rem; }
.res-hours-day {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.res-hours-time {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--text);
}
.res-hours-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── LOCATION SECTION ───────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.loc-item:first-child { border-top: 1px solid var(--border); }
.loc-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.1rem;
}
.loc-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.loc-detail-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.loc-detail-val {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.6;
  display: block;
}
.loc-link {
  font-size: var(--fs-base);
  color: var(--text);
  transition: color var(--t-fast);
  display: block;
}
.loc-link:hover { color: var(--gold); }

/* Map */
.location-map { }
.map-frame {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.2) contrast(1.05);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
[data-theme="dark"] .map-frame { filter: grayscale(0.6) contrast(1.1) invert(0.92) hue-rotate(180deg); }
[data-theme="light"] .map-frame { filter: grayscale(0.25) contrast(1.04); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); }

.footer-top { padding-block: clamp(3.5rem, 6vw, 6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity var(--t-med);
}
.footer-logo:hover { opacity: 0.7; }
.footer-logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--text-3);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: color var(--t-med), border-color var(--t-med), background var(--t-med);
}
.social-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(200,169,107,0.06); }

.footer-nav-title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--text-2);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact address p,
.footer-contact address a {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.6;
  transition: color var(--t-fast);
}
.footer-contact address a:hover { color: var(--gold); }

.footer-hours-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
  color: var(--text-2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: var(--fs-xs);
  color: var(--text-3);
  letter-spacing: 0.05em;
}
