/* ───────────── Chez Cami — design tokens ───────────── */
:root {
  /* core palette derived from the logo */
  --wine: #7a2024;
  --wine-deep: #5a1518;
  --wine-soft: #8f2d31;
  --gold: #b89968;
  --gold-soft: #d4b787;
  --cream: #f6efe4;
  --cream-warm: #efe5d2;
  --ink: #1a1411;
  --ink-soft: #3a2e28;
  --paper: #fbf7f0;
  --line: rgba(26, 20, 17, 0.12);

  --ff-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --ff-label: "Tenor Sans", "Cormorant Garamond", serif;
  --ff-body: "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ───────────── Typography ───────────── */
.eyebrow {
  font-family: var(--ff-label);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
}

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-feature-settings: "liga", "dlig";
}

.italic { font-style: italic; }

/* ───────────── Layout helpers ───────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

/* ───────────── Scroll reveal ───────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.18s; }
.reveal.delay-3 { transition-delay: 0.28s; }
.reveal.delay-4 { transition-delay: 0.38s; }

/* split-word reveal */
.split-word { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: 1.04; }
.split-word > span { display: inline-block; transform: translateY(110%); transition: transform 1.05s var(--ease-out); }
.split-word.in > span { transform: none; }
.split-word.d1 > span { transition-delay: 0.05s; }
.split-word.d2 > span { transition-delay: 0.14s; }
.split-word.d3 > span { transition-delay: 0.23s; }
.split-word.d4 > span { transition-delay: 0.32s; }
.split-word.d5 > span { transition-delay: 0.41s; }
.split-word.d6 > span { transition-delay: 0.5s; }

/* ───────────── Nav ───────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 14px 56px;
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--cream);
  transition: color 0.5s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.nav-brand-logo {
  height: 52px; width: auto; display: block;
  color: var(--cream);
  transition: color 0.5s var(--ease), height 0.5s var(--ease);
}
.nav.scrolled .nav-brand-logo { color: var(--wine); height: 42px; }
@media (max-width: 880px) {
  .nav-brand-logo { height: 40px; }
  .nav.scrolled .nav-brand-logo { height: 34px; }
}
.nav.scrolled .nav-brand { color: var(--wine); }
.nav-brand i { font-style: italic; color: var(--gold-soft); font-size: 14px; letter-spacing: 0; margin-right: 6px; }
.nav.scrolled .nav-brand i { color: var(--gold); }

.nav-links-desktop { display: flex; gap: 36px; align-items: center; }
.nav-links-desktop .nav-cta { margin-left: 20px; padding: 9px 24px; }
.nav-links-desktop a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 239, 228, 0.92);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav-links-desktop a { color: var(--ink-soft); }
.nav-links-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.nav-links-desktop a:hover::after { transform: scaleX(1); }
.nav-links-desktop a.nav-cta::after { display: none; }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--wine-deep) !important;
  border-radius: 4px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-1px); }
.nav.scrolled .nav-cta { background: var(--wine); border-color: var(--wine); color: var(--cream) !important; }
.nav.scrolled .nav-cta:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: var(--cream);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  z-index: 80;
  position: relative;
}
.nav.scrolled .nav-toggle { color: var(--wine); }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.nav-toggle.open { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { padding: 14px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links-desktop { display: none; }
  .nav-brand i { display: none; }
  .nav-brand { font-size: 18px; letter-spacing: 0.14em; }
  .nav-toggle { display: flex !important; }
}

/* ───────── Mobile drawer (sibling of nav, escapes its stacking context) ───────── */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  z-index: 9000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 880px) {
  .mobile-drawer { display: block; }
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 110px 28px 40px;
  gap: 0;
}
.mobile-drawer a {
  display: block;
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  text-decoration: none;
}
.mobile-drawer.open a { opacity: 1; transform: none; }
.mobile-drawer.open a:nth-child(1) { transition-delay: 0.12s; }
.mobile-drawer.open a:nth-child(2) { transition-delay: 0.18s; }
.mobile-drawer.open a:nth-child(3) { transition-delay: 0.24s; }
.mobile-drawer.open a:nth-child(4) { transition-delay: 0.30s; }
.mobile-drawer.open a:nth-child(5) { transition-delay: 0.36s; }
.mobile-drawer.open a.mobile-drawer-cta { transition-delay: 0.44s; }

.mobile-drawer-cta {
  margin-top: 32px !important;
  background: var(--wine);
  color: var(--cream) !important;
  font-family: var(--ff-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  text-align: center;
  padding: 22px 28px !important;
  border-radius: 4px;
  border-bottom: 0 !important;
}
.mobile-drawer-meta {
  margin-top: auto;
  padding-top: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-drawer-meta a {
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 0;
  opacity: 1 !important;
  transform: none !important;
}
.mobile-drawer-meta a:hover { color: var(--wine); }

/* Increase nav-toggle z-index above drawer so X stays clickable */
.nav-toggle { z-index: 9100 !important; }
.nav { z-index: 8000; }
@media (max-width: 880px) {
  .nav { z-index: 9050; } /* above drawer body, below toggle */
}

/* Lock body scroll when drawer open */
body.menu-open { overflow: hidden; }

/* ───────────── HERO ───────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--cream);
  background: var(--wine-deep);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: brightness(0.62) saturate(0.95);
}
@keyframes kenburns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(122, 32, 36, 0.12) 0%, rgba(26, 20, 17, 0.55) 100%),
    linear-gradient(180deg, rgba(26,20,17,0.35) 0%, rgba(26,20,17,0.0) 30%, rgba(26,20,17,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 140px 24px 100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--ff-display); font-style: italic;
  color: var(--gold-soft); font-size: 20px; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 48px; height: 1px; background: var(--gold-soft); opacity: 0.7;
}
.hero-logo {
  width: clamp(280px, 56vw, 720px);
  height: auto;
  color: var(--cream);
  margin: 36px auto 24px;
  display: block;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.35));
}
@media (max-width: 520px) { .hero-logo { width: 78vw; margin: 28px auto 18px; } }
.hero-sub {
  font-family: var(--ff-body);
  font-size: 13px; letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(246, 239, 228, 0.85);
  margin-bottom: 40px;
  margin-top: 8px;
}
.hero-tagline {
  font-family: var(--ff-display); font-style: italic; font-size: clamp(20px, 2.6vw, 28px);
  max-width: 640px; margin: 0 auto 56px; line-height: 1.5;
  color: rgba(246, 239, 228, 0.95);
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: 1px solid transparent;
  transition: all 0.45s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--wine-deep); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold-soft); border-color: var(--gold-soft); }
.btn-ghost { border-color: rgba(246,239,228,0.6); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--wine-deep); border-color: var(--cream); }
.btn-dark { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.btn-dark:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.btn-outline { border-color: var(--wine); color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--cream); }
.btn .arr { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(246,239,228,0.7);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero-scroll .line { width: 1px; height: 48px; background: rgba(246,239,228,0.5); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; left: 0; right: 0; height: 50%; background: var(--cream);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline {
  0% { top: -50%; } 100% { top: 100%; }
}

/* ───────────── Wine divider ───────────── */
.wine-rule {
  height: 6px;
  background: var(--wine);
  border-block: 1px solid var(--wine-deep);
}

/* ───────────── Sections ───────────── */
section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

.section-head { text-align: center; margin-bottom: 80px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 24px; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: 0.01em; line-height: 1.05; margin: 0;
  font-weight: 400; color: var(--wine);
}
.section-head h2 em { color: var(--gold); font-style: italic; }

/* ───────────── Histoire ───────────── */
.story { background: var(--paper); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-image {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.story-image:hover img { transform: scale(1.04); }
.story-image::after {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--gold); transform: translate(18px, 18px);
  pointer-events: none; z-index: -1;
}
.story-image-wrap { position: relative; }
.story-image-wrap::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold); transform: translate(20px, 20px);
  z-index: 0; pointer-events: none;
}
.story-text .eyebrow { margin-bottom: 22px; display: inline-block; }
.story-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08; color: var(--wine); font-weight: 400; margin: 0 0 32px;
}
.story-text h2 em { font-style: italic; color: var(--gold); }
.story-text p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }
.story-sign {
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--ff-display); font-style: italic; font-size: 22px; color: var(--wine);
}

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-image { aspect-ratio: 4 / 3; }
}

/* ───────────── Values strip ───────────── */
.values {
  background: var(--cream-warm); padding: 90px 0;
  border-block: 1px solid var(--line);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.value {
  padding: 0 40px; text-align: center; position: relative;
}
.value + .value { border-left: 1px solid var(--line); }
.value-num {
  font-family: var(--ff-display); font-style: italic;
  color: var(--gold); font-size: 28px; margin-bottom: 18px;
}
.value h3 {
  font-family: var(--ff-display); font-size: 26px; font-weight: 400; margin: 0 0 14px;
  color: var(--wine);
}
.value p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 48px; }
  .value + .value { border-left: 0; padding-top: 48px; border-top: 1px solid var(--line); }
}

/* ───────────── Menu teaser ───────────── */
.menu-teaser { background: var(--wine); color: var(--cream); overflow: hidden; }
.menu-teaser .section-head h2 { color: var(--cream); }
.menu-teaser .section-head h2 em { color: var(--gold-soft); }
.menu-teaser .eyebrow { color: var(--gold-soft); }
.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.menu-card {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--wine-deep); cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.menu-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(1.05);
  transition: transform 1.4s var(--ease-out), filter 0.6s var(--ease);
}
.menu-card:hover img { transform: scale(1.06); filter: brightness(0.85) saturate(1.1); }
.menu-card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(26,20,17,0.7) 100%);
}
.menu-card .eyebrow { color: var(--gold-soft); margin-bottom: 12px; }
.menu-card h3 {
  font-family: var(--ff-display); font-size: clamp(28px, 3.2vw, 42px); margin: 0 0 20px;
  color: var(--cream); font-weight: 400;
}
.menu-card .arr-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft);
}
.menu-card .arr-link .arr { transition: transform 0.4s var(--ease); }
.menu-card:hover .arr-link .arr { transform: translateX(6px); }

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { aspect-ratio: 5 / 4; }
}

/* ───────────── Gallery ───────────── */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--wine-deep);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(122, 32, 36, 0.6) 100%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ───────────── Events ───────────── */
.events { background: var(--cream-warm); }
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.events-image { position: relative; aspect-ratio: 5 / 6; overflow: hidden; }
.events-image img { width: 100%; height: 100%; object-fit: cover; }
.events-content .eyebrow { display: inline-block; margin-bottom: 22px; }
.events-content h2 {
  font-family: var(--ff-display); font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400; line-height: 1.08; color: var(--wine); margin: 0 0 28px;
}
.events-content h2 em { font-style: italic; color: var(--gold); }
.events-content p { color: var(--ink-soft); margin-bottom: 20px; max-width: 52ch; }

.events-stats { display: flex; gap: 48px; margin: 36px 0 40px; flex-wrap: wrap; }
.events-stat .num { font-family: var(--ff-display); font-size: 48px; color: var(--wine); line-height: 1; }
.events-stat .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }

@media (max-width: 880px) {
  .events-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ───────────── Contact ───────────── */
.contact { background: var(--ink); color: var(--cream); padding-top: 120px; padding-bottom: 0; }
.contact .section-head h2 { color: var(--cream); }
.contact .section-head h2 em { color: var(--gold-soft); }
.contact .eyebrow { color: var(--gold-soft); }

.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  padding-bottom: 100px;
}
.contact-info h3 {
  font-family: var(--ff-display); font-size: 22px; font-weight: 400;
  letter-spacing: 0.06em; color: var(--gold-soft); margin: 0 0 14px;
  text-transform: uppercase;
}
.contact-block { margin-bottom: 44px; }
.contact-block p { color: rgba(246,239,228,0.86); margin: 0 0 6px; font-size: 16px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-size: 28px;
  color: var(--cream); margin-top: 6px;
  border-bottom: 1px solid rgba(184,153,104,0.3);
  padding-bottom: 4px; transition: border-color 0.4s, color 0.4s;
}
.contact-link:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

.hours-table { width: 100%; }
.hours-row {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid rgba(246,239,228,0.1);
  font-size: 15px;
}
.hours-row .day { color: rgba(246,239,228,0.85); font-family: var(--ff-display); font-size: 18px; }
.hours-row .time { color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.hours-row.closed .time { color: rgba(246,239,228,0.5); font-style: italic; }
.hours-note { font-size: 12.5px; color: rgba(246,239,228,0.55); margin-top: 18px; font-style: italic; }

.contact-map {
  border-radius: 2px; overflow: hidden; aspect-ratio: 4 / 5;
  border: 1px solid rgba(246,239,228,0.12);
  position: relative;
  background: #f6efe4;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(0.95) brightness(0.9); }
.gmap-canvas { width: 100%; height: 100%; }
.gmap-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-warm);
  pointer-events: none;
}
.gmap-loading-pulse {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--wine);
  animation: gmapPulse 1.4s var(--ease) infinite;
}
@keyframes gmapPulse {
  0%, 100% { transform: scale(0.6); opacity: 0.4; }
  50% { transform: scale(1); opacity: 1; }
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; padding-bottom: 80px; }
  .contact-map { aspect-ratio: 4 / 3; }
}

/* ───────────── Footer ───────────── */
footer.foot {
  background: var(--ink); color: var(--cream);
  padding: 60px 0 32px; border-top: 1px solid rgba(246,239,228,0.08);
}
.foot-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px;
  align-items: center;
}
.foot-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.foot-logo { height: 56px; width: auto; color: var(--cream); }
.foot-brand-meta {
  font-family: var(--ff-display); font-size: 14px;
  color: rgba(246,239,228,0.65); letter-spacing: 0.08em;
}
.foot-brand-meta i { color: var(--gold-soft); font-size: 13px; }
@media (max-width: 880px) { .foot-brand { align-items: center; } }
.foot-social { display: flex; gap: 22px; justify-content: center; }
.foot-social a {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(246,239,228,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--wine-deep); }
.foot-social svg { width: 16px; height: 16px; }
.foot-news { font-size: 13px; color: rgba(246,239,228,0.7); text-align: right; }
.foot-news input {
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(246,239,228,0.3);
  padding: 10px 0; color: var(--cream); font: inherit;
  width: 220px; margin-right: 12px; outline: none;
}
.foot-news input::placeholder { color: rgba(246,239,228,0.4); }
.foot-news input:focus { border-bottom-color: var(--gold-soft); }
.foot-news button {
  background: none; border: 0; color: var(--gold-soft); cursor: pointer;
  font: inherit; letter-spacing: 0.24em; text-transform: uppercase; font-size: 11px;
  padding: 8px 0; border-bottom: 1px solid var(--gold-soft);
}

.foot-bottom {
  margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(246,239,228,0.08);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246,239,228,0.5);
}

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr; text-align: center; }
  .foot-news { text-align: center; }
  .foot-social { justify-content: center; }
}

/* ───────────── Logo lockup ───────────── */
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px;
  background: var(--wine); border-radius: 4px;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }

/* ───────────── Tweaks variants ───────────── */
body.theme-noir { --paper: #f1ece3; --cream-warm: #e6dfd0; }
body.theme-vert { --wine: #2d4a3a; --wine-deep: #1f3527; --wine-soft: #3a5c4a; }
body.theme-terre { --wine: #6e3a2b; --wine-deep: #4f2818; --wine-soft: #835244; --gold: #c69a55; --gold-soft: #e0bd7f; }

body.serifs-modern { --ff-display: "Bodoni Moda", "Cormorant Garamond", Georgia, serif; }
body.serifs-warm { --ff-display: "Fraunces", "Cormorant Garamond", Georgia, serif; }

/* ───────────── Reservation page ───────────── */
.res-page {
  padding: 180px 0 120px;
  background: var(--paper);
  min-height: 100vh;
  position: relative;
}
.res-page::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(122, 32, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.res-header { text-align: center; margin-bottom: 64px; position: relative; }
.res-header .eyebrow { display: inline-block; margin-bottom: 22px; }
.res-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.04;
  margin: 0 0 24px;
  color: var(--wine);
  font-weight: 400;
}
.res-header h1 em { font-style: italic; color: var(--gold); }
.res-lead {
  max-width: 560px; margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--ff-display); font-style: italic;
  font-size: 20px; line-height: 1.5;
}

.res-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px;
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  box-shadow: 0 30px 80px -40px rgba(122, 32, 36, 0.15), 0 1px 0 rgba(255,255,255,0.6) inset;
}
@media (max-width: 640px) { .res-form { padding: 28px 22px; } }

.res-field { display: flex; flex-direction: column; gap: 10px; }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .res-row { grid-template-columns: 1fr; gap: 22px; } }

.res-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  display: flex; align-items: baseline; gap: 10px;
}
.res-label-meta {
  font-family: var(--ff-display); font-style: italic; font-size: 13px;
  letter-spacing: 0.02em; text-transform: none; color: var(--gold);
}

.res-input {
  font: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.res-input::placeholder { color: rgba(26, 20, 17, 0.32); }
.res-input:hover { border-color: rgba(122, 32, 36, 0.3); }
.res-input:focus {
  border-color: var(--wine);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(122, 32, 36, 0.08);
}
.res-input.err { border-color: #c0463a; background: rgba(192, 70, 58, 0.04); }
.res-textarea { resize: vertical; min-height: 90px; font-family: var(--ff-body); }

/* Segmented service toggle */
.res-segmented {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream-warm);
  border-radius: 4px; padding: 4px;
  border: 1px solid var(--line);
}
.res-segmented-3 { grid-template-columns: 1fr 1fr 1fr; }
.res-segmented button {
  font: inherit; background: transparent; border: 0; cursor: pointer;
  padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border-radius: 3px;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  font-family: var(--ff-display); font-size: 18px;
}
.res-segmented button span {
  font-family: var(--ff-body); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: inherit; opacity: 0.7;
}
.res-segmented button:hover { color: var(--wine); }
.res-segmented button.active {
  background: var(--wine); color: var(--cream);
  box-shadow: 0 2px 10px -2px rgba(122, 32, 36, 0.3);
}

/* Large group → call us */
.res-largegroup {
  text-align: center;
  padding: 40px 24px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.res-largegroup h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 40px);
  color: var(--wine);
  line-height: 1.1;
}
.res-largegroup p { color: var(--ink-soft); max-width: 32em; }
.res-largegroup-phone {
  font-family: var(--ff-display);
  font-size: clamp(34px, 7vw, 54px);
  color: var(--wine);
  letter-spacing: 0.02em;
  margin: 6px 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.res-largegroup-phone:hover { color: var(--wine-deep); }
.res-largegroup-note {
  font-family: var(--ff-display); font-style: italic;
  font-size: 20px; color: var(--wine) !important; opacity: 0.9;
}

/* Guests stepper */
.res-stepper {
  display: grid; grid-template-columns: 48px 1fr 48px;
  border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; align-items: stretch;
  background: var(--paper);
}
.res-stepper button {
  font: inherit; background: transparent; border: 0; cursor: pointer;
  font-size: 24px; color: var(--wine);
  transition: background 0.3s var(--ease);
}
.res-stepper button:hover { background: var(--cream-warm); }
.res-stepper-value {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  padding: 14px 0;
  font-family: var(--ff-display); font-size: 22px; color: var(--ink);
  border-inline: 1px solid var(--line);
}
.res-stepper-value span {
  font-family: var(--ff-body); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
}

/* Time slots */
.res-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 10px;
}
.res-slot {
  font: inherit; cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 8px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  transition: all 0.25s var(--ease);
}
.res-slot:hover:not(:disabled) {
  border-color: var(--wine); color: var(--wine);
  background: rgba(122, 32, 36, 0.04);
}
.res-slot.active {
  background: var(--wine); color: var(--cream); border-color: var(--wine);
  box-shadow: 0 4px 14px -4px rgba(122, 32, 36, 0.4);
}
.res-slot:disabled { opacity: 0.4; cursor: not-allowed; }

/* Occasion chips */
.res-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.res-chip {
  font: inherit; cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px; color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.res-chip:hover { border-color: var(--gold); color: var(--wine); }
.res-chip.active {
  background: var(--wine); color: var(--cream); border-color: var(--wine);
}

/* Divider */
.res-divider {
  display: flex; align-items: center; gap: 18px;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin: 12px 0 4px;
}
.res-divider::before, .res-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* Warnings */
.res-warn {
  font-family: var(--ff-display); font-style: italic; font-size: 14px;
  color: #c0463a; padding: 6px 2px 0;
}
.res-warn.warn-soft { color: var(--gold); }

/* Actions */
.res-actions {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.res-actions .btn-primary {
  padding: 18px 36px; font-size: 12.5px;
  background: var(--wine); color: var(--cream); border-color: var(--wine);
}
.res-actions .btn-primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--cream); }
.res-actions .btn-primary:disabled {
  opacity: 0.4; cursor: not-allowed; background: var(--ink-soft); border-color: var(--ink-soft);
}
.res-fineprint {
  font-size: 12.5px; color: var(--ink-soft); text-align: center; margin: 0; max-width: 480px;
}
.res-fineprint a { color: var(--wine); border-bottom: 1px solid currentColor; }

/* Confirmation */
.res-confirm { padding: 200px 0 140px; text-align: center; }
.res-confirm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 64px 48px;
  box-shadow: 0 30px 80px -40px rgba(122, 32, 36, 0.15);
}
@media (max-width: 640px) { .res-confirm-card { padding: 44px 22px; } }
.res-confirm-icon { color: var(--gold); margin-bottom: 24px; }
.res-confirm-icon svg { width: 64px; height: 64px; margin: 0 auto; display: block; }
.res-confirm .eyebrow { display: inline-block; margin-bottom: 18px; }
.res-confirm h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400; color: var(--wine); margin: 0 0 22px;
}
.res-confirm h1 em { font-style: italic; color: var(--gold); }
.res-confirm-lead {
  font-family: var(--ff-display); font-style: italic; font-size: 20px;
  color: var(--ink-soft); max-width: 520px; margin: 0 auto 40px; line-height: 1.5;
}
.res-summary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--cream-warm);
  border-radius: 4px;
  padding: 8px;
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: left;
}
.res-summary > div {
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.res-summary span {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft);
}
.res-summary strong {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500; color: var(--wine);
}
.res-confirm-note { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 32px; }
.res-confirm-note a { color: var(--wine); border-bottom: 1px solid currentColor; }

@media (max-width: 520px) {
  .res-summary { grid-template-columns: 1fr; }
}

/* ───────────── Menu page ───────────── */
.menu-page {
  padding: 180px 0 120px;
  background: var(--paper);
  position: relative;
}
.menu-page::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(122, 32, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.menu-page-header { text-align: center; max-width: 760px; margin: 0 auto 88px; position: relative; }
.menu-page-header .eyebrow { display: inline-block; margin-bottom: 22px; }
.menu-page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--wine);
  font-weight: 400;
}
.menu-page-header h1 em { font-style: italic; color: var(--gold); }
.menu-page-lead {
  font-family: var(--ff-display); font-style: italic;
  font-size: 20px; line-height: 1.55; color: var(--ink-soft);
  max-width: 620px; margin: 0 auto;
}

.menu-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 120px;
}
@media (max-width: 880px) { .menu-page-grid { grid-template-columns: 1fr; gap: 64px; } }

.menu-doc {
  display: flex; flex-direction: column; gap: 24px;
}
.menu-doc-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.menu-doc-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 400; color: var(--wine);
  margin: 0 0 14px; line-height: 1.05;
}
.menu-doc-head p { color: var(--ink-soft); margin: 0; max-width: 44ch; }

.menu-doc-image {
  display: block; position: relative; padding: 0; cursor: zoom-in;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  font: inherit;
  width: 100%;
}
.menu-doc-image img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 24px;
  background: #fff;
  transition: transform 0.8s var(--ease-out);
}
.menu-doc-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -30px rgba(122, 32, 36, 0.3);
}
.menu-doc-image:hover img { transform: scale(1.02); }
.menu-doc-hover {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(122, 32, 36, 0.85) 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.menu-doc-image:hover .menu-doc-hover { opacity: 1; }
.menu-doc-hover span {
  background: var(--gold); color: var(--wine-deep);
  padding: 10px 18px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Highlights */
.menu-highlights {
  background: var(--cream-warm);
  border-radius: 4px;
  padding: 64px 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-bottom: 120px;
  position: relative;
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .menu-highlights { grid-template-columns: 1fr; gap: 48px; padding: 48px 28px; }
}
.menu-highlight { text-align: center; }
.menu-highlight-num {
  font-family: var(--ff-display); font-style: italic;
  color: var(--gold); font-size: 32px;
  display: block; margin-bottom: 16px;
}
.menu-highlight h3 {
  font-family: var(--ff-display); font-size: 24px;
  font-weight: 400; color: var(--wine); margin: 0 0 12px;
}
.menu-highlight p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }

/* Soirée */
.menu-soiree {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 120px;
  background: var(--wine); color: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
}
.menu-soiree-image {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
  padding: 0; border: 0; background: transparent; cursor: zoom-in;
  font: inherit; color: inherit; display: block;
}
.menu-soiree-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.menu-soiree-image:hover img { transform: scale(1.03); }
.menu-soiree-image:hover .menu-doc-hover { opacity: 1; }
.menu-soiree-content { padding: 64px 56px 64px 0; }
.menu-soiree-content .eyebrow { color: var(--gold-soft); display: inline-block; margin-bottom: 16px; }
.menu-soiree-content h2 {
  font-family: var(--ff-display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 400; line-height: 1.05; margin: 0 0 22px; color: var(--cream);
}
.menu-soiree-content h2 em { font-style: italic; color: var(--gold-soft); }
.menu-soiree-content p { color: rgba(246,239,228,0.85); margin: 0 0 14px; max-width: 50ch; }
.menu-soiree-cta a { color: var(--gold-soft); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }
.menu-soiree-cta a:hover { color: var(--cream); border-bottom-color: var(--cream); }
@media (max-width: 880px) {
  .menu-soiree { grid-template-columns: 1fr; gap: 0; }
  .menu-soiree-content { padding: 40px 32px 48px; }
  .menu-soiree-image { aspect-ratio: 4 / 3; }
}

/* CTA block */
.menu-cta-block { text-align: center; padding: 40px 0; }
.menu-cta-block h2 {
  font-family: var(--ff-display); font-size: clamp(34px, 4vw, 56px);
  font-weight: 400; color: var(--wine); margin: 0 0 18px;
}
.menu-cta-block h2 em { font-style: italic; color: var(--gold); }
.menu-cta-block p { color: var(--ink-soft); max-width: 480px; margin: 0 auto; }

/* Lightbox */
.menu-lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 10, 8, 0.94);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 32px;
  cursor: zoom-out;
  animation: fadeIn 0.3s var(--ease);
}
.menu-lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: zoomIn 0.4s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.menu-lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px;
  background: rgba(246, 239, 228, 0.1);
  border: 1px solid rgba(246, 239, 228, 0.3);
  color: var(--cream);
  border-radius: 999px;
  font-size: 24px; cursor: pointer; line-height: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--wine-deep); }


