/* =================================================================
   LES TAMARIS — CHEZ RAYMOND
   Design system 2026 · institution provençale bouillabaisse
   Palette : ivoire chaud + cuivre + Méditerranée + safran
   ================================================================= */

/* ----- Variables ----- */
:root {
  /* Couleurs principales */
  --color-bg: #F4ECD8;
  --color-bg-elevated: #E5D2B3;
  --color-text: #1F1610;
  --color-text-muted: #5C4A38;
  --color-accent: #A6562F;
  --color-accent-soft: #C97A4A;
  --color-accent-2: #1B3E5C;
  --color-accent-3: #D9A841;
  --color-border: #C9B58A;
  --color-charcoal: #1F1610;
  --color-ivory: #F4ECD8;
  --color-white-warm: #FFFAF0;

  /* Typo */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hand: "Italianno", cursive;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 2px 8px rgba(31, 22, 16, 0.06);
  --sh-2: 0 12px 36px rgba(31, 22, 16, 0.10);
  --sh-3: 0 28px 80px rgba(31, 22, 16, 0.14);
  --sh-glow: 0 8px 24px rgba(166, 86, 47, 0.35);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Section padding */
  --sp: clamp(4rem, 8vw, 7rem);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* subtle gradient ambient */
  background-image:
    radial-gradient(circle at 15% 10%, rgba(217, 168, 65, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(27, 62, 92, 0.05) 0%, transparent 40%);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

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

ul { list-style: none; }

::selection { background: var(--color-accent); color: var(--color-ivory); }

/* ----- Container & utilities ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 1rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* Eyebrow / caption */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.eyebrow--accent { color: var(--color-accent); }
.eyebrow--light { color: var(--color-accent-3); }

/* Headings */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}
.h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}
.h2--light { color: var(--color-ivory); }
.h2--light em { color: var(--color-accent-3); }

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}

p { margin-bottom: 1rem; max-width: 60ch; }
p:last-child { margin-bottom: 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head .eyebrow { display: block; }
.section-head__lede {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 60ch;
  margin: 1rem auto 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 1.0625rem 1.875rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-ivory);
  box-shadow: 0 4px 16px rgba(166, 86, 47, 0.25);
}
.btn--primary:hover {
  background: #B5683A;
  box-shadow: var(--sh-glow);
  transform: translateY(-2px);
}
.btn--primary:hover svg { transform: translateX(4px); }
.btn--primary svg { transition: transform 0.25s var(--ease-out); }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--ghost:hover {
  background: var(--color-text);
  color: var(--color-ivory);
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-ivory);
  border-color: rgba(244, 236, 216, 0.5);
}
.btn--ghost-light:hover {
  background: rgba(244, 236, 216, 0.12);
  border-color: var(--color-ivory);
}

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(244, 236, 216, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 181, 138, 0.3);
  transition: padding 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled {
  padding: 0.625rem 0;
  background: rgba(244, 236, 216, 0.92);
  box-shadow: var(--sh-1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.nav__brand-signature {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-top: -2px;
  margin-left: 0.25rem;
}

.nav__menu {
  display: none;
  gap: 1.875rem;
}
.nav__menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}
.nav__menu a:hover { color: var(--color-accent); }
.nav__menu a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta { display: none; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px 7px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 6rem 2rem 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s var(--ease-out);
}
.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.drawer__menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.875rem;
  color: var(--color-text);
}
.drawer__cta {
  margin-top: 1.5rem;
  font-style: normal;
}
.drawer__phone {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--color-accent);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 8rem) 0 4rem;
  background: var(--color-charcoal);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 22, 16, 0.25) 0%, rgba(31, 22, 16, 0.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-ivory);
  max-width: 900px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.85);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--color-ivory);
}
.hero__title-display {
  display: inline-block;
  /* subtle copper glow */
  text-shadow: 0 4px 32px rgba(31, 22, 16, 0.6);
}
.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.25vw, 1.75rem);
  line-height: 1.35;
  color: rgba(244, 236, 216, 0.92);
  max-width: 36ch;
  margin: 0 auto 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 236, 216, 0.7);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(244, 236, 216, 0.5);
  display: block;
  animation: scroll-pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-text em { font-style: italic; color: var(--color-accent-3); }

/* ============= STRIP CREDENTIALS ============= */
.strip {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-charcoal), #2A1F18, var(--color-charcoal));
  border-top: 1px solid rgba(166, 86, 47, 0.3);
  border-bottom: 1px solid rgba(166, 86, 47, 0.3);
  padding: 1.25rem 0;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scroll-left 50s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-ivory);
}
.marquee__track span {
  display: inline-block;
}
.marquee__sep {
  color: var(--color-accent);
  font-style: normal;
  font-size: 1.5rem;
  line-height: 0;
  position: relative;
  top: -2px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.strip__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
}
.badge__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--color-accent-3);
  font-variant-numeric: tabular-nums;
}
.badge__num small {
  font-size: 0.55em;
  color: rgba(244, 236, 216, 0.65);
  font-weight: 500;
}
.badge__icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent-3);
  line-height: 1;
}
.badge__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.7);
  max-width: 160px;
}

/* ============= HISTOIRE ============= */
.histoire {
  position: relative;
  padding: var(--sp) 0;
  overflow: hidden;
  background: var(--color-bg);
}
.parallax-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.parallax-layer--1 {
  opacity: 0.08;
  filter: sepia(0.6) saturate(0.7);
}
.parallax-layer--2 {
  background: radial-gradient(circle at 70% 30%, rgba(217, 168, 65, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(166, 86, 47, 0.06) 0%, transparent 50%);
  opacity: 1;
  z-index: 1;
}

.histoire__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.histoire__figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.histoire__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.histoire__figure figcaption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory);
  background: rgba(31, 22, 16, 0.6);
  padding: 0.625rem 1rem;
  border-radius: var(--r-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 1.875rem 2rem;
  border-left: 2px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(166, 86, 47, 0.06) 0%, transparent 100%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.4;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

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

/* Compteurs */
.counters {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}
.counter {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.counter__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.counter__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============= BOUILLABAISSE ============= */
.bouillabaisse {
  padding: var(--sp) 0;
  background: var(--color-bg-elevated);
  position: relative;
  overflow: hidden;
}
.bouillabaisse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 168, 65, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.bouillabaisse__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.bouillabaisse__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 5;
}
.bouillabaisse__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ken-burns {
  animation: ken-burns 22s var(--ease-in-out) alternate infinite;
  transform-origin: center center;
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Price card */
.price-card {
  background: var(--color-white-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 1.875rem;
  margin-top: 2rem;
  box-shadow: var(--sh-1);
}
.price-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.price-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.price-card__sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  max-width: 24ch;
}
.price-card__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-card__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.price-card__unit {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ============= CARTE ============= */
.carte {
  padding: var(--sp) 0;
  background: var(--color-bg);
}
.carte__group {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.carte__group:last-child { margin-bottom: 0; }
.carte__group .h3 {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
.carte__group .h3::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
}
.carte__group-sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.carte__grid {
  display: grid;
  gap: 1.5rem;
}
.carte__grid--4 { grid-template-columns: repeat(1, 1fr); }
.carte__grid--3 { grid-template-columns: repeat(1, 1fr); }
.carte__grid--2-wide { grid-template-columns: repeat(1, 1fr); }

.dish-card {
  background: var(--color-white-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 181, 138, 0.4);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.dish-card--feature {
  border: 2px solid var(--color-accent);
  background: linear-gradient(180deg, var(--color-white-warm) 0%, #FAF0DE 100%);
}
.dish-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-elevated);
}
.dish-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.dish-card:hover .dish-card__media img { transform: scale(1.05); }

.dish-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish-card__body--solo { padding-top: 2rem; padding-bottom: 2rem; }
.dish-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(166, 86, 47, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.625rem;
  align-self: flex-start;
}
.dish-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.dish-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.dish-card__price {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding-top: 0.875rem;
  align-self: flex-start;
}
.dish-card__price--big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-accent);
}
.dish-card__price--big small {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Menu fixed card */
.menu-fixed {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #2D211A 100%);
  color: var(--color-ivory);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.menu-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(217, 168, 65, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.menu-fixed__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.menu-fixed__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-3);
  margin-bottom: 0.5rem;
}
.menu-fixed__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-ivory);
  margin-bottom: 0.75rem;
}
.menu-fixed__desc {
  color: rgba(244, 236, 216, 0.8);
  font-size: 0.9375rem;
  max-width: 48ch;
}
.menu-fixed__price {
  text-align: left;
}
.menu-fixed__amount {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--color-accent-3);
  font-variant-numeric: tabular-nums;
}
.menu-fixed__unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.7);
}

/* Cave */
.cave {
  margin-top: 3rem;
  padding: 1.875rem 2rem;
  background: rgba(166, 86, 47, 0.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(166, 86, 47, 0.15);
  text-align: center;
}
.cave .eyebrow { margin-bottom: 0.75rem; }
.cave__list {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.cave__note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============= LIEU SECTION ============= */
.lieu {
  padding: var(--sp) 0;
  background: var(--color-bg-elevated);
}
.lieu__video {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2.5rem;
  aspect-ratio: 16 / 9;
  background: var(--color-charcoal);
}
.lieu__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lieu__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
  color: var(--color-text);
  max-width: 56ch;
  margin: 0 auto 3rem;
  text-align: center;
}
.lieu__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.lieu__detail {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-2);
  transition: transform 0.4s var(--ease-out);
}
.lieu__detail:hover { transform: translateY(-4px); }
.lieu__detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.lieu__detail:hover img { transform: scale(1.05); }
.lieu__detail figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ivory);
  background: rgba(31, 22, 16, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
}

/* ============= AVIS ============= */
.avis {
  padding: var(--sp) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.avis__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}
.avis__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.avis__note-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.avis__note-value small {
  font-size: 0.55em;
  color: var(--color-text-muted);
  font-weight: 500;
}
.avis__note-icon {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--color-accent-3);
  line-height: 1;
}
.avis__note-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: 160px;
}
.avis__note--badge .avis__note-value { color: var(--color-text); font-size: 1.875rem; }

.avis__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.avis-card {
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid rgba(201, 181, 138, 0.4);
  border-radius: var(--r-md);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--sh-1);
}
.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.avis-card__stars {
  color: var(--color-accent-3);
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.avis-card__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 0;
}
.avis-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.avis-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}
.avis-card__source {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.avis__more {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--color-accent);
}
.avis__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.125rem;
  transition: gap 0.25s var(--ease-out);
}
.avis__more a:hover { gap: 0.625rem; }

/* ============= RÉSERVER CTA (gradient mesh) ============= */
.reserver {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--color-charcoal);
  overflow: hidden;
}
.mesh {
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 200deg at 30% 40%,
    var(--color-accent) 0deg,
    var(--color-accent-2) 120deg,
    var(--color-accent-3) 240deg,
    var(--color-accent) 360deg
  );
  filter: blur(80px);
  opacity: 0.45;
  animation: mesh-spin 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes mesh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.reserver__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.reserver__content .h2 {
  margin-bottom: 1.25rem;
}
.reserver__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.65);
  margin: 0 auto 1.25rem;
}
.reserver__copy {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(244, 236, 216, 0.85);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.reserver__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.reserver__address {
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.6);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-3);
  margin-bottom: 1.25rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--color-ivory);
  letter-spacing: -0.01em;
  margin-bottom: 0.125rem;
}
.footer__brand-signature {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--color-accent-3);
  line-height: 1;
  margin: -0.5rem 0 1rem 0.5rem;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(244, 236, 216, 0.7);
}
.footer__tagline--sub {
  color: rgba(244, 236, 216, 0.55);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
.footer__address a {
  color: rgba(244, 236, 216, 0.85);
  display: inline-block;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 0.9375rem;
}
.footer__address a:hover { color: var(--color-accent-3); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: rgba(244, 236, 216, 0.8);
  border-bottom: 1px dashed rgba(244, 236, 216, 0.08);
}
.footer__hours li:last-of-type { border-bottom: none; }
.footer__hours li span:first-child {
  font-weight: 500;
  color: rgba(244, 236, 216, 0.95);
}
.footer__hours-closed { color: var(--color-accent-soft); }
.footer__hours-closed span { color: var(--color-accent-soft) !important; }
.footer__season {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-accent-3);
}
.footer__season--note {
  color: rgba(244, 236, 216, 0.65);
  margin-top: 0.25rem;
  font-style: normal;
}

.footer__map {
  margin-bottom: 2.5rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 236, 216, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: center;
}
.footer__legal,
.footer__credits {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 216, 0.5);
}
.footer__credits a {
  color: var(--color-accent-3);
  border-bottom: 1px solid rgba(217, 168, 65, 0.4);
  padding-bottom: 1px;
}
.footer__credits a:hover { color: var(--color-ivory); border-color: var(--color-ivory); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-ivory);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  box-shadow: var(--sh-3);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s var(--ease-out);
}
.sticky-cta.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Custom cursor */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  display: none;
  top: 0; left: 0;
}
.cursor-outer {
  width: 32px; height: 32px;
  border: 1.5px solid var(--color-accent);
  margin: -16px;
  transition: transform 0.15s linear, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.cursor-inner {
  width: 6px; height: 6px;
  background: var(--color-accent);
  margin: -3px;
}
.cursor.is-active.cursor-outer { width: 56px; height: 56px; margin: -28px; }

/* ============= RESPONSIVE ============= */

/* Tablet 768px+ */
@media (min-width: 768px) {
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }

  .histoire__grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }

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

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

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

  .menu-fixed { padding: 3rem 3.5rem; }
  .menu-fixed__inner { flex-direction: row; align-items: center; }

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

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

  .footer__grid { grid-template-columns: 1.3fr 1fr 1.3fr; gap: 3rem; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__bottom .footer__credits { text-align: right; }

  .sticky-cta { display: none !important; }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .carte__grid--4 { grid-template-columns: repeat(4, 1fr); }
  .carte__grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Hover-only environments (desktop with mouse) */
@media (hover: hover) and (pointer: fine) {
  body.cursor-enabled { cursor: none; }
  body.cursor-enabled a,
  body.cursor-enabled button { cursor: none; }
  body.cursor-enabled .cursor { display: block; }
}

/* Mobile-specific sticky CTA */
@media (max-width: 767px) {
  .sticky-cta.is-visible { display: flex; }
  /* Footer hours one column smaller */
  .footer__hours li { font-size: 0.8125rem; }
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .ken-burns,
  .mesh,
  .hero__scroll-line {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
