/* ========================================================================
   Le Chansona — Design System
   Dark cinematic restaurant + chanson club
   ======================================================================== */

:root {
  /* Palette — premium violet + champagne gold */
  --ink: #0c0617;           /* deep violet-black */
  --ink-2: #140a22;         /* surface */
  --ink-3: #1c0f2e;         /* elevated surface */
  --violet: #6b3aa0;        /* royal amethyst */
  --violet-2: #8a5cc0;      /* light amethyst */
  --violet-deep: #3d1f5e;   /* deep velvet */
  --violet-glow: rgba(138, 92, 192, 0.35);
  --gold: #d4ad75;          /* champagne gold — logo tone */
  --gold-2: #ecd2a1;        /* light gold */
  --gold-deep: #a3814c;
  --cream: #f7eedc;         /* brighter cream — better readability */
  --cream-2: #ece1c8;
  --muted: #b09bb8;         /* violet-tinted muted */
  --line: rgba(212, 173, 117, 0.2);
  --line-strong: rgba(212, 173, 117, 0.45);
  --line-violet: rgba(138, 92, 192, 0.25);

  /* Typography */
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-glow: 0 30px 80px -20px rgba(201, 162, 107, 0.18);
  --shadow-card: 0 20px 50px -15px rgba(0, 0, 0, 0.6);
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* Reset ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Body grain texture — violet + gold ambient */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(212, 173, 117, 0.07), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(107, 58, 160, 0.22), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(138, 92, 192, 0.04), transparent 70%);
  z-index: 0;
}

/* Typography ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.12;
  margin: 0;
  color: var(--cream);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.eyebrow.left::after { display: none; }
.eyebrow.left::before { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-style: italic;
  font-weight: 400;
}
.section-title em { color: var(--gold-2); font-style: italic; }

.lede {
  color: var(--cream);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 62ch;
  font-weight: 300;
}

/* Container & section --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
section { position: relative; padding: clamp(72px, 10vw, 140px) 0; }
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #1a0f08;
  box-shadow: 0 12px 40px -10px rgba(201, 162, 107, 0.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -10px rgba(201, 162, 107, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201, 162, 107, 0.06);
}
.btn-violet,
.btn-burgundy {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  color: var(--cream);
  box-shadow: 0 12px 36px -10px var(--violet-glow);
}
.btn-violet:hover,
.btn-burgundy:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 18px 46px -10px var(--violet-glow); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Header / Nav ---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
  background: linear-gradient(180deg, rgba(10,7,6,0.85), rgba(10,7,6,0.4) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled {
  background: rgba(10, 7, 6, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand .mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  background: radial-gradient(circle at 30% 30%, rgba(138,92,192,0.25), rgba(212,173,117,0.08) 60%, transparent 80%);
  position: relative;
}
.brand .mark::before,
.brand .mark::after {
  content: "";
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}
.brand .mark::before { left: -8px; top: 50%; margin-top: -2px; }
.brand .mark::after { right: -8px; top: 50%; margin-top: -2px; }
.brand small { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; display: block; font-style: normal; }
.brand .name { line-height: 1; }

.nav-list {
  display: flex; gap: 36px;
  list-style: none; padding: 0; margin: 0;
}
.nav-list a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  padding: 8px 0;
}
.nav-list a::after {
  content: "";
  position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .3s ease;
  transform: translateX(-50%);
}
.nav-list a:hover, .nav-list a.active { color: var(--gold-2); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
.nav-phone {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream-2);
  display: flex; align-items: center; gap: 8px;
}
.nav-phone svg { color: var(--gold); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 1px;
  background: var(--cream);
  transition: all .3s ease;
}

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.02);
  animation: slow-zoom 22s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,6,23,0.7) 0%, rgba(12,6,23,0.35) 30%, rgba(12,6,23,0.6) 70%, var(--ink) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(107,58,160,0.18), transparent 60%),
    radial-gradient(ellipse at center, transparent 0%, rgba(12,6,23,0.7) 90%);
}
@keyframes slow-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero-inner {
  display: grid;
  gap: 32px;
  max-width: 980px;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue .line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: pulse-line 2.4s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page hero (subpages) -------------------------------------------------- */
.page-hero {
  padding: 200px 0 90px;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(107,58,160,0.32), transparent 70%),
    radial-gradient(ellipse at 50% 0%, rgba(212,173,117,0.06), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  margin-top: 18px;
}
.page-hero p { color: var(--cream-2); margin-top: 16px; }

/* Split section --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.split-media:hover img { transform: scale(1.04); }
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,7,6,0.5));
  pointer-events: none;
}
.split-body { display: flex; flex-direction: column; gap: 22px; }

/* Editorial Grand Opening ----------------------------------------------- */
.editorial {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.editorial-text { padding: 32px 0; }
.editorial-text .section-title { font-size: clamp(2.25rem, 5vw, 4rem); }
.editorial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.7;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 26px;
  margin-top: 28px;
}
.editorial-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.editorial-meta dt { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.editorial-meta dd { margin: 0 0 12px; font-size: 14px; color: var(--cream-2); font-family: var(--font-serif); font-style: italic; }
.editorial-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }

/* Feature cards (Richest Bar / Customer Service) ------------------------ */
.features {
  background: var(--ink);
  position: relative;
}
.features::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,107,0.06), transparent 70%);
  pointer-events: none;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  color: var(--cream);
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform .5s ease, border-color .3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.feature-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s ease;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,6,0.2) 0%, rgba(10,7,6,0.6) 50%, rgba(10,7,6,0.95) 100%);
  z-index: -1;
}
.feature-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.feature-card h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-style: italic;
  margin-bottom: 14px;
}
.feature-card p { color: var(--cream-2); max-width: 42ch; }

/* Reservation CTA dark section ----------------------------------------- */
.reserve-cta {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(135deg, #0c0617 0%, #1f0e3a 100%);
  overflow: hidden;
  text-align: center;
}
.reserve-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://lechansona.com/wp-content/themes/lechansona/assets/images/book-seat.jpg");
  background-size: cover; background-position: center;
  opacity: 0.22;
  filter: saturate(0.9) hue-rotate(-10deg);
}
.reserve-cta::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(107,58,160,0.4), transparent 70%),
    linear-gradient(180deg, rgba(12,6,23,0.88), rgba(12,6,23,0.96));
}
.reserve-cta .container { position: relative; z-index: 1; }
.reserve-cta .section-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.reserve-cta p {
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream-2);
  margin: 24px auto 40px;
  max-width: 700px;
}
.reserve-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}

/* Menus section --------------------------------------------------------- */
.menus { background: var(--ink-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  transition: transform .4s ease, border-color .3s ease;
  isolation: isolate;
}
.menu-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.menu-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,7,6,0.85));
  z-index: 1;
}
.menu-card .menu-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-card .menu-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
}
.menu-card .view-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* Events cards ---------------------------------------------------------- */
.events { background: var(--ink); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform .5s ease;
}
.event-card:hover { transform: translateY(-8px); }
.event-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.event-card:hover img { transform: scale(1.06); }
.event-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,6,0.1) 30%, rgba(10,7,6,0.9));
}
.event-card .event-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.event-card h3 {
  font-size: 1.75rem;
  font-style: italic;
}
.event-card .event-meta {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Newsletter ------------------------------------------------------------ */
.newsletter {
  background:
    linear-gradient(135deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,162,107,0.18), transparent 70%);
  border-radius: 50%;
}
.newsletter::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(107,58,160,0.35), transparent 70%);
  border-radius: 50%;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(10,7,6,0.6);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 22px;
  height: 52px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--ink);
  padding: 0 30px;
  height: 52px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter .25s ease, transform .25s ease;
}
.newsletter-form button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.newsletter small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Gallery preview ------------------------------------------------------- */
.gallery-preview { background: var(--ink); padding-bottom: 0; }
.masonry {
  columns: 4 220px;
  column-gap: 16px;
}
.masonry a {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .4s ease;
}
.masonry a:hover { transform: scale(1.02); }
.masonry img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) saturate(1.05);
  transition: filter .4s ease;
}
.masonry a:hover img { filter: brightness(1) saturate(1.15); }
.gallery-cta { text-align: center; margin-top: 56px; }

/* Footer ---------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--ink-2), #050302);
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  color: var(--cream-2);
  max-width: 32ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--cream-2); font-size: 14px; }
.footer-col a:hover { color: var(--gold-2); }
.footer-col p { color: var(--cream-2); font-size: 14px; margin: 0 0 10px; line-height: 1.7; }
.footer-col .social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-col .social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  transition: all .25s ease;
}
.footer-col .social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Reservation form ------------------------------------------------------ */
.reserve-section { background: var(--ink-2); }
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.reserve-form {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 18px;
}
.reserve-form label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  background: rgba(10,7,6,0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--gold);
  background: rgba(10,7,6,0.9);
}
.reserve-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reserve-form button { margin-top: 8px; width: 100%; }
.reserve-info {
  display: flex; flex-direction: column; gap: 28px;
  align-items: center;
  text-align: center;
}
.reserve-info > .section-title { margin-bottom: 12px; }
.reserve-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  width: 100%;
  max-width: 720px;
}
.reserve-info-grid .info-item {
  border-left: none;
  border-top: 1px solid var(--gold);
  padding: 18px 0 0;
  text-align: center;
}
@media (max-width: 560px) {
  .reserve-info-grid { grid-template-columns: 1fr; gap: 20px; }
}
.info-item {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}
.info-item h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-item p, .info-item a { color: var(--cream); font-size: 1.0625rem; font-family: var(--font-serif); font-style: italic; line-height: 1.6; }

/* Responsive ------------------------------------------------------------ */

/* Mobile nav drawer (cross-page CSS, replaces inline JS styles) */
.nav-list.is-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(12, 6, 23, 0.97);
  padding: 24px var(--gutter);
  gap: 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-list.is-open li { width: 100%; }
.nav-list.is-open a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.nav-list.is-open a::after { display: none; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-list { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }

  .split,
  .editorial-grid,
  .feature-grid,
  .event-grid,
  .newsletter-inner,
  .reserve-layout,
  .reserve-hero-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse > .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Reservation: call card should come first on mobile */
  .reserve-call-card { order: -1; }
  .reserve-info .info-item p { font-size: 1rem; }
}

@media (max-width: 720px) {
  :root { --gutter: clamp(16px, 5vw, 32px); }
  .site-header { padding: 12px 0; }
  .brand .name { font-size: 18px; }
  .brand small { font-size: 9px; letter-spacing: 0.22em; }
  .brand .mark { width: 34px; height: 34px; font-size: 16px; }
  .brand .mark::before, .brand .mark::after { width: 3px; height: 3px; }

  /* Section padding pulled in */
  section { padding: clamp(56px, 10vw, 100px) 0; }
  .page-hero { padding: 130px 0 60px; }
  .section-head { margin-bottom: 36px; }

  .hero { padding-top: 100px; }
  .hero h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); line-height: 1.1; }
  .hero-meta { gap: 12px 20px; font-size: 11px; letter-spacing: 0.18em; }

  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; }

  /* Reserve a Table action chains in hero — keep buttons fluid */
  .reserve-actions { flex-direction: column; align-items: stretch; }
  .reserve-actions .btn { width: 100%; }

  .feature-card { min-height: 400px; padding: 28px; }
  .feature-card h3 { font-size: 1.625rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11px; }

  /* Newsletter pill → stack input above button */
  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 12px;
  }
  .newsletter-form input {
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    background: rgba(10,7,6,0.6);
  }
  .newsletter-form button {
    height: 48px;
    border-radius: 10px;
    width: 100%;
  }

  .masonry { columns: 2 140px; column-gap: 10px; }
  .masonry a { margin-bottom: 10px; }

  /* Menu cards full width with tighter body */
  .menu-card-v2 .body { padding: 22px 22px 24px; }
  .menu-card-v2 .label { font-size: 1.375rem; }
  .menu-card-v2 .footer { flex-wrap: wrap; gap: 10px; }

  /* Menu detail readability */
  .menu-section-head h3 { font-size: 1.375rem; }
  .menu-section-head .badge { font-size: 9px; padding: 4px 10px; letter-spacing: 0.22em; }
  .dish-name { font-size: 1.0625rem; padding-right: 8px; }
  .dish-price { font-size: 1.125rem; }
  .dish-desc { font-size: 1rem; line-height: 1.5; }
  .menu-price-tag { padding: 18px 32px; }
  .menu-price-tag .big { font-size: 2rem; }

  /* Reservation call card — keep phone from overflowing */
  .reserve-call-card { padding: 28px 20px; gap: 16px; }
  .reserve-call-card .big-phone {
    font-size: clamp(1.5rem, 7.5vw, 2.25rem);
    letter-spacing: 0;
  }
  .reserve-call-card .btn { width: 100%; min-height: 50px; font-size: 12px; }
  .reserve-info .section-title { font-size: 1.625rem !important; }

  /* Reservation map — shorter on mobile and force responsive iframe */
  .reserve-section iframe {
    height: 320px !important;
    width: 100% !important;
    max-width: 100%;
  }

  /* Editorial section: smaller quote */
  .editorial-quote { padding-left: 18px; font-size: 1rem; }
  .editorial-meta { grid-template-columns: 1fr; gap: 4px; }

  /* Header CTA: hide Reserve button text, show icon only */
  .nav-cta .btn-gold { padding: 0 18px; height: 44px; font-size: 11px; }

  /* Eyebrow lines shorter */
  .eyebrow::before, .eyebrow::after { width: 18px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.875rem, 10vw, 2.5rem); }
  .section-title { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .reserve-cta .section-title { font-size: clamp(1.875rem, 9vw, 2.5rem); }
  .reserve-cta p { font-size: 1rem; }

  /* Stack the entire nav row tightly */
  .nav-wrap { gap: 12px; }
  .brand small { display: none; }
  .nav-cta .btn-gold { padding: 0 14px; font-size: 10px; height: 40px; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Reservation map shorter */
  .reserve-section iframe { height: 280px !important; }

  /* Masonry single column */
  .masonry { columns: 1; }
}

/* Touch-target minimums everywhere */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav-list a { padding: 12px 0; }
}

/* =====================================================================
   Menu detail pages — dish lists with dotted leaders & price typography
   ===================================================================== */
.menu-detail {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(107,58,160,0.18), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(212,173,117,0.06), transparent 60%),
    var(--ink);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.menu-banner {
  text-align: center;
  padding: 60px 0 40px;
}
.menu-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 56px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(212,173,117,0.06), rgba(107,58,160,0.06));
  margin-top: 26px;
  position: relative;
}
.menu-price-tag::before,
.menu-price-tag::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  top: 50%; margin-top: -4px;
}
.menu-price-tag::before { left: -4px; }
.menu-price-tag::after  { right: -4px; }
.menu-price-tag .big {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--gold-2);
  font-weight: 500;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: 0.01em;
}
.menu-price-tag .sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.menu-fee {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet-2);
  border: 1px solid var(--line-violet);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(107,58,160,0.1);
}

.menu-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 80px);
  margin-top: 64px;
}
.menu-section { display: flex; flex-direction: column; gap: 22px; }
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.menu-section-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.menu-section-head .ornament {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.menu-section-head .badge {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-2);
  padding: 5px 12px;
  border: 1px solid var(--line-violet);
  border-radius: 999px;
  background: rgba(107,58,160,0.12);
  white-space: nowrap;
}

.dish-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 18px;
  row-gap: 6px;
}
.dish-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  position: relative;
  padding-right: 12px;
}
.dish-name::after {
  content: "";
  display: block;
  height: 1px;
  background-image: radial-gradient(circle, var(--gold-deep) 1px, transparent 1.2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  width: 0;
}
.dish-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}
.dish-leaders {
  flex: 1;
  height: 1px;
  margin-bottom: 6px;
  background-image: radial-gradient(circle, rgba(212,173,117,0.55) 1px, transparent 1.2px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}
.dish-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: 0.01em;
  font-feature-settings: "lnum" 1, "tnum" 1;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.dish-price.compact { font-size: 1.125rem; }
.dish-desc {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--cream-2);
  margin: 0;
  max-width: 56ch;
}
.dish.included .dish-leaders { display: none; }
.dish.included {
  grid-template-columns: 1fr;
}

@media (max-width: 720px) {
  .menu-sections { grid-template-columns: 1fr; }
  .dish-name { font-size: 1.125rem; }
  .dish-price { font-size: 1.25rem; }
}

/* Refined menu card (used on home + menus index) */
.menu-card-v2 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, border-color .3s ease, box-shadow .4s ease;
}
.menu-card-v2:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 28px 60px -20px rgba(107,58,160,0.45);
}
.menu-card-v2 .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.menu-card-v2 .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.menu-card-v2:hover .img-wrap img { transform: scale(1.06); }
.menu-card-v2 .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,6,23,0.75));
}
.menu-card-v2 .body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-card-v2 .label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.2;
  display: flex; align-items: baseline; gap: 12px;
}
.menu-card-v2 .label em {
  font-style: italic;
  color: var(--gold-2);
}
.menu-card-v2 .summary {
  font-size: 0.9375rem;
  color: var(--cream-2);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.55;
  font-weight: 400;
}
.menu-card-v2 .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.menu-card-v2 .price-pill {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--gold-2);
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.menu-card-v2 .price-pill small {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 6px;
  font-style: normal;
}
.menu-card-v2 .view-btn {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease, transform .25s ease;
}
.menu-card-v2:hover .view-btn { color: var(--gold-2); transform: translateX(4px); }

/* Reservation page contact block (no form) — full-width stacked */
.reserve-hero-block {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.reserve-call-card {
  background: linear-gradient(160deg, var(--ink-3) 0%, var(--violet-deep) 200%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px) clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
  align-items: center;          /* center content for the full-width layout */
  text-align: center;
}
.reserve-call-card > * { min-width: 0; max-width: 100%; }
.reserve-call-card .eyebrow { justify-content: center; }
.reserve-call-card .or-row { width: min(280px, 100%); }
.reserve-call-card .btn {
  width: min(340px, 100%);      /* contained width — looks better in wide card */
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0 20px;
  min-height: 52px;
  height: auto;
}
.email-link {
  display: inline-block;
  margin-top: -8px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--gold-2);
  font-family: var(--font-sans);
  border-bottom: 1px dotted rgba(212,173,117,0.4);
  padding-bottom: 2px;
  align-self: center;
  transition: color .2s ease, border-color .2s ease;
  overflow-wrap: anywhere;
  text-align: center;
  max-width: 100%;
}
.email-link:hover { color: var(--gold); border-color: var(--gold); }
.reserve-call-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent, rgba(212,173,117,0.4), transparent);
  z-index: -1;
}
.reserve-call-card .big-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 6.5vw, 3rem);
  color: var(--gold-2);
  letter-spacing: -0.005em;
  line-height: 1.1;
  font-feature-settings: "lnum" 1, "tnum" 1;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  word-break: keep-all;
}
.reserve-call-card .big-phone:hover { color: var(--gold); }
.reserve-call-card .call-after {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet-2);
}
.reserve-call-card .or-row {
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.reserve-call-card .or-row::before,
.reserve-call-card .or-row::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* Subtle reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
