/* ================================================
   LA RÔTISSERIE DE M.GEORGES
   Design System — Bistrot Sombre · Rouge & Brun
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- VARIABLES ---- */
:root {
  --bg:       #160c08;
  --bg-alt:   #1e1009;
  --bg-card:  #24130a;
  --bg-dark:  #0f0705;

  --text:     #f0e8df;
  --text-mid: #9a8070;
  --text-dim: #5c4035;

  --rouge:        #C0392B;
  --rouge-vif:    #e04535;
  --rouge-fonce:  #8B1A1A;
  --or:           #c8a84b;
  --creme:        #f4ede5;

  --border:     rgba(192,57,43,0.14);
  --border-mid: rgba(192,57,43,0.30);
  --shadow:     rgba(0,0,0,0.55);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1160px;
  --r: 2px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageIn .4s ease-out both;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- GRAIN ---- */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 9997;
  pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .032;
  animation: grain .75s steps(1) infinite;
  will-change: transform;
}
@keyframes grain {
  0%   { transform: translate(0,0) }
  10%  { transform: translate(-3%,-2%) }
  20%  { transform: translate(2%,3%) }
  30%  { transform: translate(-2%,1%) }
  40%  { transform: translate(3%,-2%) }
  50%  { transform: translate(-1%,3%) }
  60%  { transform: translate(2%,-1%) }
  70%  { transform: translate(-3%,2%) }
  80%  { transform: translate(1%,-3%) }
  90%  { transform: translate(-2%,1%) }
  100% { transform: translate(3%,-1%) }
}

/* ---- PAGE VEIL ---- */
#page-veil {
  position: fixed; inset: 0; z-index: 9996;
  background: var(--bg-dark);
  transform: translateY(0);
  transition: transform .68s cubic-bezier(.76,0,.24,1);
}
#page-veil.out { transform: translateY(-100%); pointer-events: none; }

/* ---- SCROLL PROG ---- */
#scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  z-index: 1003;
  background: var(--rouge);
  pointer-events: none;
}

/* ---- TOPBAR ---- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 34px; z-index: 1001;
  background: rgba(15,7,5,.88);
  overflow: hidden; display: flex; align-items: center;
}
.topbar-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: topbarScroll 36s linear infinite;
  will-change: transform;
}
.topbar-track:hover { animation-play-state: paused; }
.topbar-item {
  font-family: var(--font-sans);
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,232,223,.5); padding: 0 22px;
}
.topbar-item strong { color: var(--rouge-vif); font-weight: 500; }
.topbar-sep { color: var(--rouge); opacity: .4; font-size: .5rem; flex-shrink: 0; }
@keyframes topbarScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---- COOKIE ---- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-sans); font-size: .75rem; color: var(--text-mid);
}
#cookie-banner p { flex: 1; min-width: 240px; line-height: 1.65; }
#cookie-banner a { color: var(--rouge-vif); text-decoration: underline; }
.btn-cookie {
  background: var(--rouge); color: #fff; border: none;
  padding: 9px 22px; font-family: var(--font-sans); font-size: .62rem;
  cursor: pointer; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; transition: background .25s;
}
.btn-cookie:hover { background: var(--rouge-fonce); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 990;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .35s, visibility 0s .42s;
}
.mobile-nav.open {
  visibility: visible; opacity: 1; pointer-events: all;
  transform: translateX(0);
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .35s, visibility 0s;
}
.mobile-nav a {
  font-family: var(--font-sans); font-size: .72rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(240,232,223,.5); transition: color .25s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--rouge-vif); }
.btn-close-mob {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: rgba(240,232,223,.35); font-size: 1.6rem;
  cursor: pointer; transition: color .25s;
}
.btn-close-mob:hover { color: var(--text); }

/* ---- CURSOR ---- */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
#r-cursor {
  position: fixed; z-index: 10001;
  width: 7px; height: 7px;
  background: var(--rouge-vif); border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s, opacity .3s;
  will-change: left, top; opacity: 0;
}
#r-cursor.ready { opacity: 1; }
#r-cursor.hover { width: 13px; height: 13px; background: #e04535; }
#r-cursor-ring {
  position: fixed; z-index: 10000;
  width: 38px; height: 38px;
  border: 1px solid rgba(192,57,43,.38); border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .4s, height .4s, border-color .4s, opacity .3s;
  will-change: left, top; opacity: 0;
}
#r-cursor-ring.ready { opacity: 1; }
#r-cursor-ring.hover { width: 58px; height: 58px; border-color: rgba(192,57,43,.6); }

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s;
}
header.scrolled {
  background: rgba(22,12,8,.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
header.header-hidden { transform: translateY(-100%); }

/* Ligne 1 : social | logo centré (grid) | hamburger */
.header-logo-bar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 8px 36px;
}
.header-social {
  display: flex; gap: 10px; align-items: center; z-index: 1;
}
.header-social a {
  width: 30px; height: 30px;
  border: 1px solid rgba(192,57,43,.28);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,232,223,.5); transition: all .25s;
}
.header-social a:hover { border-color: var(--rouge); color: var(--rouge-vif); }
.header-social svg { width: 13px; height: 13px; }

/* Logo — colonne centrale */
.header-logo {
  grid-column: 2;
  display: flex; align-items: center; justify-content: center;
}
.header-logo img {
  height: 120px; width: 120px; object-fit: contain;
  transition: opacity .3s;
}
.header-logo img:hover { opacity: .8; }
.header-logo-text {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--text); text-align: center; line-height: 1.25;
}
.header-logo-text span {
  display: block; font-size: .6rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--rouge-vif); margin-top: 3px;
}

/* Hamburger — colonne droite, aligné à droite */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  justify-self: end; z-index: 1;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(192,57,43,.7); }

/* Ligne 2 : nav secondaire (Groupes, Blog, Galerie, Contact) */
.nav-secondary {
  display: flex; justify-content: center; align-items: center;
  padding: 4px 36px;
  border-bottom: 1px solid rgba(192,57,43,.07);
  gap: 0;
}
.nav-secondary a {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,232,223,.80);
  padding: 4px 16px; border-right: 1px solid rgba(192,57,43,.1);
  transition: color .25s; font-weight: 500; white-space: nowrap;
}
.nav-secondary a:last-child { border-right: none; }
.nav-secondary a:hover, .nav-secondary a.active { color: var(--rouge-vif); }

/* Dropdown nav */
.nav-dropdown {
  position: relative; display: inline-flex; align-items: center;
  border-right: 1px solid rgba(192,57,43,.1);
}
.nav-dropdown-trigger {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,232,224,.80);
  padding: 4px 14px; cursor: pointer; background: none; border: none;
  transition: color .25s; display: flex; align-items: center; gap: 5px;
  white-space: nowrap; font-weight: 500;
}
.nav-dropdown-trigger::after { content: '▾'; font-size: 8px; color: var(--rouge-vif); }
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--rouge-vif); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 999;
  background: var(--bg); border: 1px solid rgba(192,57,43,.18);
  min-width: 270px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .22s;
  box-shadow: 0 12px 48px rgba(0,0,0,.55);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-section {
  padding: 10px 18px 6px;
  font-family: var(--font-sans); font-size: 8.5px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rouge-vif);
  border-bottom: 1px solid rgba(192,57,43,.15);
}
.nav-dd-section:not(:first-child) { margin-top: 4px; }
.nav-dropdown-menu a {
  display: block; padding: 9px 18px;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,232,223,.55);
  border: none !important; transition: background .18s, color .18s;
}
.nav-dropdown-menu a:hover { background: rgba(192,57,43,.1); color: var(--text); }
.nav-dd-divider { height: 1px; background: rgba(192,57,43,.12); margin: 4px 0; }
.mobile-nav .mob-sep { width: 32px; height: 1px; background: rgba(192,57,43,.2); margin: 4px auto; }
/* Mobile dropdown */
.mobile-nav .nav-dropdown { border: none; flex-direction: column; }
.mobile-nav .nav-dropdown-trigger { color: rgba(240,232,223,.55); font-size: 12px; letter-spacing: 4px; }
.mobile-nav .nav-dropdown-menu {
  position: static; background: transparent; border: none;
  box-shadow: none; opacity: 1; visibility: visible;
  transform: none; display: none; text-align: center;
}
.mobile-nav .nav-dropdown-menu a { color: rgba(240,232,223,.35); font-size: 10px; }
.mobile-nav .nav-dropdown-menu a:hover { background: none; color: var(--rouge-vif); }
.mobile-nav .nav-dd-section, .mobile-nav .nav-dd-divider { display: none; }

/* Ligne 3 : nav principale (Nos cartes, Visite, Réserver) */
.nav-main {
  display: flex; align-items: center; justify-content: center;
  padding: 6px 36px; gap: 4px;
  border-top: 1px solid rgba(192,57,43,.05);
}
.nav-main a {
  font-family: var(--font-sans); font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,232,223,.90);
  padding: 6px 18px; position: relative; transition: color .25s;
  font-weight: 500; white-space: nowrap;
}
.nav-main a::after {
  content: ''; position: absolute; bottom: 2px;
  left: 50%; right: 50%; height: 1px; background: var(--rouge);
  transition: left .3s, right .3s;
}
.nav-main a:hover { color: var(--text); }
.nav-main a:hover::after, .nav-main a.active::after { left: 18%; right: 18%; }

.header-cta {
  background: var(--rouge) !important; color: #fff !important;
  padding: 7px 20px !important; letter-spacing: 2px !important;
  transition: background .25s !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--rouge-fonce) !important; }

@media (max-width: 820px) {
  .header-logo-bar { padding: 8px 20px; }
  .nav-secondary, .nav-main { display: none; }
  .hamburger { display: flex; }
  .header-logo img { height: 80px; width: 80px; }
}

@media (max-width: 820px) {
  .header-nav-row { display: none; }
  .hamburger { display: flex; }
  .header-main { height: 64px; }
}
@media (max-width: 480px) { .header-social { display: none; } }

/* ---- HERO ---- */
.hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; display: flex; align-items: flex-end;
  background: var(--bg-dark);
}
.hero video, .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,7,5,.45) 0%,
    rgba(15,7,5,.05) 25%,
    rgba(15,7,5,.4) 65%,
    rgba(15,7,5,.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 0 clamp(1rem,3vw,2.5rem) clamp(3rem,7vh,6rem);
  animation: heroReveal 1.4s cubic-bezier(.4,0,.2,1) .3s both;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-sans); font-size: .6rem;
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(192,57,43,.75); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 300; letter-spacing: .04em;
  color: var(--creme); line-height: 1.05; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; }
.hero-sub {
  font-family: var(--font-sans); font-size: clamp(.8rem,1.3vw,.95rem);
  letter-spacing: .05em; color: rgba(240,232,223,.5);
  max-width: 480px; margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px) }
  to   { opacity: 1; transform: translateY(0) }
}
@keyframes pageIn { from { opacity: 0 } to { opacity: 1 } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-sans); font-size: .68rem;
  text-transform: uppercase; letter-spacing: 3px;
  cursor: pointer; border: none; transition: .25s;
}
.btn-primary { background: var(--rouge); color: #fff; }
.btn-primary:hover { background: var(--rouge-fonce); }
.btn-outline-light {
  background: transparent; color: rgba(240,232,223,.65);
  border: 1px solid rgba(192,57,43,.45);
}
.btn-outline-light:hover { border-color: var(--rouge); color: var(--text); }
.btn-rouge { background: var(--rouge); color: #fff; }
.btn-rouge:hover { background: var(--rouge-fonce); }
.btn-creme { background: var(--creme); color: var(--bg-dark); }
.btn-creme:hover { background: #fff; }
.btn-gold { background: var(--or); color: var(--bg-dark); }
.btn-gold:hover { background: #e0c060; }

/* ---- EYEBROW / UTILS ---- */
.eyebrow {
  display: block;
  font-family: var(--font-sans); font-size: .58rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--rouge-vif); margin-bottom: 20px;
}
.divider-rouge {
  width: 40px; height: 1px;
  background: var(--rouge);
  margin: 20px 0;
}
.text-center { text-align: center; }

/* ---- VICHY STRIP (décoratif seulement) ---- */
.vichy-strip {
  height: 5px;
  background-color: var(--rouge-fonce);
  background-image: repeating-linear-gradient(
    90deg, var(--rouge) 0px, var(--rouge) 10px,
    var(--rouge-fonce) 10px, var(--rouge-fonce) 20px
  );
}

/* ---- GOLD SEPARATOR (style M.Georges) ---- */
.rouge-sep {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 52px 40px; background: var(--bg);
}
.rouge-sep::before {
  content: ''; flex: 1; max-width: 130px; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-mid));
}
.rouge-sep::after {
  content: ''; flex: 1; max-width: 130px; height: 1px;
  background: linear-gradient(to left, transparent, var(--border-mid));
}
.rouge-sep-diamond {
  width: 6px; height: 6px; background: var(--rouge); transform: rotate(45deg); opacity: .55;
}

/* ---- SECTIONS ---- */
.section { padding: clamp(4rem,8vw,7rem) clamp(1rem,3vw,2.5rem); }
.section-dark    { background: var(--bg-dark); }
.section-bg      { background: var(--bg); }
.section-alt     { background: var(--bg-alt); }
.section-card    { background: var(--bg-card); }

/* ---- STATEMENT ---- */
.statement {
  background: var(--bg-alt);
  text-align: center;
  padding: 130px 40px 120px;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '"';
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: 220px;
  line-height: 1; font-weight: 300; font-style: italic;
  color: rgba(192,57,43,.06); pointer-events: none; user-select: none;
}
.statement-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.statement h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,6vw,5.5rem);
  font-style: italic; font-weight: 300;
  color: var(--text); line-height: 1.12; margin-bottom: 32px; letter-spacing: 1px;
}
.statement p {
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--text-mid); max-width: 480px;
  margin: 0 auto; line-height: 1.9;
}

/* ---- SPLIT SECTION ---- */
.split-section {
  display: grid; grid-template-columns: 55% 45%;
  min-height: 640px; overflow: hidden;
}
.split-section.reverse { grid-template-columns: 45% 55%; }
.split-img { position: relative; overflow: hidden; }
.split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.6s cubic-bezier(.4,0,.2,1);
  filter: brightness(.75) saturate(.85);
}
.split-section:hover .split-img img { transform: scale(1.04); }
.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,5rem);
  background: var(--bg-card);
  border-left: 1px solid var(--border);
}
.split-section.reverse .split-text { border-left: none; border-right: 1px solid var(--border); }
.split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.8vw,3.2rem);
  color: var(--text); line-height: 1.15; margin-bottom: 24px;
}
.split-text p {
  font-family: var(--font-sans); font-size: .88rem;
  color: var(--text-mid); line-height: 1.95;
  margin-bottom: 16px; max-width: 380px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  font-family: var(--font-sans); font-size: .65rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mid); transition: color .25s, gap .25s;
}
.link-arrow::after { content: '→'; transition: transform .25s; }
.link-arrow:hover { color: var(--rouge-vif); gap: 14px; }
.link-arrow:hover::after { transform: translateX(4px); }
@media (max-width: 860px) {
  .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .split-section .split-img { min-height: 300px; }
  .split-section.reverse .split-text { border-right: none; border-top: 1px solid var(--border); }
  .split-text { border-left: none !important; border-top: 1px solid var(--border); }
  .split-text p { max-width: 100%; }
}

/* ---- TILES ---- */
.tiles {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--bg-dark);
}
.tile {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3; cursor: pointer; display: block;
  border-right: 1px solid rgba(192,57,43,.06);
}
.tile:last-child { border-right: none; }
.tile video, .tile-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .9s ease;
  pointer-events: none;
}
.tile:hover video, .tile:hover .tile-img { transform: scale(1.07); }
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,7,5,.97) 0%, rgba(15,7,5,.28) 55%, transparent 100%);
  transition: background .5s;
}
.tile:hover .tile-overlay { background: linear-gradient(to top, rgba(15,7,5,.99) 0%, rgba(15,7,5,.55) 60%, rgba(15,7,5,.1) 100%); }
.tile-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(1.5rem,3vw,2.5rem); }
.tile-label {
  font-family: var(--font-sans); font-size: .55rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(192,57,43,.7); margin-bottom: 12px;
}
.tile-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,2.8vw,2.4rem);
  color: var(--creme); letter-spacing: .5px; margin-bottom: 22px;
}
.tile-arrow {
  display: block; width: 28px; height: 1px;
  background: rgba(192,57,43,.38); position: relative;
  transition: width .35s, background .35s;
}
.tile-arrow::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  width: 8px; height: 8px;
  border-right: 1.5px solid rgba(192,57,43,.38);
  border-top: 1.5px solid rgba(192,57,43,.38);
  transform: rotate(45deg); transition: border-color .35s;
}
.tile:hover .tile-arrow { width: 52px; background: var(--rouge); }
.tile:hover .tile-arrow::after { border-color: var(--rouge); }
@media (max-width: 760px) { .tiles { grid-template-columns: 1fr; } .tile { aspect-ratio: 16/9; } }

/* ---- EN CE MOMENT ---- */
.now-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem,7vw,6rem) clamp(1rem,3vw,2.5rem);
}
.now-inner { max-width: var(--max-w); margin: 0 auto; }
.now-inner > .eyebrow { display: block; text-align: center; margin-bottom: 50px; }
.now-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.now-card {
  padding: clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.5rem);
  background: var(--bg-dark);
  transition: background .35s; position: relative; overflow: hidden;
}
.now-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--rouge);
  opacity: 0; transition: opacity .35s;
}
.now-card:hover { background: var(--bg-card); }
.now-card:hover::before { opacity: 1; }
.now-card-tag {
  font-family: var(--font-sans); font-size: .55rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--rouge-vif); margin-bottom: 16px;
}
.now-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem,2.2vw,1.8rem);
  color: var(--text); letter-spacing: .5px; margin-bottom: 14px;
}
.now-card p {
  font-family: var(--font-sans); font-size: .84rem;
  color: var(--text-mid); line-height: 1.9;
}
.now-card-link {
  display: inline-block; margin-top: 18px;
  font-family: var(--font-sans); font-size: .65rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rouge-vif);
  border-bottom: 1px solid rgba(192,57,43,.35); padding-bottom: 2px;
  transition: border-color .3s;
}
.now-card-link:hover { border-color: var(--rouge); }
@media (max-width: 760px) { .now-cards { grid-template-columns: 1fr; } }

/* ---- STATS ---- */
.stats-section { background: var(--rouge); padding: 0; }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; padding: 36px 24px;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 300; color: #fff;
  line-height: 1; letter-spacing: 2px;
}
.stat-label {
  font-family: var(--font-sans); font-size: .58rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-top: 6px;
}
.stat-sep { font-size: .65rem; color: rgba(255,255,255,.3); padding: 0; }

/* ---- ESPACES GRID ---- */
.espaces-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2px;
  margin-top: 2rem;
}
.espace-card { position: relative; overflow: hidden; height: 320px; display: block; }
.espace-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: brightness(.65) saturate(.8); }
.espace-card:hover img { transform: scale(1.06); filter: brightness(.75) saturate(.9); }
.espace-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,7,5,.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.espace-overlay h3 { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; font-weight: 400; }
.espace-overlay p { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.espace-overlay .cap-badge {
  display: inline-block; background: var(--rouge); color: #fff;
  font-size: .58rem; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .1em;
}
@media (max-width: 580px) { .espaces-grid { grid-template-columns: 1fr; } }

/* ---- GALERIE PHOTO ---- */
.galerie-section {
  background: var(--bg); padding-bottom: clamp(3rem,6vw,5rem);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 3px;
}
.galerie-item {
  position: relative; overflow: hidden; display: block;
}
.galerie-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .5s;
  filter: brightness(.7) saturate(.8);
}
.galerie-item:hover img { transform: scale(1.07); filter: brightness(.85) saturate(1); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,7,5,.55) 0%, transparent 60%);
  transition: background .4s;
}
.galerie-item:hover .galerie-overlay { background: rgba(15,7,5,.1); }
@media (max-width: 760px) {
  .galerie-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,220px); }
}
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6,200px); }
}

/* ---- INSTAGRAM ---- */
.insta-section { background: var(--bg-alt); padding: clamp(4rem,8vw,7rem) 0 0; }
.insta-header { text-align: center; padding: 0 1rem clamp(2rem,4vw,3.5rem); }
.insta-icon { color: var(--rouge); margin-bottom: 1rem; }
.behold-wrap {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1rem,3vw,2.5rem);
}

/* ---- TIKTOK ---- */
.tiktok-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(192,57,43,.1);
  padding: clamp(4rem,8vw,7rem) clamp(1.5rem,4vw,3rem);
}
.tiktok-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
}
.tiktok-phone {
  width: 200px; margin: 0 auto;
  border: 2px solid rgba(192,57,43,.2);
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 0 60px rgba(192,57,43,.08);
}
.tiktok-phone-screen {
  position: relative; aspect-ratio: 9/16; overflow: hidden;
}
.tiktok-phone-screen img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.7);
}
.tiktok-phone-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(15,7,5,.25);
}
@media (max-width: 700px) {
  .tiktok-inner { grid-template-columns: 1fr; }
  .tiktok-right { display: none; }
}

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative; text-align: center;
  padding: clamp(5rem,10vw,8rem) 40px;
  background: var(--bg-dark); overflow: hidden;
}
.cta-section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .07;
}
.cta-section-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem,7vw,6rem);
  color: var(--text); letter-spacing: 2px; margin-bottom: 14px;
}
.cta-section p {
  font-family: var(--font-sans); font-size: .65rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(192,57,43,.6); margin-bottom: 52px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  min-height: 480px; display: flex; align-items: flex-end;
  justify-content: center; padding-bottom: 72px;
  position: relative; overflow: hidden; background: var(--bg-dark);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(15,7,5,.5) 0%, rgba(15,7,5,.05) 30%, rgba(15,7,5,.82) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.3) saturate(.7); z-index: 0;
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px;
  animation: heroReveal 1.1s cubic-bezier(.4,0,.2,1) .1s both;
}
.page-hero-content .eyebrow { color: rgba(192,57,43,.75); }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem,6vw,4.5rem);
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px; font-weight: 300;
}
.page-hero-content p {
  font-family: var(--font-sans); font-size: .68rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(192,57,43,.65);
}

/* ---- CARTES PAGE ---- */
.page-body { max-width: 820px; margin: 0 auto; padding: 80px 32px 100px; }
.page-body p { font-size: .9rem; line-height: 1.95; color: var(--text-mid); margin-bottom: 18px; }
.cartes-intro {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: rgba(192,57,43,.85); line-height: 1.7; max-width: 680px;
  padding: 20px 0; margin: 2rem 0;
  border-top: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid);
}
.doc-links { margin-top: 52px; display: flex; flex-direction: column; gap: 2px; }
.doc-link {
  display: flex; align-items: center; gap: 20px; padding: 20px 28px;
  background: var(--bg-card);
  border-left: 3px solid transparent; transition: all .3s;
}
.doc-link:hover { background: var(--bg-alt); border-left-color: var(--rouge); }
.doc-link svg { flex-shrink: 0; color: var(--rouge); opacity: .55; transition: opacity .25s; stroke: currentColor; fill: none; stroke-width: 2; }
.doc-link:hover svg { opacity: 1; }
.doc-link-text { font-family: var(--font-sans); font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-mid); flex: 1; transition: color .25s; }
.doc-link:hover .doc-link-text { color: var(--text); }
.doc-link .ext { margin-left: auto; color: var(--rouge); font-size: .9rem; opacity: .3; transition: opacity .25s, transform .25s; }
.doc-link:hover .ext { opacity: .85; transform: translate(2px,-2px); }
.horaires-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--rouge);
  padding: 24px 28px; margin-top: 2.5rem;
}
.horaires-block h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text); margin-bottom: 12px; }
.horaires-block p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; margin: 0; }
.horaires-block strong { color: var(--rouge-vif); }

/* ---- MENU GROUPE ---- */
.groupe-hero-text {
  font-family: var(--font-serif); font-size: clamp(1.3rem,3vw,1.8rem);
  font-style: italic; color: rgba(192,57,43,.8);
  line-height: 1.5; max-width: 750px; margin-bottom: 2rem;
}
.groupe-pdfs { display: flex; gap: 14px; flex-wrap: wrap; margin: 2.5rem 0; }
.groupe-pdfs a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; background: var(--bg-card);
  border: 1px solid var(--border-mid);
  color: var(--text-mid); font-size: .65rem;
  text-transform: uppercase; letter-spacing: .1em; transition: .25s;
}
.groupe-pdfs a:hover { border-color: var(--rouge); color: var(--rouge-vif); background: var(--bg-alt); }
.groupe-pdfs svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---- RESA CARDS ---- */
.resa-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1px; background: var(--border); }
.resa-card { background: var(--bg-card); display: flex; flex-direction: column; }
.resa-card-head { background: var(--rouge-fonce); padding: 24px; }
.resa-card-head h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text); }
.resa-card-head p { font-size: .78rem; color: rgba(240,232,223,.6); margin-top: 4px; }
.resa-card-body { padding: 24px; flex: 1; }
.resa-card-body p { font-size: .85rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }

/* ---- VISITE ---- */
.matterport-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border: 1px solid var(--border); margin: 2rem 0;
}
.matterport-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.espace-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4rem); align-items: start;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.espace-detail:last-child { border-bottom: none; }
.espace-detail:nth-child(even) .espace-detail-imgs { order: -1; }
.espace-detail-text h2 { font-family: var(--font-serif); font-size: clamp(1.6rem,3.5vw,2.4rem); color: var(--text); margin-bottom: 8px; }
.espace-detail-text .cap { color: var(--rouge-vif); font-weight: 500; font-size: .75rem; margin-bottom: 16px; display: block; letter-spacing: 2px; text-transform: uppercase; }
.espace-detail-text p { font-size: .88rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 12px; }
@media (max-width: 760px) { .espace-detail { grid-template-columns: 1fr; } .espace-detail:nth-child(even) .espace-detail-imgs { order: 0; } }

/* ---- SLIDER ---- */
.slider { position: relative; overflow: hidden; height: 320px; background: var(--bg-dark); }
.slider img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity .5s; filter: brightness(.75); }
.slider img.active { opacity: 1; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(15,7,5,.6); color: var(--text);
  border: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background .2s; font-size: 1.1rem;
}
.slider-btn:hover { background: var(--rouge); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.slider-dot { width: 7px; height: 7px; background: rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; transition: background .2s; }
.slider-dot.active { background: var(--rouge); }

/* ---- CONTACT ---- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1080px; margin: 60px auto 0; padding: 0 32px 90px; }
.contact-left { padding-right: 50px; }
.contact-intro { font-size: .88rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 36px; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.contact-item h4 { font-family: var(--font-sans); font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rouge-vif); margin-bottom: 8px; }
.contact-item p, .contact-item a { font-size: .88rem; line-height: 1.65; color: var(--text-mid); }
.contact-item a:hover { color: var(--rouge-vif); }
.contact-item .phone { font-size: 1.25rem; letter-spacing: 1px; color: var(--text); font-family: var(--font-serif); }
.map-wrap { border: 1px solid var(--border); overflow: hidden; height: 240px; margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) sepia(20%) brightness(.7); }
.contact-right { padding-left: 50px; border-left: 1px solid var(--border); }
.contact-right h3 { font-family: var(--font-serif); font-size: 2rem; letter-spacing: 2px; color: var(--text); margin-bottom: 8px; }
.form-intro { font-size: .82rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px; font-family: var(--font-sans); font-size: .88rem;
  outline: none; transition: border-color .25s; appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--rouge); }
.form-field textarea { height: 130px; resize: vertical; }
.btn-send {
  background: transparent; border: 1px solid var(--rouge);
  color: var(--rouge-vif); padding: 12px 36px;
  font-family: var(--font-sans); font-size: .65rem; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; margin-top: 6px;
}
.btn-send:hover { background: var(--rouge); color: #fff; }
@media (max-width: 760px) { .contact-wrap { grid-template-columns: 1fr; } .contact-left { padding-right: 0; margin-bottom: 48px; } .contact-right { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 40px; } .contact-info-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---- QUICK NAV ---- */
.quick-nav { background: var(--bg-card); border-bottom: 1px solid var(--border); }
.quick-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.quick-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  transition: background .2s; color: var(--text);
}
.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover { background: var(--bg-alt); }
.qn-icon {
  width: 42px; height: 42px; background: rgba(192,57,43,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qn-icon svg { width: 18px; height: 18px; stroke: var(--rouge-vif); fill: none; stroke-width: 2; }
.qn-label { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--rouge-vif); font-weight: 500; }
.qn-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text); margin-top: 2px; }
@media (max-width: 580px) { .quick-nav-inner { grid-template-columns: 1fr; } .quick-nav-item { border-right: none; border-bottom: 1px solid var(--border); } }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: clamp(4rem,6vw,5rem) clamp(1rem,3vw,2.5rem) 0;
}
/* ── Réservation ── */
.resa-wrap { max-width: 720px; margin: 0 auto; padding: 88px 32px 110px; text-align: center; }
.resa-wrap p { font-size: 15px; line-height: 1.9; color: var(--text-mid); margin-bottom: 36px; }

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: clamp(2rem,5vw,4rem);
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--text); line-height: 1.3; margin-bottom: 6px;
}
.footer-logo-text span { display: block; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; color: var(--rouge-vif); margin-top: 3px; }
.footer-brand p { margin-top: 14px; font-size: .82rem; line-height: 1.75; color: var(--text-mid); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); transition: all .25s;
}
.footer-social a:hover { border-color: var(--rouge); color: var(--rouge-vif); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 { font-size: .6rem; text-transform: uppercase; letter-spacing: .18em; color: var(--rouge-vif); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: .82rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.6; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-mg-link { display: inline-flex !important; align-items: center; gap: 8px; }
.footer-mg-link img { height: 22px; opacity: .4; filter: brightness(2); transition: opacity .2s; }
.footer-mg-link:hover img { opacity: .7; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: .72rem; color: rgba(240,232,223,.3);
}
.footer-bottom a { color: rgba(240,232,223,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }

/* ---- REVIEWS ---- */
.reviews-section {
  background: var(--bg-alt);
  padding: clamp(4rem,8vw,7rem) clamp(1rem,3vw,2.5rem);
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-inner > .eyebrow { display: block; text-align: center; margin-bottom: 20px; }
.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 300; color: var(--text);
  text-align: center; margin-bottom: 28px;
}
.reviews-rating-global {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; margin-bottom: 52px;
}
.stars-global { color: var(--rouge); font-size: 1.5rem; letter-spacing: 4px; }
.rating-num {
  font-family: var(--font-serif); font-size: 2.4rem;
  color: var(--text); font-weight: 300;
}
.rating-source { font-size: .72rem; color: var(--text-dim); letter-spacing: 1.5px; text-align: center; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border);
}
.review-card {
  background: var(--bg-card); padding: 2rem 1.8rem;
  transition: background .3s;
}
.review-card:hover { background: var(--bg-dark); }
.review-stars { color: var(--rouge); font-size: .9rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  font-family: var(--font-serif); font-size: .95rem;
  font-style: italic; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 20px;
}
.review-author {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.review-name { font-size: .8rem; color: var(--text); font-weight: 500; }
.review-platform { font-size: .6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--rouge-vif); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---- CARTE NOS-CARTES ---- */
.carte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 700px) { .carte-grid { grid-template-columns: 1fr; } }

.carte-formule {
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.carte-formule--premium {
  border-color: var(--rouge); background: rgba(192,57,43,.04);
}
.carte-formule-header {
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--bg-alt); padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.carte-formule--premium .carte-formule-header {
  background: var(--rouge-fonce);
}
.carte-formule-header h3 {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400;
  color: var(--text); margin: 0;
}
.carte-formule--premium .carte-formule-header h3 { color: var(--cream); }
.carte-price {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--rouge-vif); white-space: nowrap; margin-left: 12px;
}
.carte-formule--premium .carte-price { color: #f2c5a0; }
.carte-formule-body {
  padding: 18px 22px; flex: 1;
}
.carte-formule-body ul {
  list-style: none; padding: 0; margin: 0 0 12px;
}
.carte-formule-body li {
  font-size: .82rem; color: var(--text-mid); line-height: 1.6;
  padding: 4px 0 4px 14px; position: relative;
  border-bottom: 1px solid var(--border);
}
.carte-formule-body li:last-child { border-bottom: none; }
.carte-formule-body li::before {
  content: '—'; position: absolute; left: 0; color: var(--rouge-vif); font-size: .7rem;
}
.carte-cat {
  font-size: .65rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--rouge-vif); margin: 12px 0 6px; font-weight: 500;
}

.carte-poussin {
  background: var(--bg-alt); border: 1px dashed var(--border-mid);
  padding: 18px 24px; margin-top: 2rem;
}
.carte-poussin-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.carte-poussin h3 {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--text); margin: 0;
}

.carte-section-title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300;
  color: var(--text); border-bottom: 1px solid var(--border);
  padding-bottom: 10px; margin-bottom: 0;
  letter-spacing: .5px;
}
.carte-section-title::after {
  content: ''; display: block; width: 36px; height: 2px;
  background: var(--rouge); margin-top: 8px;
}

.carte-items { display: flex; flex-direction: column; }
.carte-item {
  display: grid; grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  gap: 2px 12px;
  align-items: start;
}
.carte-item:last-child { border-bottom: none; }
.carte-item-name {
  font-size: .88rem; color: var(--text); font-weight: 500;
  grid-column: 1; grid-row: 1;
  line-height: 1.4;
}
.carte-item-desc {
  font-size: .77rem; color: var(--text-mid); line-height: 1.55;
  grid-column: 1; grid-row: 2; margin-top: 3px;
  font-style: italic;
}
.carte-item-price {
  font-family: var(--font-serif); font-size: .92rem; color: var(--rouge-vif);
  font-weight: 600; white-space: nowrap;
  grid-column: 2; grid-row: 1 / 3;
  align-self: center;
}

.carte-acccompagnements {
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 18px 24px;
}

/* ---- TABLE BOISSONS ---- */
.boissons-table {
  width: 100%; border-collapse: collapse; font-size: .82rem;
}
.boissons-table thead tr {
  background: var(--rouge-fonce); color: var(--cream);
}
.boissons-table th {
  padding: 10px 14px; text-align: left;
  font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500;
}
.boissons-table th:not(:first-child) { text-align: right; white-space: nowrap; }
.boissons-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-mid); vertical-align: top; line-height: 1.5;
}
.boissons-table td:not(:first-child) {
  text-align: right; white-space: nowrap;
  color: var(--rouge-vif); font-weight: 500; font-family: var(--font-serif);
}
.boissons-table td small {
  display: block; font-size: .7rem; color: var(--text-dim);
  font-style: italic; margin-top: 2px; font-weight: 400;
  font-family: var(--font-sans, sans-serif); letter-spacing: 0;
}
.boissons-table tbody tr:hover { background: rgba(192,57,43,.03); }

/* ---- REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
