/* ============================================================
   KINGTON - Speakeasy Moderne Restaurant
   Production CSS - Mobile First
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Colors - Dark palette */
  --black: #0a0a0a;
  --night: #111111;
  --coal: #1a1a1a;
  --charcoal: #2a2a2a;
  --graphite: #3a3a3a;
  --steel: #666666;
  --silver: #999999;
  --smoke: #cccccc;
  --cream: #f5f0eb;
  --white: #fafafa;

  /* Accent colors */
  --amber: #d4a843;
  --amber-light: #e8c66a;
  --amber-dark: #b8922f;
  --gold: #c9a84c;
  --burgundy: #722f37;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-2xl: 1320px;
  --gutter: 1rem;
  --header-height: 64px;
  --header-height-scrolled: 52px;
  --mobile-bar-height: 60px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.7);
  --shadow-amber: 0 4px 20px rgba(212, 168, 67, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-spring: cubic-bezier(0.25, 1, 0.5, 1); /* no bounce */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 550ms;

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-header: 500;
  --z-mobile-bar: 550;
  --z-burger-menu: 600;
  --z-toast: 700;
  --z-cursor: 800;
  --z-loader: 900;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  background-color: var(--black);
  overflow-x: hidden;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--amber-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 400;
}

::selection {
  background-color: var(--amber);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--night);
}

::-webkit-scrollbar-thumb {
  background: var(--graphite);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber-dark);
}


/* ----------------------------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------------------------- */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}

.t-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.t-body {
  font-family: var(--font-body);
  font-weight: 400;
}

.t-label {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--amber);
}

.t-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--amber);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
}

h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1em;
  color: var(--cream);
}

p:last-child {
  margin-bottom: 0;
}

.text-amber {
  color: var(--amber);
}

.text-cream {
  color: var(--cream);
}

.text-silver {
  color: var(--cream);
}

.text-center {
  text-align: center;
}

small,
.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--amber);
}

.divider-line {
  width: 60px;
  height: 1px;
  background-color: var(--amber);
  margin: var(--space-lg) 0;
}

.divider-line--center {
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-md);
}

.container--wide {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--lg {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background-color: var(--night);
}

.section--coal {
  background-color: var(--coal);
}

.section--charcoal {
  background-color: var(--charcoal);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ----------------------------------------------------------
   4. CUSTOM CURSOR (Desktop only)
   ---------------------------------------------------------- */
.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width var(--duration-fast) var(--ease-spring),
                height var(--duration-fast) var(--ease-spring),
                border-color var(--duration-fast) var(--ease-out),
                background-color var(--duration-fast) var(--ease-out);
    mix-blend-mode: difference;
    will-change: transform;
  }

  .cursor.cursor--hover {
    width: 56px;
    height: 56px;
    border-color: var(--amber-light);
    background-color: rgba(212, 168, 67, 0.1);
  }

  .cursor.cursor--click {
    width: 24px;
    height: 24px;
    background-color: rgba(212, 168, 67, 0.3);
  }

  .cursor.cursor--hidden {
    opacity: 0;
    width: 0;
    height: 0;
  }

  body {
    cursor: none;
  }

  a,
  button,
  [role="button"],
  input,
  select,
  textarea,
  label {
    cursor: none;
  }
}


/* ----------------------------------------------------------
   5. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--fade {
  transform: none;
}

.reveal--fade.revealed {
  transform: none;
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.revealed {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.revealed {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.revealed {
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* Parallax-ready */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: var(--z-base);
}


/* ----------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.btn:hover::after {
  transform: translateX(100%);
}

/* Primary: amber bg */
.btn-primary {
  background-color: var(--amber);
  color: var(--black);
  border: 1px solid var(--amber);
}

.btn-primary:hover {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: scale(0.97);
}

/* Outline: transparent + amber border */
.btn-outline {
  background-color: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.btn-outline:hover {
  background-color: rgba(212, 168, 67, 0.1);
  color: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.18);
}

.btn-outline:active {
  background-color: rgba(212, 168, 67, 0.15);
  transform: scale(0.97);
}

/* Call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}

.btn-call:hover {
  background-color: var(--amber);
  color: var(--black);
}

.btn-call .icon-phone {
  font-size: 0.875rem;
}

/* Block: full width */
.btn-block {
  display: flex;
  width: 100%;
}

/* Small variant */
.btn-sm {
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
  letter-spacing: 0.1em;
}

/* Large variant */
.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* Disabled state */
.btn:disabled,
.btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Icon-only button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}


/* ----------------------------------------------------------
   7. HEADER
   ---------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  transition: all var(--duration-normal) var(--ease-out);
  background-color: transparent;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(212, 168, 67, 0.1);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-height-scrolled);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header.scrolled::after {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: calc(var(--z-burger-menu) + 1);
}

.header__logo-img {
  height: 36px;
  width: auto;
  transition: height var(--duration-normal) var(--ease-out);
}

.header.scrolled .header__logo-img {
  height: 28px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* Desktop nav */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav-link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--amber);
  transition: width var(--duration-normal) var(--ease-out);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--amber);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__reserve-btn {
  display: none;
}

/* Burger button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: calc(var(--z-burger-menu) + 1);
  -webkit-tap-highlight-color: transparent;
}

.burger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--cream);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Fullscreen mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.98);
  z-index: var(--z-burger-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-3xl) var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 140ms; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 260ms; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 320ms; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 380ms; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 440ms; }

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--amber);
}

.mobile-menu__footer {
  margin-top: var(--space-3xl);
  text-align: center;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
  transition-delay: 500ms;
}

.mobile-menu.open .mobile-menu__footer {
  opacity: 1;
}

.mobile-menu__cta {
  margin-bottom: var(--space-lg);
}

.mobile-menu__info {
  font-size: 0.875rem;
  color: var(--cream);
}


/* ----------------------------------------------------------
   8. MOBILE BOTTOM BAR
   ---------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-bar-height);
  background-color: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  z-index: var(--z-mobile-bar);
  display: flex;
  padding: var(--space-sm) var(--gutter);
  gap: var(--space-sm);
  padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom));
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  padding: 0.625rem;
  transition: all var(--duration-fast) var(--ease-out);
  line-height: 1;
}

.mobile-bar__btn--reserve {
  background-color: var(--amber);
  color: var(--black);
}

.mobile-bar__btn--reserve:hover {
  background-color: var(--amber-light);
}

.mobile-bar__btn--call {
  background-color: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.mobile-bar__btn--call:hover {
  background-color: rgba(212, 168, 67, 0.1);
}

/* body padding controlled in bridge section below */


/* ----------------------------------------------------------
   9. HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-3xl) 0 calc(var(--space-3xl) + var(--mobile-bar-height));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.15) 70%,
    rgba(10, 10, 10, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 600px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.hero__title em {
  font-style: italic;
  color: var(--amber);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: calc(var(--mobile-bar-height) + var(--space-lg));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: var(--z-base);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
}


/* ----------------------------------------------------------
   10. MARQUEE / TICKER
   ---------------------------------------------------------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  background-color: var(--night);
}

.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  padding: 0 var(--space-xl);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
  transition: color var(--duration-fast) var(--ease-out);
}

.marquee__item:hover {
  color: var(--amber);
}

.marquee__separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ----------------------------------------------------------
   11. ABOUT SECTION (Asymmetric)
   ---------------------------------------------------------- */
.about {
  background-color: var(--black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--amber);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.about__text {
  padding: var(--space-lg) 0;
}

.about__text h2 {
  margin-bottom: var(--space-md);
}

.about__text p {
  margin-bottom: var(--space-md);
}

.about__signature {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--amber);
  margin-top: var(--space-lg);
}


/* ----------------------------------------------------------
   12. MENU SECTION
   ---------------------------------------------------------- */
.menu-section {
  background-color: var(--night);
}

.menu-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.menu-section__header h2 {
  margin-bottom: var(--space-sm);
}

/* Category tabs */
.menu-tabs {
  display: flex;
  overflow-x: auto;
  gap: var(--space-xs);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-xl);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1.25rem;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background-color: transparent;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.menu-tab.active {
  color: var(--black);
  background-color: var(--amber);
  border-color: var(--amber);
}

/* Menu items list */
.menu-list {
  max-width: 700px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: var(--space-2xl);
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  margin-bottom: var(--space-lg);
}

.menu-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color var(--duration-fast) var(--ease-out);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background-color: rgba(212, 168, 67, 0.03);
}

.menu-item__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  min-width: 20px;
  margin: 0 var(--space-sm);
  position: relative;
  top: -4px;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}

.menu-item__desc {
  width: 100%;
  font-size: 0.875rem;
  color: var(--cream);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.menu-item__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background-color: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-sm);
  margin-left: var(--space-sm);
  vertical-align: middle;
}


/* ----------------------------------------------------------
   13. EVENTS SECTION (Draggable Slider)
   ---------------------------------------------------------- */
.events {
  background-color: var(--black);
  overflow: hidden;
}

.events__header {
  margin-bottom: var(--space-xl);
}

.events__slider-wrap {
  position: relative;
}

.events__slider {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) 0 var(--space-lg);
  cursor: grab;
  user-select: none;
}

.events__slider::-webkit-scrollbar {
  display: none;
}

.events__slider.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.events__slider.dragging .event-card {
  pointer-events: none;
}

.event-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--coal);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.2);
}

.event-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.event-card__body {
  padding: var(--space-lg);
}

.event-card__date {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.event-card__desc {
  font-size: 0.875rem;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

/* Slider navigation arrows */
.events__nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.events__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--graphite);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  font-size: 1rem;
}

.events__nav-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.events__nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Slider progress bar */
.events__progress {
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 1px;
  margin-top: var(--space-md);
  overflow: hidden;
}

.events__progress-bar {
  height: 100%;
  background-color: var(--amber);
  border-radius: 1px;
  transition: width var(--duration-fast) var(--ease-out);
  width: 0%;
}


/* ----------------------------------------------------------
   14. SPECIALTY / RHUMS SECTION (Split)
   ---------------------------------------------------------- */
.specialty {
  background-color: var(--coal);
}

.specialty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.specialty__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.specialty__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.specialty__image-label {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

.specialty__text h2 {
  margin-bottom: var(--space-md);
}

.specialty__text p {
  margin-bottom: var(--space-md);
}

.specialty__list {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.specialty__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--cream);
}

.specialty__list-item::before {
  content: '';
  width: 8px;
  height: 1px;
  background-color: var(--amber);
  flex-shrink: 0;
}


/* ----------------------------------------------------------
   15. TESTIMONIALS (Staggered Cards)
   ---------------------------------------------------------- */
.testimonials {
  background-color: var(--night);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 67, 0.15);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--amber);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--cream);
  margin-top: 2px;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-top: var(--space-sm);
  color: var(--amber);
  font-size: 0.75rem;
}


/* ----------------------------------------------------------
   16. INFO SECTION (Contact + Map)
   ---------------------------------------------------------- */
.info {
  background-color: var(--black);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.info__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.info__block {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info__block:last-child {
  border-bottom: none;
}

.info__block-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.info__block p {
  font-size: 0.9375rem;
  color: var(--cream);
  line-height: 1.8;
}

.info__block a {
  color: var(--cream);
}

.info__block a:hover {
  color: var(--amber);
}

.info__hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: var(--cream);
}

.info__hours-item span:first-child {
  color: var(--cream);
}

.info__map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 300px;
}

.info__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
  transition: filter var(--duration-normal) var(--ease-out);
}

.info__map-wrap:hover iframe {
  filter: grayscale(0.3) brightness(0.7) contrast(1.1);
}


/* ----------------------------------------------------------
   17. CTA SECTION (Full-width)
   ---------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85),
    rgba(10, 10, 10, 0.9)
  );
}

.cta__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 600px;
  margin: 0 auto;
}

.cta__content h2 {
  margin-bottom: var(--space-md);
}

.cta__content p {
  color: var(--cream);
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}


/* ----------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------- */
.footer {
  background-color: var(--night);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo-img {
  height: 32px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--cream);
  line-height: 1.7;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--cream);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--amber);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background-color: rgba(212, 168, 67, 0.08);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--cream);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--cream);
}

.footer__legal a:hover {
  color: var(--amber);
}


/* ----------------------------------------------------------
   19. RESERVATION FORM
   ---------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream);
  background-color: var(--charcoal);
  border: 1px solid var(--graphite);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--cream);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cream);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: var(--space-xs);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e74c3c;
}

.form-helper {
  font-size: 0.75rem;
  color: var(--cream);
  margin-top: var(--space-xs);
}

/* Row layout for inline fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--cream);
  line-height: 1.5;
}

/* Multi-step form indicator */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.form-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--graphite);
  border: 1px solid var(--graphite);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-step.active .form-step__dot {
  background-color: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

.form-step.completed .form-step__dot {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
}

.form-step__line {
  width: 32px;
  height: 1px;
  background-color: var(--graphite);
}

.form-step.completed + .form-step .form-step__line,
.form-step.completed .form-step__line {
  background-color: var(--amber-dark);
}

.form-step__label {
  display: none;
}

/* Reservation modal/panel */
.reservation-panel {
  background-color: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  margin: 0 auto;
}

.reservation-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  margin-bottom: var(--space-xl);
}


/* ----------------------------------------------------------
   20. ADMIN TABLE STYLES
   ---------------------------------------------------------- */
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead {
  background-color: var(--charcoal);
}

.admin-table th {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--graphite);
}

.admin-table td {
  padding: var(--space-md) var(--space-lg);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background-color var(--duration-fast) var(--ease-out);
}

.admin-table tbody tr:hover {
  background-color: rgba(212, 168, 67, 0.03);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  line-height: 1;
}

.badge--success {
  background-color: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.badge--warning {
  background-color: rgba(241, 196, 15, 0.12);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.25);
}

.badge--danger {
  background-color: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

.badge--info {
  background-color: rgba(52, 152, 219, 0.12);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

.badge--neutral {
  background-color: rgba(153, 153, 153, 0.12);
  color: var(--cream);
  border: 1px solid rgba(153, 153, 153, 0.25);
}


/* ----------------------------------------------------------
   21. TOAST / NOTIFICATIONS
   ---------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--space-md));
  right: var(--gutter);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 380px;
  width: calc(100% - var(--gutter) * 2);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--charcoal);
  border: 1px solid var(--graphite);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toastSlideIn var(--duration-normal) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.toast--success::before {
  background-color: #2ecc71;
}

.toast--error::before {
  background-color: #e74c3c;
}

.toast--warning::before {
  background-color: #f1c40f;
}

.toast--info::before {
  background-color: #3498db;
}

.toast__icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast--success .toast__icon {
  color: #2ecc71;
}

.toast--error .toast__icon {
  color: #e74c3c;
}

.toast--warning .toast__icon {
  color: #f1c40f;
}

.toast--info .toast__icon {
  color: #3498db;
}

.toast__content {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 2px;
}

.toast__message {
  font-size: 0.8125rem;
  color: var(--cream);
  line-height: 1.4;
}

.toast__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color var(--duration-fast) var(--ease-out);
  border-radius: var(--radius-sm);
}

.toast__close:hover {
  color: var(--cream);
}

.toast.toast-exit {
  animation: toastSlideOut var(--duration-normal) var(--ease-out) forwards;
}

/* Toast progress bar (auto-dismiss) */
.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--amber);
  animation: toastProgress 5s linear forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
}

@keyframes toastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}


/* ----------------------------------------------------------
   22. LOADING SPINNER
   ---------------------------------------------------------- */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition: opacity var(--duration-slow) var(--ease-out);
}

.spinner-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--graphite);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 1.5px;
}

.spinner--lg {
  width: 56px;
  height: 56px;
  border-width: 3px;
}

.spinner-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Inline spinner inside buttons */
.btn .spinner {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
  border-color: rgba(10, 10, 10, 0.3);
  border-top-color: var(--black);
}


/* ----------------------------------------------------------
   23. IMAGE LAZY-LOAD PLACEHOLDER
   ---------------------------------------------------------- */
.img-lazy {
  position: relative;
  overflow: hidden;
  background-color: var(--charcoal);
}

.img-lazy img {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.img-lazy img.loaded {
  opacity: 1;
}

.img-lazy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--charcoal) 0%,
    var(--graphite) 50%,
    var(--charcoal) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s var(--ease-in-out) infinite;
}

.img-lazy.loaded::before {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/* ----------------------------------------------------------
   24. GALLERY SECTION
   ---------------------------------------------------------- */
.gallery {
  background-color: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-caption {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--cream);
}


/* ----------------------------------------------------------
   25. MODAL / OVERLAY
   ---------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.9);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

.modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.modal__close:hover {
  color: var(--cream);
  background-color: var(--charcoal);
}

.modal__body {
  padding: var(--space-xl);
}

.modal__footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
}


/* ----------------------------------------------------------
   26. UTILITY CLASSES
   ---------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }


/* ----------------------------------------------------------
   27. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* 480px - Larger phones */
@media (min-width: 480px) {
  :root {
    --gutter: 1.25rem;
  }

  .hero__actions {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .form-step__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
  }

  .form-step.active .form-step__label {
    color: var(--amber);
  }

  .event-card {
    flex: 0 0 300px;
  }

  .gallery__grid {
    gap: var(--space-md);
  }
}

/* 768px - Tablets */
@media (min-width: 768px) {
  :root {
    --gutter: 1.5rem;
    --header-height: 72px;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .about__grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-2xl);
  }

  .specialty__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
  }

  .specialty--reverse .specialty__grid {
    grid-template-columns: 7fr 5fr;
  }

  .specialty--reverse .specialty__image-wrap {
    order: 2;
  }

  .info__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Staggered testimonial layout */
  .testimonial-card:nth-child(even) {
    margin-top: var(--space-2xl);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .event-card {
    flex: 0 0 320px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding-bottom: var(--space-4xl);
  }
}

/* 1024px - Desktops */
@media (min-width: 1024px) {
  :root {
    --gutter: 2rem;
    --header-height: 80px;
    --header-height-scrolled: 60px;
  }

  /* Show desktop nav, hide burger */
  .header__nav {
    display: flex;
  }

  .header__reserve-btn {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  /* Hide mobile bottom bar */
  .mobile-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  /* Hero split layout */
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    min-height: 100vh;
  }

  .hero__content {
    max-width: 500px;
    padding: var(--space-4xl) 0;
    padding-left: var(--gutter);
    margin-left: max(var(--gutter), calc((100vw - var(--container-xl)) / 2));
  }

  .hero__scroll {
    bottom: var(--space-2xl);
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
  }

  .specialty__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .info__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card:nth-child(even) {
    margin-top: var(--space-3xl);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .event-card {
    flex: 0 0 340px;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .section--lg {
    padding: var(--space-5xl) 0;
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Asymmetric about image offset */
  .about__image-wrap {
    position: relative;
    margin-left: calc(-1 * var(--gutter));
  }
}

/* 1400px - Large desktops */
@media (min-width: 1400px) {
  :root {
    --gutter: 2.5rem;
  }

  .hero__content {
    max-width: 560px;
  }

  .event-card {
    flex: 0 0 380px;
  }

  .about__grid {
    gap: var(--space-4xl);
  }
}


/* ----------------------------------------------------------
   28. REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-bg {
    position: absolute;
    transform: none !important;
  }

  .marquee__track {
    animation: none;
  }

  .cursor {
    display: none;
  }
}


/* ----------------------------------------------------------
   29. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    padding: 0;
  }

  .header,
  .mobile-bar,
  .mobile-menu,
  .footer,
  .cursor,
  .spinner-overlay,
  .toast-container,
  .hero__scroll,
  .marquee,
  .events__nav,
  .events__progress,
  .btn,
  .modal-overlay {
    display: none !important;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    color: #000 !important;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  .menu-item {
    border-bottom: 1px solid #ccc;
  }

  .menu-item__price {
    color: #000 !important;
    font-weight: 700;
  }
}


/* ----------------------------------------------------------
   30. HIGH CONTRAST / DARK MODE OVERRIDES
   ---------------------------------------------------------- */
@media (prefers-contrast: high) {
  :root {
    --graphite: #555555;
    --steel: #888888;
    --silver: #bbbbbb;
  }

  .form-input,
  .form-select,
  .form-textarea {
    border-width: 2px;
  }

  .btn-outline {
    border-width: 2px;
  }

  .header__nav-link::after {
    height: 2px;
  }
}


/* ============================================================
   BRIDGE — Aligns HTML class names with design system
   All HTML class names used in templates are mapped here.
   ============================================================ */

/* --- No-JS fallback ---------------------------------------- */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* --- Custom cursor (created by JS, not static HTML) -------- */
.custom-cursor {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    will-change: transform;
    transition: width 150ms var(--ease-spring), height 150ms var(--ease-spring),
                background-color 150ms var(--ease-out);
  }
  .custom-cursor.cursor-hover {
    width: 8px;
    height: 8px;
    background-color: var(--amber-light);
  }
  .custom-cursor-follower {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: calc(var(--z-cursor) - 1);
    will-change: transform;
  }
  body { cursor: none; }
  a, button, [role="button"], input, select, textarea, label { cursor: none; }
}

/* --- Header aliases ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--duration-normal) var(--ease-out);
}

/* Scroll progress — ligne amber en haut de l'écran */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), var(--amber-light));
  z-index: calc(var(--z-header) + 1);
  transition: width 0.1s linear;
  pointer-events: none;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background-color: rgba(212, 168, 67, 0.1);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}
.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-height-scrolled);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.site-header.scrolled::after { opacity: 1; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: calc(var(--z-burger-menu) + 1);
}
.logo img {
  height: 36px;
  width: auto;
  transition: height var(--duration-normal) var(--ease-out);
}
.site-header.scrolled .logo img { height: 28px; }

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background-color: var(--amber);
  transition: width var(--duration-normal) var(--ease-out);
}
.main-nav a:hover,
.main-nav a.active { color: var(--amber); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Burger button */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: calc(var(--z-burger-menu) + 1);
  -webkit-tap-highlight-color: transparent;
}
.burger-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background-color: var(--cream);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  width: 100%;
  max-width: 280px;
}

/* --- Sticky bar (mobile only) ------------------------------ */
.sticky-bar { display: none; }

body { padding-bottom: 0; }

@media (max-width: 1023px) {
  .sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--mobile-bar-height);
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 168, 67, 0.15);
    z-index: var(--z-mobile-bar);
    padding: var(--space-sm) var(--gutter);
    padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom));
    gap: var(--space-sm);
  }
  body { padding-bottom: var(--mobile-bar-height); }
}

.sticky-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  padding: 0.625rem;
  transition: all var(--duration-fast) var(--ease-out);
  line-height: 1;
  text-decoration: none;
}
.sticky-bar-reserve {
  background-color: var(--amber);
  color: var(--black);
}
.sticky-bar-reserve:hover { background-color: var(--amber-light); color: var(--black); }
.sticky-bar-call {
  background-color: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.sticky-bar-call:hover { background-color: rgba(212,168,67,0.1); color: var(--amber); }

/* --- Show desktop nav at 1024px ---------------------------- */
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .burger-btn { display: none; }
}

/* --- Hero split layout ------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--black);
  overflow: hidden;
}
.hero-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--gutter) calc(var(--space-2xl) + var(--mobile-bar-height));
  gap: var(--space-xl);
  max-width: var(--container-xl);
  margin: 0 auto;
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--cream);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.hero-formule {
  font-size: 0.875rem;
  color: var(--amber);
  font-style: italic;
  margin-top: var(--space-sm);
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  max-height: 50vh;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-scroll {
  display: none;
  position: absolute;
  bottom: calc(var(--mobile-bar-height) + var(--space-lg));
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@media (min-width: 1024px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
    padding: 0 var(--gutter);
    gap: var(--space-3xl);
  }
  .hero-content {
    flex: 1;
    max-width: 560px;
    padding: var(--space-4xl) 0;
  }
  .hero-image {
    flex: 1;
    max-height: 100vh;
    border-radius: 0;
  }
  .hero-image img {
    aspect-ratio: unset;
    height: 100vh;
  }
  .hero-scroll { display: flex; }
}

/* --- Section utilities ------------------------------------- */
.section-dark { background-color: var(--night); }
.section-coal { background-color: var(--coal); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  display: block;
  margin-bottom: var(--space-sm);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: var(--container-md);
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

/* --- Marquee fix ------------------------------------------- */
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span:not(.marquee-dot) {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-xl);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
}
.marquee-dot {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-md);
  color: var(--amber);
}

/* --- About section ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-images {
  position: relative;
}
.about-img { border-radius: var(--radius-md); overflow: hidden; }
.about-img img { width: 100%; object-fit: cover; display: block; }
.about-img-main img { aspect-ratio: 4/3; }
.about-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--amber);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: var(--space-lg) 0; }
.about-content h2 { margin-bottom: var(--space-md); }

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-2xl);
  }
}

/* --- Menu preview ------------------------------------------ */
.menu-preview { padding: 0 var(--gutter); }
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--container-md);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .menu-items-grid { grid-template-columns: 1fr 1fr; gap: 0 var(--space-2xl); }
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  flex: 1;
}
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  flex: 1;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}
.menu-item-desc {
  width: 100%;
  font-size: 0.8125rem;
  color: var(--cream);
  margin-top: var(--space-xs);
}
.menu-item-alt {
  font-size: 0.75rem;
  color: var(--cream);
  margin-top: 2px;
  display: block;
}

/* Badges for menu items */
.badge-new {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background-color: var(--amber);
  color: var(--black);
  border-radius: var(--radius-sm);
  vertical-align: middle;
  margin-left: 4px;
}
.badge-veg {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  background-color: rgba(76,175,80,0.15);
  color: #4caf50;
  border-radius: var(--radius-sm);
  vertical-align: middle;
  margin-left: 4px;
}
.badge-spicy { vertical-align: middle; margin-left: 2px; font-size: 0.85em; }

/* Tab panels */
.menu-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.menu-tab-panel.active {
  display: block;
  animation: tab-in 0.3s var(--ease-out-quart) both;
}
@keyframes tab-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Events track ------------------------------------------ */
.events-slider {
  overflow: hidden;
  position: relative;
}
.events-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) var(--gutter) var(--space-lg);
  cursor: grab;
  user-select: none;
}
.events-track::-webkit-scrollbar { display: none; }
.events-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.event-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.event-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.event-card-content { padding: var(--space-lg); }
.event-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}
.event-recurrence {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}
.event-card-content p { font-size: 0.875rem; color: var(--cream); }

/* --- Split section (rhums) --------------------------------- */
.split-section { background-color: var(--coal); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.split-image { overflow: hidden; border-radius: var(--radius-md); }
.split-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.split-content h2 { margin-bottom: var(--space-md); }
.split-content p { margin-bottom: var(--space-md); }

@media (min-width: 768px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

/* --- Gallery --------------------------------------------- */
.gallery-preview { padding: 0 var(--gutter); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: var(--container-xl);
  margin: 0 auto;
}
.gallery-item { overflow: hidden; aspect-ratio: 1; background: var(--charcoal); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--cream);
  font-style: italic;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; } }

/* --- Info section ----------------------------------------- */
.info { padding: 0 var(--gutter); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: var(--container-xl);
  margin: 0 auto;
}
.info-col h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}
.hours-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
  color: var(--cream);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-day { color: var(--cream); }
.hours-note { font-size: 0.8125rem; color: var(--amber); margin-top: var(--space-md); font-style: italic; }
.info-map { margin-top: var(--space-lg); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.04); }
.info-map iframe { width: 100%; height: 280px; border: none; display: block; filter: grayscale(0.8) brightness(0.6) contrast(1.2); }

address { font-style: normal; }
address p { font-size: 0.9375rem; color: var(--cream); line-height: 1.8; margin-bottom: var(--space-sm); }
address a { color: var(--cream); }
address a:hover { color: var(--amber); }

@media (min-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

/* --- CTA section ----------------------------------------- */
.cta { padding: 0 var(--gutter); }
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: var(--space-md); }
.cta-content > p { color: var(--cream); margin-bottom: var(--space-xl); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background-color: var(--night);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-brand {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.footer-brand img { margin: 0 auto var(--space-sm); }
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.footer-col__title {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col ul a { font-size: 0.875rem; color: var(--cream); transition: color var(--duration-fast) var(--ease-out); }
.footer-col ul a:hover { color: var(--amber); }
.footer-col p { font-size: 0.875rem; color: var(--cream); line-height: 1.7; }
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--amber); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--cream);
  padding: 2px 0;
}
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--graphite);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all var(--duration-fast) var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
  background-color: rgba(212,168,67,0.08);
}
.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--cream); }

@media (min-width: 768px) {
  .footer-brand { text-align: left; }
  .footer-brand img { margin: 0 0 var(--space-sm); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* --- Page hero (inner pages) ------------------------------ */
.page-hero {
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--gutter) var(--space-2xl);
  background-color: var(--coal);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.page-hero-content {
  max-width: var(--container-xl);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { margin-bottom: var(--space-sm); }
.page-hero-content p { color: var(--cream); }

/* --- Reservation 3-step form ----------------------------- */
/* ============================================================
   RESERVATION — redesign complet
   ============================================================ */

.reservation-section { padding: var(--space-xl) var(--gutter) var(--space-3xl); }

.reservation-container {
  max-width: 660px;
  margin: 0 auto;
}

/* Form card */
.resa-form-wrapper {
  background-color: oklch(11% 0.006 60);
  border: 1px solid oklch(20% 0.006 60);
  border-radius: 16px;
  overflow: hidden;
}

/* ---- Step indicator ---- */
.resa-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px 0;
  margin-bottom: 28px;
}
.resa-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: oklch(45% 0.006 60);
  transition: color 200ms ease-out;
  white-space: nowrap;
}
.resa-step span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid oklch(30% 0.006 60);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 200ms ease-out;
  background: none;
  color: oklch(45% 0.006 60);
}
.resa-step-line {
  flex: 1;
  height: 1px;
  background: oklch(22% 0.006 60);
  margin: 0 8px;
}
.resa-step.active { color: var(--amber); }
.resa-step.active span {
  background: var(--amber);
  border-color: var(--amber);
  color: oklch(8% 0.008 60);
}
.resa-step.completed { color: oklch(60% 0.006 60); }
.resa-step.completed span {
  background: oklch(28% 0.015 60);
  border-color: oklch(40% 0.015 60);
  color: var(--amber);
}
/* Cacher le texte label sur très petit mobile */
@media (max-width: 380px) {
  .resa-step { font-size: 0; gap: 0; }
  .resa-step span { font-size: 0.7rem; }
}

/* ---- Panels ---- */
.resa-panel { display: none; }
.resa-panel.active { display: block; }
/* Panel 1 (date + heure) et panel 3 (récap) ont du padding direct */
.resa-panel[data-panel="1"],
.resa-panel[data-panel="3"] { padding: 0 24px 20px; }
.resa-panel h2 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* ---- Date + créneau (panel 1) ---- */
.resa-col-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 560px) {
  .resa-col-2 { grid-template-columns: 1fr 1fr; }
}

/* ---- Labels panneau ---- */
.resa-panel-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a84c;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e1e;
}

/* ---- Calendrier ---- */
.resa-calendar { user-select: none; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cream);
}
.cal-prev, .cal-next {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid oklch(28% 0.006 60);
  color: oklch(60% 0.006 60);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: none;
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.cal-prev:hover, .cal-next:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-name {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(42% 0.006 60);
  text-align: center;
  padding: 4px 0 6px;
}
.cal-day, .cal-empty {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--cream);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 150ms ease-out, color 150ms ease-out;
  border: 1px solid transparent;
  min-height: 34px;
}
.cal-day:hover:not(.cal-disabled) {
  background: oklch(20% 0.02 60);
  border-color: oklch(35% 0.025 60);
}
.cal-day.cal-selected {
  background: var(--amber);
  color: oklch(8% 0.008 60);
  font-weight: 700;
  border-color: var(--amber);
}
.cal-day.cal-disabled {
  color: oklch(30% 0.004 60);
  cursor: not-allowed;
}
.cal-day.cal-today:not(.cal-selected) {
  border-color: oklch(40% 0.025 60);
  color: var(--amber);
}
.cal-empty { pointer-events: none; }

/* ---- Créneaux horaires ---- */
.resa-slots { }
.resa-slots h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: oklch(50% 0.025 60);
  margin-bottom: 10px;
}
.resa-slots-hint {
  font-size: 0.8125rem;
  color: oklch(40% 0.006 60);
  font-style: italic;
  margin-top: 8px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.time-slot {
  padding: 9px 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid oklch(24% 0.006 60);
  border-radius: 8px;
  color: var(--cream);
  cursor: pointer;
  transition: all 150ms ease-out;
  background: none;
  letter-spacing: 0.02em;
}
.time-slot:hover {
  border-color: oklch(42% 0.03 60);
  background: oklch(16% 0.01 60);
  color: var(--amber);
}
.time-slot.selected {
  background: var(--amber);
  border-color: var(--amber);
  color: oklch(8% 0.008 60);
  font-weight: 700;
}
.time-slot.time-slot-past,
.time-slot[disabled] {
  opacity: 0.22;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
  text-decoration-color: oklch(30% 0.004 60);
  color: oklch(35% 0.004 60);
  border-color: oklch(16% 0.003 60);
  background: none;
}
.time-slot.time-slot-past:hover,
.time-slot[disabled]:hover {
  background: none;
  border-color: oklch(16% 0.003 60);
  color: oklch(35% 0.004 60);
}

/* ---- Nombre de couverts ---- */
.party-size-selector {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
@media (max-width: 420px) {
  .party-size-selector { grid-template-columns: repeat(5, 1fr); }
}
.party-btn {
  aspect-ratio: 1;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  color: #e8e0d0;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 150ms ease-out;
  background: none;
}
.party-btn:hover {
  border-color: oklch(42% 0.03 60);
  background: oklch(16% 0.01 60);
  color: var(--amber);
}
.party-btn.active {
  background: #d4a843;
  border-color: #d4a843;
  color: #0a0a0a;
  font-weight: 700;
}
.party-btn-large {
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}
.party-large-input {
  display: none;
  margin-top: 12px;
}
.party-large-input label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(50% 0.006 60);
  margin-bottom: 6px;
}
.party-large-input input {
  width: 100%;
  padding: 10px 14px;
  background: oklch(14% 0.006 60);
  border: 1px solid oklch(26% 0.006 60);
  border-radius: 8px;
  color: var(--cream);
  font-size: 0.9375rem;
  box-sizing: border-box;
  transition: border-color 150ms ease-out;
}
.party-large-input input:focus {
  outline: none;
  border-color: var(--amber);
}

/* ---- Séparateur section ---- */
.resa-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(42% 0.006 60);
  margin-bottom: 14px;
  margin-top: 24px;
}
.resa-section-label:first-child { margin-top: 0; }

/* ---- Blocs panel 2 ---- */
.resa-block {
  padding: 20px 24px;
  border-bottom: 1px solid oklch(17% 0.005 60);
}
.resa-block:last-child { border-bottom: none; padding-bottom: 4px; }

/* Grille 2 colonnes pour les coordonnées */
.resa-fields-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
@media (max-width: 500px) {
  .resa-fields-2col { grid-template-columns: 1fr; }
}
.resa-field-full { grid-column: 1 / -1; }

/* ---- Champs formulaire réservation (panel 2) ---- */
.resa-field {
  margin-bottom: 0;
}

.resa-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #999999;
  margin-bottom: 6px;
}
.resa-required {
  color: var(--amber);
  font-style: normal;
}
.resa-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.625rem;
  color: oklch(40% 0.006 60);
  font-style: italic;
}

.resa-input {
  width: 100%;
  padding: 11px 14px;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.resa-input::placeholder { color: #555555; font-style: italic; }
.resa-input:hover { border-color: #3a3a3a; }
.resa-input:focus {
  outline: none;
  border-color: #d4a843;
  box-shadow: 0 0 0 3px #d4a84328;
  background: #161616;
}
.resa-textarea { resize: vertical; min-height: 82px; }

/* ---- Récap (panel 3) ---- */
.resa-summary {
  background: oklch(14% 0.006 60);
  border: 1px solid oklch(20% 0.006 60);
  border-radius: 10px;
  padding: 4px 0;
  margin-bottom: 20px;
}
.resa-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid oklch(18% 0.004 60);
  font-size: 0.9rem;
}
.resa-summary-row:last-child { border-bottom: none; }
.resa-summary-row span {
  color: oklch(50% 0.006 60);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.resa-summary-row strong { color: var(--cream); font-weight: 500; }

/* Checkbox terms */
.form-group-checkbox {
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8125rem;
  color: oklch(55% 0.006 60);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: var(--amber);
  cursor: pointer;
}
.checkbox-label a { color: var(--amber); text-decoration: none; }

/* ---- Navigation steps ---- */
.resa-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid oklch(18% 0.004 60);
  background: oklch(9% 0.006 60);
}
.resa-nav .btn { min-width: 120px; }

/* ---- Success ---- */
.resa-success {
  text-align: center;
  padding: 48px 24px;
  animation: success-appear 0.4s ease-out both;
}
@keyframes success-appear {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.resa-success-icon {
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: oklch(18% 0.025 60);
}
.resa-success-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.14) 0%, transparent 70%);
  animation: halo-in 0.8s ease-out 0.2s both;
}
.resa-success-icon svg circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circle-draw 0.5s ease-out 0.1s forwards;
}
.resa-success-icon svg path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check-draw 0.35s ease-out 0.5s forwards;
}
@keyframes circle-draw { to { stroke-dashoffset: 0; } }
@keyframes check-draw  { to { stroke-dashoffset: 0; } }
@keyframes halo-in {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
.resa-success h2 { font-size: 1.25rem; margin-bottom: 8px; color: var(--cream); }
.resa-success p { color: oklch(55% 0.006 60); margin-bottom: 28px; font-size: 0.9375rem; }

/* Method picker — 3 options visible en haut de page */
.resa-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.resa-method-card {
  background-color: var(--coal);
  border: 1px solid oklch(22% 0.006 60);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  cursor: pointer;
  text-decoration: none;
  color: var(--cream);
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.resa-method-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}
.resa-method-form { border-color: oklch(55% 0.12 60); }
.resa-method-icon { color: var(--amber); }
.resa-method-card h3 { font-size: 1rem; font-weight: 500; margin: 0; }
.resa-method-card p { font-size: 0.8125rem; color: var(--graphite); margin: 0; line-height: 1.4; }
.resa-method-card .btn { pointer-events: none; margin-top: auto; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8125rem; }

@media (max-width: 640px) {
  .resa-methods { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .resa-methods { grid-template-columns: 1fr 1fr; }
  .resa-method-form { grid-column: 1 / -1; }
}

/* Legacy — garder btn-block */
.btn-block { display: flex; width: 100%; justify-content: center; }


/* ============================================================
   HOMEPAGE — Cinema hero overrides
   Force full-screen immersive hero, no split layout
   ============================================================ */

/* Hero background image — no border-radius, edge-to-edge */
.hero__bg-img {
  border-radius: 0;
}

/* Content wrapper uses .container for padding */
.hero__content.container {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  padding-bottom: calc(var(--space-3xl) + var(--mobile-bar-height));
}

/* Eyebrow label on hero */
.hero__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

/* Italic accent in hero title */
.hero__title em {
  font-style: italic;
  color: var(--amber);
}

/* Formule midi note */
.hero__formule {
  font-size: 0.875rem;
  color: var(--amber);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* Scroll indicator — show on desktop */
.hero__scroll {
  display: none;
}
@media (min-width: 1024px) {
  .hero__scroll {
    display: flex;
  }
}

/* ============================================================
   HOMEPAGE — Food photos grid (Marines)
   ============================================================ */
.food-photos { padding: 0 var(--gutter); }

.food-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.food-photo-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  background: var(--charcoal);
}

.food-photo-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.food-photo-item:hover img {
  transform: scale(1.04);
}

.food-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
}

@media (min-width: 640px) {
  .food-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .food-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .food-photo-item img {
    aspect-ratio: 3 / 4;
  }
}

/* ============================================================
   HOMEPAGE — Food hero plein écran (Chaumont)
   ============================================================ */
.food-hero {
  position: relative;
  overflow: hidden;
  background: var(--coal);
}

.food-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.food-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  display: flex;
  align-items: flex-end;
}

.food-hero-caption {
  padding: var(--space-2xl) var(--gutter);
  max-width: var(--container-md);
}

.food-hero-caption h2 {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.food-hero-caption p {
  color: var(--cream);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

@media (min-width: 768px) {
  .food-hero-img { aspect-ratio: 16 / 7; }
  .food-hero-caption { padding: var(--space-3xl) var(--space-2xl); }
}
@media (min-width: 1200px) {
  .food-hero-img { aspect-ratio: 21 / 8; }
}

/* ============================================================
   HOMEPAGE — About section update (note + text-only variant)
   ============================================================ */
.about-note {
  font-size: 0.875rem;
  color: var(--amber);
  font-style: italic;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Chaumont about — text only, centré */
.about-grid--text-only {
  grid-template-columns: 1fr;
  max-width: var(--container-md);
}

.about-content--wide {
  padding: var(--space-xl) 0;
}


/* ============================================================
   SITE IDENTITY — CHAUMONT OVERRIDES
   Marines is the default (:root). Chaumont overrides on body.
   All CSS custom properties cascade from body to all children.
   ============================================================ */

/* ---- Marines explicit marker (optional, for clarity) ---- */
body.site-marines {
  /* default palette — matches :root, no override needed */
}

/* ---- Chaumont — restaurant local premium, warm & earthy ---- */
body.site-chaumont {
  /* Background — warm dark brown instead of pure black */
  --black:     #130c07;
  --night:     #1c1208;
  --coal:      #271910;
  --charcoal:  #352415;
  --graphite:  #4a3520;

  /* Text — warm cream */
  --cream:     #faf4e8;

  /* Accent — terracotta amber (more orange, less gold) */
  --amber:       #d4883a;
  --amber-light: #e8a855;
  --amber-dark:  #a05e22;
  --gold:        #c97830;

  /* Shadows recalibrated for warm amber */
  --shadow-amber: 0 4px 20px rgba(212, 136, 58, 0.28);
}

/* ---- Chaumont — header & nav adjustments ---- */
body.site-chaumont .site-header {
  background-color: rgba(19, 12, 7, 0.92);
}

body.site-chaumont .site-header.scrolled {
  background-color: rgba(19, 12, 7, 0.98);
}

/* ---- Chaumont — hero label ---- */
body.site-chaumont .hero-label {
  letter-spacing: 0.25em;
}

/* ---- Chaumont — section-dark gets warmer bg ---- */
body.site-chaumont .section-dark {
  background-color: var(--night);
}

/* ---- Chaumont — btn-primary gets warmer amber ---- */
body.site-chaumont .btn-primary {
  background-color: var(--amber);
  border-color: var(--amber);
}
body.site-chaumont .btn-primary:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
}

/* ---- Chaumont — marquee dot color ---- */
body.site-chaumont .marquee-dot {
  color: var(--amber);
}

/* ---- Chaumont — menu tabs active indicator (outline style) ---- */
body.site-chaumont .menu-tab.active {
  background-color: transparent;
  border-color: var(--amber);
  color: var(--amber);
}

/* ---- Chaumont — footer background ---- */
body.site-chaumont .site-footer {
  background-color: var(--black);
}

/* ---- Chaumont — sticky bar ---- */
body.site-chaumont .sticky-bar-reserve {
  background-color: var(--amber);
  color: var(--black);
}

/* ============================================================
   MARINES HOMEPAGE — DA terrasse, village, lumière
   ============================================================ */

/* Logo round (Chaumont) */
.logo-img--round {
  border-radius: 50%;
  object-fit: cover;
}

/* Nom du site Chaumont dans la nav */
.logo-site-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold, #c9a84c);
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
}
.logo-site-name em {
  display: block;
  font-style: normal;
  font-size: .65rem;
  font-weight: 400;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .18em;
  color: var(--gold, #c9a84c);
  opacity: .75;
}

/* ---- Marines Hero ---- */
.m-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.m-hero__bg {
  position: absolute;
  inset: 0;
}
.m-hero__img,
.m-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
/* Overlay léger : la terrasse doit respirer */
.m-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 2, 0, 0.78) 0%,
    rgba(5, 2, 0, 0.55) 40%,
    rgba(5, 2, 0, 0.18) 75%,
    rgba(5, 2, 0, 0.0) 100%
  );
}
.m-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-xl) var(--space-3xl);
  max-width: 680px;
}

/* Hero entrance — éléments masqués jusqu'à body.loaded */
.m-hero__eyebrow,
.m-hero__title,
.m-hero__sub,
.m-hero__actions,
.m-hero__formule {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
body.loaded .m-hero__eyebrow  { opacity: 1; transform: none; transition-delay: 0.1s; }
body.loaded .m-hero__title    { opacity: 1; transform: none; transition-delay: 0.22s; }
body.loaded .m-hero__sub      { opacity: 1; transform: none; transition-delay: 0.36s; }
body.loaded .m-hero__actions  { opacity: 1; transform: none; transition-delay: 0.48s; }
body.loaded .m-hero__formule  { opacity: 1; transform: none; transition-delay: 0.58s; }

/* Image scale-in au chargement */
.m-hero__img,
.m-hero__video {
  transition: transform 1.4s var(--ease-out-expo);
  transform: scale(1.06);
}
body.loaded .m-hero__img,
body.loaded .m-hero__video { transform: scale(1); }

.m-hero__eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}
.m-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 var(--space-md);
}
.m-hero__title em {
  font-style: italic;
  color: var(--amber);
}
.m-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}
.m-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
  padding: .75rem 1.75rem;
  font-family: var(--font-condensed);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background .25s, border-color .25s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.m-hero__formule {
  margin-top: var(--space-lg);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.m-hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
  font-family: var(--font-condensed);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl;
}

/* ---- Marines Tagline strip ---- */
.m-tagline {
  background: var(--amber);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 var(--space-md);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-condensed);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.m-tagline__dot {
  opacity: .5;
}

/* ---- Marines About / Terrasse ---- */
.m-about {
  background: #f5ede0;
  padding: var(--space-3xl) var(--space-xl);
}
.m-about__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.m-about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.m-about__photos--single {
  grid-template-columns: 1fr;
}
.m-about__photo {
  overflow: hidden;
  border-radius: 3px;
}
.m-about__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.m-about__photo:hover img { transform: scale(1.04); }
.m-about__photo--main {
  grid-column: 1 / -1;
}
.m-about__photos--single .m-about__photo--main {
  grid-column: auto;
}
.m-about__photo--main img {
  aspect-ratio: 16/9;
}
.m-about__text {
  padding-left: var(--space-lg);
}
.m-about__text .section-label {
  color: #8b5e3c;
}
.m-about__text h2 {
  color: #1a1105;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: var(--space-sm) 0 var(--space-lg);
}
.m-about__text p {
  color: #4a3728;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: .95rem;
}
.m-about__btn {
  margin-top: var(--space-md);
  border-color: #8b5e3c;
  color: #8b5e3c;
}
.m-about__btn:hover {
  background: #8b5e3c;
  color: #fff;
}

/* ---- Marines About — variante texte ---- */
.m-about--text {
  background: #f5ede0;
  padding: var(--space-3xl) var(--space-xl);
}
.m-about--text .m-about__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.m-about--text .m-about__header {
  margin-bottom: var(--space-xl);
}
.m-about--text .m-about__header h2 {
  color: #1a1105;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: var(--space-xs);
}
.m-about--text .section-label {
  color: #8b5e3c;
}
.m-about__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}
.m-about__copy p {
  color: #4a3728;
  line-height: 1.78;
  margin-bottom: var(--space-md);
  font-size: .97rem;
}
.m-about__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-lg) 0 var(--space-md);
  font-size: .88rem;
}
.m-about__stars {
  color: #c9a84c;
  letter-spacing: 2px;
  font-size: .95rem;
}
.m-about__score {
  font-weight: 700;
  color: #1a1105;
  font-size: 1rem;
}
.m-about__reviews {
  color: #8b7060;
}
.m-about__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #efe6d6;
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(139,94,60,.12);
}
.m-about__facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4a3728;
  font-size: .875rem;
  line-height: 1.5;
}
.m-about__facts li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .65;
  color: #8b5e3c;
}

/* ---- Marines Food grid ---- */
.m-food {
  background: var(--coal);
  padding: var(--space-3xl) 0;
}
.m-food__header {
  text-align: center;
  padding: 0 var(--space-xl) var(--space-2xl);
}
.m-food__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-top: var(--space-sm);
}
.m-food__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}
.m-food__item {
  position: relative;
  overflow: hidden;
  background: #111;
}
.m-food__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  transition: transform .6s var(--ease-out);
}
.m-food__item--large img {
  aspect-ratio: 3/4;
}
.m-food__item:hover img { transform: scale(1.05); }
.m-food__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  font-family: var(--font-condensed);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
}
.m-food__cta {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl) 0;
}

/* ---- Marines Dessert + Menu ---- */
.m-dessert-menu {
  background: #1a1208;
  padding: var(--space-3xl) var(--space-xl);
}
.m-dessert-menu__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.m-dessert-menu__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-dessert-menu__photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.m-dessert-menu__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.m-dessert-menu__photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  font-family: var(--font-condensed);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.m-dessert-menu__carte .section-label { display: block; margin-bottom: var(--space-sm); }
.m-dessert-menu__carte h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: var(--space-md);
}
.m-dessert-menu__formule {
  font-size: .82rem;
  color: var(--amber);
  font-style: italic;
  margin-bottom: var(--space-lg);
}
.m-menu-cat { margin-bottom: var(--space-lg); }
.m-menu-cat--secondary { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--space-md); }
.m-menu-cat__title {
  font-family: var(--font-condensed);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.m-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.m-menu-item__name {
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}
.m-menu-item__price {
  font-family: var(--font-condensed);
  font-size: .82rem;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}
.m-dessert-menu__btn { margin-top: var(--space-xl); }

/* ---- Soirées en photos ---- */
.m-event-photos {
  padding: 60px 0 70px;
  background: var(--night);
  overflow: hidden;
}
.m-event-photos__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.m-event-photos__header {
  text-align: center;
  margin-bottom: 32px;
}
.m-event-photos__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.m-event-photos__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
}
.m-event-photos__title em { font-style: normal; color: var(--amber); }
.m-event-photos__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media(min-width: 768px)  { .m-event-photos__strip { grid-template-columns: repeat(4, 1fr); } }
@media(min-width: 1100px) { .m-event-photos__strip { grid-template-columns: repeat(6, 1fr); } }
.m-event-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--coal);
}
.m-event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.m-event-photo:hover img { transform: scale(1.08); }
.m-event-photos__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Création du moment — FAB ──────────────────────── */
.creation-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #1a1500;
  border: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212,168,67,.4);
  transition: transform .2s, box-shadow .2s, opacity .3s;
}
.creation-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(212,168,67,.55); }
.creation-fab--hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }
.creation-fab__text { display: none; }
@media(min-width: 480px) { .creation-fab__text { display: inline; } }

.creation-fab__pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: fab-pulse 2s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}

/* ── Création du moment — Popup ────────────────────── */
.creation-popup {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.creation-popup[hidden] { display: none; }
.creation-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(3px);
}
.creation-popup__card {
  position: relative;
  background: #1c1a16;
  border: 1px solid rgba(212,168,67,.25);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  animation: popup-in .38s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.creation-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background .2s;
}
.creation-popup__close:hover { background: rgba(255,255,255,.2); }
.creation-popup__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--amber);
  color: #1a1500;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}
.creation-popup__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.creation-popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.creation-popup__body {
  padding: 24px 24px 28px;
}
.creation-popup__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.creation-popup__desc {
  font-size: .88rem;
  color: rgba(245,240,235,.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.creation-popup__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 20px;
}
.creation-popup__cta { width: 100%; justify-content: center; }

/* ── Badge Nouveauté ────────────────────────────────── */
.badge-new {
  background: var(--amber);
  color: #1a1500;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
}

/* ---- Marines CTA Résa ---- */
.m-resa-cta {
  background: var(--amber);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}
.m-resa-cta__inner { max-width: 600px; margin: 0 auto; }
.m-resa-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black);
  margin-bottom: var(--space-sm);
}
.m-resa-cta p {
  color: rgba(0,0,0,.65);
  margin-bottom: var(--space-xl);
  font-size: .95rem;
}
.m-resa-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.m-resa-cta .btn-primary {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.m-resa-cta .btn-primary:hover {
  background: #333;
  border-color: #333;
}

/* ---- Marines Infos pratiques ---- */
.m-info {
  background: var(--charcoal);
  padding: var(--space-3xl) var(--space-xl);
}
.m-info__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}
.m-info__block h3 {
  font-family: var(--font-condensed);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}
.m-info__block p, .m-info__block a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  text-decoration: none;
}
.m-info__block a:hover { color: var(--amber); }
.m-info__hour {
  display: flex;
  justify-content: space-between;
  padding: .25rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ============================================================
   CHAUMONT HOMEPAGE — DA lounge sombre, studio food
   ============================================================ */

/* ---- Chaumont Hero façade ---- */
/* ═══════════════════════════════════════════════════════
   CHAUMONT — Hero cinématographique
   Composition éditoriale gauche / image respire à droite
   ═══════════════════════════════════════════════════════ */
.c-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.c-hero__bg {
  position: absolute;
  inset: 0;
}
.c-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* Overlay : zone sombre à gauche pour le texte, image respire à droite */
.c-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(5,5,5,.22)   0%,
      rgba(5,5,5,.08)  42%,
      transparent      70%
    ),
    linear-gradient(to top,
      rgba(0,0,0,.50) 0%,
      rgba(0,0,0,.12) 22%,
      transparent     42%
    );
}

/* Contenu — ancré à gauche, en bas */
.c-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(3rem, 7vh, 5.5rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 580px;
}

/* Ligne dorée + eyebrow */
.c-hero__pre {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.c-hero__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.c-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: .9;
}

/* Titre principal */
.c-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: .95;
  margin: 0 0 1.6rem;
  letter-spacing: -.01em;
}
.c-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-size: 1.15em;
}

/* Sous-titre */
.c-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

/* CTA */
.c-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.c-hero__link-menu {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.c-hero__link-menu:hover {
  color: var(--amber);
  gap: .7rem;
}
.c-hero__link-menu svg {
  transition: transform .2s;
}
.c-hero__link-menu:hover svg { transform: translateX(3px); }

/* Formule */
.c-hero__formule {
  margin-top: 1.8rem;
  font-size: .75rem;
  font-style: italic;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* Mention ville — texte vertical côté droit */
.c-hero__city {
  position: absolute;
  right: clamp(1.2rem, 3vw, 2.5rem);
  bottom: clamp(3rem, 7vh, 5.5rem);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Scroll indicator */
.c-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.c-hero__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(201,168,76,0), var(--amber));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(1); }
  50%       { opacity: .9;  transform: scaleY(1.15); }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .c-hero {
    align-items: flex-end;
    justify-content: center;
  }
  .c-hero__overlay {
    background:
      linear-gradient(to top,
        rgba(5,5,5,.55) 0%,
        rgba(5,5,5,.14) 32%,
        transparent     52%
      );
  }
  .c-hero__content {
    padding: 0 1.5rem 5rem;
    max-width: 100%;
    text-align: center;
  }
  .c-hero__pre { justify-content: center; }
  .c-hero__actions { justify-content: center; }
  .c-hero__city { display: none; }
  .c-hero__scroll { display: none; }
}

/* ---- Chaumont About section ---- */
.c-about {
  background: #0f0f12;
  padding: var(--space-3xl) var(--space-xl);
  border-top: 1px solid rgba(201,168,76,.08);
}
.c-about__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.c-about__header {
  margin-bottom: var(--space-xl);
}
.c-about__header h2 {
  color: #ede8e0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: var(--space-xs);
  line-height: 1.2;
}
.c-about__header .section-label {
  color: var(--gold);
  letter-spacing: .14em;
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 500;
}
.c-about__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}
.c-about__copy p {
  color: #b8b0a4;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: .97rem;
}
.c-about__btn {
  margin-top: var(--space-md);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  color: var(--gold);
}
.c-about__btn:hover {
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border-color: var(--gold);
}
.c-about__facts {
  list-style: none;
  padding: 24px 20px;
  margin: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-about__facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #a09890;
  font-size: .875rem;
  line-height: 1.5;
}
.c-about__facts li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .65;
  color: var(--gold);
}

/* ---- Chaumont Food studio grid ---- */
.c-food {
  background: #000;
  padding: var(--space-2xl) var(--space-xl);
}
.c-food__header {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.c-food__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: var(--space-sm) 0 var(--space-sm);
}
.c-food__sub {
  color: rgba(255,255,255,.50);
  font-size: .875rem;
  line-height: 1.6;
}
/* Grid 3 colonnes égales — compact, pas de placard */
.c-food__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.c-food__col {
  display: contents;
}
.c-food__item {
  position: relative;
  overflow: hidden;
  background: #111;
}
.c-food__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.c-food__item--feature img {
  aspect-ratio: 16/10;
}
.c-food__col .c-food__item img {
  aspect-ratio: 16/10;
}
.c-food__item:hover img { transform: scale(1.04); }
.c-food__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  font-family: var(--font-condensed);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.c-food__cta {
  text-align: center;
  padding-top: var(--space-2xl);
}

/* ---- Chaumont Bar ---- */
.c-bar {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.c-bar__bg {
  position: absolute;
  inset: 0;
}
.c-bar__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.c-bar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.65) 50%,
    rgba(0,0,0,.25) 100%
  );
}
.c-bar__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 520px;
}
.c-bar__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: var(--space-sm) 0 var(--space-lg);
}
.c-bar__content p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-size: .92rem;
}

/* ---- Chaumont Desserts duo ---- */
.c-desserts {
  background: #0a0a0a;
  padding: var(--space-3xl) var(--space-xl);
}
.c-desserts__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.c-desserts__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: var(--space-sm);
}
.c-desserts__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.c-desserts__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #111;
}
.c-desserts__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.c-desserts__item:hover img { transform: scale(1.04); }
.c-desserts__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  font-family: var(--font-condensed);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* ---- Chaumont Menu preview ---- */
.c-menu-preview {
  background: var(--charcoal);
  padding: var(--space-3xl) var(--space-xl);
}
.c-menu-preview__inner {
  max-width: 900px;
  margin: 0 auto;
}
.c-menu-preview__inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: var(--space-sm) 0 var(--space-md);
}
.c-menu-preview__formule {
  color: var(--amber);
  font-style: italic;
  font-size: .85rem;
  margin-bottom: var(--space-xl);
}
.c-menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.c-menu-tab-block { }
.c-menu-tab-title {
  font-family: var(--font-condensed);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.c-menu-items { display: flex; flex-direction: column; gap: .4rem; }
.c-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.c-menu-item__name {
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}
.c-menu-item__desc {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.62);
  margin-top: .15rem;
}
.c-menu-item__price {
  font-family: var(--font-condensed);
  font-size: .82rem;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}
.c-menu-preview__cta { margin-top: var(--space-xl); }

/* ---- Chaumont CTA Résa ---- */
.c-resa-cta {
  background: #0d0a06;
  border-top: 1px solid rgba(201,169,110,.1);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}
.c-resa-cta__inner { max-width: 560px; margin: 0 auto; }
.c-resa-cta__logo {
  margin-bottom: var(--space-xl);
}
.c-resa-cta__logo img {
  border-radius: 50%;
  object-fit: cover;
  opacity: .85;
}
.c-resa-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: var(--space-sm);
}
.c-resa-cta p {
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-xl);
  font-size: .9rem;
}
.c-resa-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.c-resa-cta__laddition {
  margin-top: var(--space-lg);
  font-size: .8rem;
}
.c-resa-cta__laddition a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.c-resa-cta__laddition a:hover { color: var(--amber); }

/* ---- Chaumont Infos ---- */
.c-info {
  background: #0a0806;
  border-top: 1px solid rgba(255,255,255,.04);
  padding: var(--space-3xl) var(--space-xl);
}
.c-info__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}
.c-info__block h3 {
  font-family: var(--font-condensed);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}
.c-info__block p, .c-info__block a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  text-decoration: none;
}
.c-info__block a:hover { color: var(--amber); }
.c-info__hour {
  display: flex;
  justify-content: space-between;
  padding: .25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

/* ============================================================
   RESPONSIVE — Marines & Chaumont homepages
   ============================================================ */
@media (max-width: 900px) {
  .m-about__grid { grid-template-columns: 1fr; }
  .m-about__text { padding-left: 0; }
  .m-about__body { grid-template-columns: 1fr; }
  .c-about__body { grid-template-columns: 1fr; }
  .m-food__grid { grid-template-columns: 1fr 1fr; }
  .m-food__item--large { grid-column: 1 / -1; }
  .m-food__item--large img { aspect-ratio: 16/9; }
  .m-dessert-menu__grid { grid-template-columns: 1fr; }
  .m-info__grid { grid-template-columns: 1fr; gap: var(--space-xl); }

  .c-food__grid { grid-template-columns: 1fr; }
  .c-food__col { flex-direction: row; }
  .c-food__item--feature img { aspect-ratio: 16/9; }
  .c-menu-tabs { grid-template-columns: 1fr; }
  .c-desserts__grid { grid-template-columns: 1fr; }
  .c-info__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}
@media (max-width: 600px) {
  .m-hero__content { padding: 0 var(--space-lg) var(--space-2xl); }
  .m-about__photos { grid-template-columns: 1fr; }
  .m-about__photo--main { grid-column: auto; }
  .m-food__grid { grid-template-columns: 1fr; }
  .m-food__item--large img,
  .m-food__item img { aspect-ratio: 4/3; }
  .m-tagline { gap: var(--space-sm); font-size: .72rem; }
  .m-resa-cta__actions,
  .c-resa-cta__actions,
  .c-hero__actions { flex-direction: column; align-items: center; }
  .c-food__col { flex-direction: column; }
  .c-desserts__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-HERO BACKGROUNDS — per-site differentiation
   ============================================================ */

/* --- La Carte (menu) -------------------------------------- */
.page-hero-menu {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/marines/uploads/2024/12/burger-kington.jpg');
  background-size: cover;
  background-position: center 50%;
}
.site-chaumont .page-hero-menu {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/chaumont/food/entrecote.jpg');
  background-position: center 50%;
}

/* --- Boissons (drinks) ------------------------------------ */
.page-hero-drinks {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/marines/uploads/2024/12/coktails-kington-marines.jpg');
  background-size: cover;
  background-position: center 50%;
}
.site-chaumont .page-hero-drinks {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/chaumont/bar/cocktails.jpg');
  background-position: center 50%;
}

/* --- Contact ---------------------------------------------- */
.page-hero-contact {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/marines/terrasse/kington-marines-terrasse.jpg');
  background-size: cover;
  background-position: center 60%;
}
.site-chaumont .page-hero-contact {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/chaumont/hero/facade-kington-lounge.jpg');
  background-position: center 50%;
}

/* --- Réservation ------------------------------------------ */
.page-hero-reservation {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/marines/hero/kington-marines-terrasse.jpg');
  background-size: cover;
  background-position: center 40%;
}
.site-chaumont .page-hero-reservation {
  background-image:
    linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.75) 40%, rgba(5,5,5,.40) 70%, rgba(5,5,5,.20) 100%),
    url('/assets-final/chaumont/desserts/profiteroles.jpg');
  background-position: center 50%;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-hero {
  padding: calc(var(--header-height) + var(--space-4xl)) var(--gutter) var(--space-3xl);
  text-align: center;
  background: var(--night);
}
.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin: var(--space-sm) 0;
}
.gallery-hero p {
  color: var(--cream);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.gallery-section {
  background: var(--black);
  padding: var(--space-3xl) var(--gutter);
}

.gallery-grid {
  columns: 2 240px;
  column-gap: 10px;
  max-width: var(--container-2xl);
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--coal);
}

.gallery-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--white);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
  filter: brightness(.85);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__stage {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  z-index: 9001;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  z-index: 9001;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

.lightbox__counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: .85rem;
  font-family: var(--font-body);
  letter-spacing: .05em;
}

/* Gallery CTA */
.gallery-cta {
  background: var(--coal);
  padding: var(--space-4xl) var(--gutter);
  text-align: center;
}
.gallery-cta__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.gallery-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}
.gallery-cta p {
  color: var(--cream);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.gallery-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .gallery-grid { columns: 3 200px; }
}
@media (min-width: 1024px) {
  .gallery-grid { columns: 4 220px; }
}
@media (max-width: 480px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
}

/* ============================================================
   RHUMS ARRANGÉS — Marines
   ============================================================ */

.m-rhums {
  background: var(--night);
  padding: var(--space-4xl) var(--gutter);
}
.m-rhums__grid {
  max-width: var(--container-xl);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
@media (min-width: 768px) {
  .m-rhums__grid { grid-template-columns: 1fr 1fr; }
}

.m-rhums__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.m-rhums__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.m-rhums__photo--main img { aspect-ratio: 3/4; }

.m-rhums__text .section-label { color: var(--amber); }
.m-rhums__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin: var(--space-sm) 0 var(--space-md);
}
.m-rhums__text p {
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.m-rhums__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.m-rhums__list li {
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  color: var(--amber);
  padding: .3rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: var(--font-body);
  letter-spacing: .04em;
}

/* ============================================================
   SOIRÉES — Marines
   ============================================================ */

.m-events {
  background: var(--black);
  padding: var(--space-4xl) var(--gutter);
  text-align: center;
}
.m-events__header {
  max-width: var(--container-md);
  margin: 0 auto var(--space-3xl);
}
.m-events__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin: var(--space-sm) 0 var(--space-md);
}
.m-events__header p {
  color: var(--cream);
  line-height: 1.7;
}
.m-events__cta {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Page-hero shared: ensure text stays legible over image */
.page-hero-menu,
.page-hero-drinks,
.page-hero-contact,
.page-hero-reservation {
  min-height: 42vh;
}
.page-hero-menu .page-hero-content h1,
.page-hero-drinks .page-hero-content h1,
.page-hero-contact .page-hero-content h1,
.page-hero-reservation .page-hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 4px rgba(0,0,0,.9);
}
.page-hero-menu .page-hero-content p,
.page-hero-drinks .page-hero-content p,
.page-hero-contact .page-hero-content p,
.page-hero-reservation .page-hero-content p {
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.85);
}
.page-hero-menu .section-label,
.page-hero-drinks .section-label,
.page-hero-contact .section-label,
.page-hero-reservation .section-label {
  color: var(--amber);
  text-shadow: 0 1px 6px rgba(0,0,0,.9);
}

/* ══════════════════════════════════════════════════════════
   Events Section v2 — Homepage
   ══════════════════════════════════════════════════════════ */
.m-events-v2 {
  background: var(--black);
  padding: var(--space-3xl) 0;
}
.m-events-v2__inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.m-events-v2__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.m-events-v2__label {
  display: inline-block;
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: var(--space-sm);
}
.m-events-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.m-events-v2__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber);
}
.m-events-v2__sub {
  color: var(--cream);
  opacity: .85;
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
}
.m-events-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: var(--space-2xl);
}
@media(max-width: 1100px) {
  .m-events-v2__grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 560px) {
  .m-events-v2__grid { grid-template-columns: 1fr; }
}
.m-event-card {
  background: var(--graphite);
  border: 1px solid rgba(212, 168, 67, .12);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart), border-color 0.35s ease;
}
.m-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(212, 168, 67, .25);
  border-color: rgba(212, 168, 67, .4);
}
.m-event-card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1a1a1a;
}
.m-event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo);
  display: block;
}
.m-event-card:hover .m-event-card__img img {
  transform: scale(1.07);
}
.m-event-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 100%);
  color: rgba(212, 168, 67, .3);
}
.m-event-card__body {
  padding: 20px 22px 24px;
}
.m-event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.m-event-card__tag {
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.m-event-card__badge-recurring,
.m-event-card__badge-site {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.m-event-card__badge-recurring {
  background: rgba(212, 168, 67, .15);
  color: var(--amber);
  border: 1px solid rgba(212, 168, 67, .25);
}
.m-event-card__badge-site {
  background: rgba(255, 255, 255, .07);
  color: var(--cream);
  opacity: .8;
  border: 1px solid rgba(255, 255, 255, .1);
}
.m-event-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 8px;
}
.m-event-card__desc {
  color: var(--cream);
  opacity: .7;
  font-size: .875rem;
  line-height: 1.55;
  margin: 0;
}
.m-events-v2__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .m-events-v2__grid {
    grid-template-columns: 1fr;
  }
  .m-events-v2__cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Carte unique : centrée et plus large */
.m-events-v2__grid:has(> :only-child) {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   Event cards — upcoming & past variants
   ══════════════════════════════════════════════════════════ */

/* UPCOMING — amber glow */
.m-event-card--upcoming {
  border-color: rgba(212, 168, 67, .5);
  box-shadow: 0 0 0 1px rgba(212, 168, 67, .18), 0 4px 24px rgba(212, 168, 67, .1);
}
.m-event-card--upcoming:hover {
  border-color: rgba(212, 168, 67, .75);
  box-shadow: 0 0 0 1px rgba(212, 168, 67, .35), 0 16px 48px rgba(212, 168, 67, .18);
}

/* PAST — desaturated */
.m-event-card--past {
  opacity: .82;
}
.m-event-card--past .m-event-card__img img {
  filter: grayscale(60%);
  transition: filter .4s ease, transform .4s ease;
}
.m-event-card--past:hover .m-event-card__img img {
  filter: grayscale(20%);
}
.m-event-card--past .m-event-card__title {
  color: var(--silver);
}

/* overlay badges on image */
.m-event-card__past-overlay,
.m-event-card__upcoming-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  pointer-events: none;
}
.m-event-card__img {
  position: relative; /* needed for absolute children */
}
.m-event-card__past-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
}
.m-event-card__badge-past {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--silver);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  backdrop-filter: blur(4px);
}
.m-event-card__upcoming-badge {
  align-items: flex-start;
  padding: 12px 12px 0;
}
.m-event-card__upcoming-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  inset: auto;
  background: rgba(10, 8, 0, .72);
  border: 1px solid rgba(212, 168, 67, .45);
  border-radius: 20px;
  color: var(--amber);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* Reserve link inside upcoming card */
.m-event-card__reserve-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--amber);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.m-event-card__reserve-link:hover {
  color: var(--amber-light);
}

/* Pulse dot — shared between card badge and popup */
.m-event-card__pulse-dot,
.m-event-popup__pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: kington-pulse 1.8s ease-in-out infinite;
}
@keyframes kington-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.6); }
}

/* ══════════════════════════════════════════════════════════
   Event Popup — next upcoming soirée
   ══════════════════════════════════════════════════════════ */
.m-event-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.m-event-popup[hidden] { display: none; }
.m-event-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.m-event-popup__box {
  position: relative;
  background: var(--coal);
  border: 1px solid rgba(212, 168, 67, .3);
  border-radius: 16px;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(212, 168, 67, .1);
  animation: popup-in .38s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(.93) translateY(12px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.m-event-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  cursor: pointer;
  transition: background .2s, color .2s;
  backdrop-filter: blur(4px);
}
.m-event-popup__close:hover {
  background: rgba(212, 168, 67, .2);
  color: var(--amber);
}
.m-event-popup__img {
  overflow: hidden;
  background: #000;
}
.m-event-popup__img img {
  display: block;
  max-width: 100%;
  max-height: min(52vh, 500px);
  width: auto;
  height: auto;
  margin: 0 auto;
}
.m-event-popup__video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.m-event-popup__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.m-event-popup__body {
  padding: 24px 28px 28px;
}
.m-event-popup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.m-event-popup__date {
  color: var(--amber);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin: 0 0 8px;
  opacity: .85;
}
.m-event-popup__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 12px;
}
.m-event-popup__desc {
  color: var(--smoke);
  opacity: .85;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 22px;
}
.m-event-popup__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.m-event-popup__dismiss {
  background: none;
  border: none;
  color: var(--smoke);
  font-size: .82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.m-event-popup__dismiss:hover { color: var(--cream); }
@media (max-width: 480px) {
  .m-event-popup__body { padding: 20px; }
  .m-event-popup__actions { flex-direction: column; align-items: stretch; }
  .m-event-popup__actions .btn { text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   Lead Capture Popup
   ══════════════════════════════════════════════════════════ */
#lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#lead-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#lead-modal {
  position: relative;
  background: var(--graphite);
  border: 1px solid rgba(212, 168, 67, .2);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  transform: translateY(24px);
  transition: transform .3s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
}
#lead-overlay.is-visible #lead-modal {
  transform: translateY(0);
}
#lead-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--cream);
  opacity: .5;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: opacity .2s;
}
#lead-close:hover {
  opacity: 1;
}
.lead-modal__body {
  padding: 36px 32px 28px;
}
.lead-modal__tag {
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.lead-modal__body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.25;
}
.lead-modal__intro {
  color: var(--cream);
  opacity: .75;
  font-size: .9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
#lead-form input[type="text"],
#lead-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: var(--cream);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
#lead-form input[type="text"]:focus,
#lead-form input[type="email"]:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, .08);
}
#lead-form input::placeholder {
  color: rgba(245, 240, 235, .4);
}
.lead-submit {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--amber);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.lead-submit:hover {
  background: #e0b450;
  transform: translateY(-1px);
}
.lead-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.lead-modal__success {
  color: #52c466;
  font-size: .95rem;
  text-align: center;
  padding: 12px 0;
}
.lead-modal__legal {
  color: var(--cream);
  opacity: .4;
  font-size: .72rem;
  text-align: center;
  margin-top: 14px;
}
@media (max-width: 480px) {
  .lead-modal__body {
    padding: 28px 20px 24px;
  }
}

/* =========================================
   Legal pages — mentions-legales, confidentialite, conditions
   ========================================= */
.legal-section {
  padding: 60px 20px 80px;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
}
.legal-container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #d4a843);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #1e1e1e;
}
.legal-container h2:first-child {
  margin-top: 0;
}
.legal-container h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream, #f0e8d6);
  margin: 1.5rem 0 .5rem;
}
.legal-container p {
  color: #c8bfa8;
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.legal-container ul {
  color: #c8bfa8;
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.legal-container ul li {
  margin-bottom: .4rem;
}
.legal-container a {
  color: var(--gold, #d4a843);
  text-decoration: none;
}
.legal-container a:hover {
  text-decoration: underline;
}
.legal-update {
  margin-top: 3rem !important;
  font-size: .8rem !important;
  color: #555 !important;
}

/* ── Urgence banner ─────────────────────────────────────────────────────── */
.urgence-banner {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: calc(var(--z-header) - 1);
}
.urgence-banner--warning { background: #92400e; color: #fef3c7; }
.urgence-banner--danger  { background: #7f1d1d; color: #fee2e2; }
.urgence-banner--info    { background: #1e3a5f; color: #dbeafe; }
.urgence-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgence-banner__text    { margin: 0; font-size: .88rem; line-height: 1.4; }
.urgence-banner__link    { font-size: .82rem; font-weight: 600; text-decoration: underline; white-space: nowrap; color: inherit; }


/* ----------------------------------------------------------
   PREFERS-REDUCED-MOTION — Accessibility
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  /* Hero entrance : montrer directement sans animation */
  .m-hero__eyebrow,
  .m-hero__title,
  .m-hero__sub,
  .m-hero__actions,
  .m-hero__formule,
  .m-hero__img,
  .m-hero__video {
    opacity: 1;
    transform: none;
  }

  .scroll-progress { display: none; }
}

/* ----------------------------------------------------------
   COOKIE BANNER
   ---------------------------------------------------------- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: oklch(12% 0.006 60);
  border-top: 1px solid oklch(20% 0.006 60);
  padding: 14px 20px;
  box-sizing: border-box;
}
.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--graphite);
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 6px 16px;
  font-family: var(--font-condensed);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .8; }
.cookie-btn--accept {
  background: var(--amber);
  color: oklch(8% 0.008 60);
  border: none;
}
.cookie-btn--refuse {
  background: transparent;
  color: var(--graphite);
  border: 1px solid oklch(30% 0.006 60);
}

/* ── Désactivation du curseur personnalisé (double pointeur gênant sur ordinateur) — 30/07/2026 ── */
.custom-cursor, .custom-cursor-follower, .cursor { display: none !important; }
html, body, p, div, span, section, header, footer, main, article, aside { cursor: auto !important; }
a, button, [role="button"], label, summary, .btn, [data-track] { cursor: pointer !important; }
input[type="text"], input[type="email"], input[type="tel"], textarea { cursor: text !important; }
input[type="date"], input[type="checkbox"], input[type="radio"], select { cursor: pointer !important; }

/* ── Confort tactile sur mobile (11/08/2026) ──────────────────────────────
   Les boutons de catégories de la carte étaient sous 12 px et sous 32 px de
   haut : illisibles et difficiles à toucher. Ils défilent horizontalement,
   ce qui reste voulu, mais avec une cible confortable et un repère de fin. */
@media (max-width: 768px) {
  .menu-anchors__inner {
    padding-bottom: 4px;
    scroll-padding-left: var(--gutter, 1.25rem);
  }
  /* Spécificité renforcée : la page carte redéfinit ce bouton en 0.7rem */
  .menu-anchors__inner .menu-anchor-btn,
  .menu-anchors .menu-anchor-btn {
    font-size: 0.8rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
  }

  /* Les liens de navigation et de pied de page sont en ligne :
     sans display flex, une hauteur minimale n'a aucun effet sur la zone tactile. */
  /* Le padding agrandit la zone tactile de façon fiable, quelle que soit la
     mise en page du lien (min-height reste sans effet sur un lien en ligne). */
  .main-nav a,
  .footer-col a,
  .footer-bottom a,
  .footer-brand a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .main-nav li { line-height: 1.2; }

  /* Bandeau cookies : deux boutons confortables */
  #cookieBanner button { min-height: 40px; padding: 10px 18px; }
  .menu-anchor-sep { align-self: center; }

  /* Toute action tactile garde une cible d'au moins 40 px */
  .btn, .menu-anchor-btn, .site-header a, .footer a { min-height: 40px; }
  .btn-sm { min-height: 36px; }
}

/* ── Conteneur de carte (11/08/2026) ──────────────────────────────────────
   .menu-carte n'avait aucune règle : sur la page boissons, les noms et les
   prix se retrouvaient collés au bord de l'écran. On lui donne la même
   gouttière et la même largeur de lecture que le reste du site. */
.menu-carte {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter, 1.25rem);
  padding-right: var(--gutter, 1.25rem);
}
/* La grille de cartes portait déjà sa propre gouttière : on évite de doubler */
.menu-carte .cocktail-grid { padding-left: 0; padding-right: 0; }

/* ── Carte des boissons : une seule et même boîte pour tout (11/08/2026) ──
   Rhums, bières, vins et spiritueux étaient en liste à points, cocktails en
   boîtes : présentation unifiée. Une boîte sans photo garde la même hauteur
   de lecture grâce à un peu plus d'air en tête. */
.cocktail-card--sans-photo .cocktail-card__body { padding-top: 1.4rem; }
.cocktail-card__alt {
  display: block;
  margin-top: .5rem;
  font-size: .78rem;
  color: rgba(245, 240, 235, .5);
}

/* Photo d'ambiance d'une rubrique (téléversée dans l'admin) */
.menu-cat-banner {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 1.4rem;
}

/* ── Cartes de la carte (plats, boissons, desserts) ───────────────────────
   Déplacé depuis la page boissons le 11/08/2026 : la carte food affichait des
   boîtes sans aucun style, faute d'hériter de ces règles. Une seule définition
   pour les deux pages = un seul design. */
/* ── Cocktail cards ────────────────────────────────────────────────────── */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 var(--gutter) var(--space-xl);
}
.cocktail-card {
  background: var(--coal);
  border: 1px solid rgba(255, 255, 255, .06);
  border-color: color-mix(in srgb, var(--amber) 14%, transparent);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
}
.cocktail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55), 0 0 0 1px color-mix(in srgb, var(--amber) 22%, transparent);
}
.cocktail-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cocktail-card__body {
  padding: 1rem 1.1rem 1.2rem;
}
.cocktail-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.cocktail-card__desc {
  font-size: .8rem;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
  line-height: 1.5;
  margin: 0 0 .75rem;
}
.cocktail-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cocktail-card__price {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: .03em;
}
.cocktail-card__badge {
  font-family: var(--font-condensed);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black, #0a0a0a);
  background: var(--amber);
  padding: .2rem .5rem;
  border-radius: 2px;
}

/* Sous-titre cocktails avec/sans alcool */
.cocktail-section-label {
  font-family: var(--font-condensed);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: .7;
  padding: 0 var(--gutter) .6rem;
  display: block;
}

/* --- Bas de page : la colonne Navigation se scinde en deux -----------------
   Sept liens d'un côté contre trois lignes de l'autre déséquilibraient le pied
   de page. Sur deux colonnes, les trois blocs retrouvent la même hauteur. */
@media (min-width: 768px) {
  .footer-col--nav ul {
    display: block;
    columns: 2;
    column-gap: var(--space-lg);
  }
  .footer-col--nav ul li {
    break-inside: avoid;
    margin-bottom: var(--space-sm);
  }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* Le clic le plus fréquent des visiteurs est « voir la carte » : il mérite
   un vrai bouton, pas un lien discret. */
.c-hero__btn-menu { border-color: rgba(255,255,255,.55); color: #fff; }
.c-hero__btn-menu:hover { border-color: var(--amber); color: var(--amber); }

/* La carte de soirée mène à sa page. Le lien couvre la carte sans rien
   changer à son apparence ; les liens internes (Réserver) restent au-dessus. */
.m-event-card { position: relative; }
.m-event-card__lien { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.m-event-card__lien:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.m-event-card__body a,
.m-event-card__reserve-link { position: relative; z-index: 2; }

/* Lien d'évitement : invisible tant qu'on ne navigue pas au clavier. */
.lien-evitement {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    padding: 12px 20px; background: var(--amber); color: #0a0a0a;
    font: 600 .9rem/1 system-ui, sans-serif; text-decoration: none;
    border-radius: 0 0 8px 0;
}
.lien-evitement:focus { left: 0; outline: 2px solid #fff; outline-offset: -4px; }

/* Popup d'inscription : piège à robots invisible, case de consentement. */
.lead-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.lead-consent {
    display: flex; align-items: flex-start; gap: 9px;
    margin: 4px 0 12px; text-align: left;
    font-size: .78rem; line-height: 1.45; color: rgba(245,240,235,.72);
    cursor: pointer;
}
.lead-consent input[type="checkbox"] {
    flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px;
    accent-color: var(--amber); cursor: pointer;
}
.lead-consent a { color: var(--amber); text-decoration: underline; }

/* Pont entre les deux adresses — discret, au-dessus de la ligne de bas de page. */
.footer-autre {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-autre__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}
.footer-autre p { margin: 0 0 var(--space-sm); max-width: 46ch; margin-inline: auto; }
.footer-autre__lien { text-decoration: underline; text-underline-offset: 3px; }
