/* ==========================================================================
   A Bella Stella — feuille de style
   Palette : anthracite chaud, crème, cuivre / braise.
   ========================================================================== */

:root {
  /* Couleurs */
  --bg: #0f0c0a;
  --bg-2: #161210;
  --bg-3: #1e1915;
  --surface: #1a1613;
  --line: rgba(243, 235, 221, 0.10);
  --line-strong: rgba(243, 235, 221, 0.22);
  --text: #f3ebdd;
  --text-2: #c9bda9;
  --text-3: #8f8471;
  --copper: #c9782f;
  --copper-2: #e19a4f;
  --ember: #ff8a3d;
  --gold: #d9b36a;
  --on-copper: #120b05;
  --danger: #f08c7a;
  --success: #a7d7a0;

  /* Typo */
  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;

  /* Espacements (échelle aérée) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;
  --s-8: 9rem;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 320ms;
  --dur-fast: 180ms;

  --nav-h: 76px;

  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain discret sur toute la page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: screen;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; }
p { margin: 0 0 var(--s-2); }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--copper); color: var(--on-copper); }

:focus-visible {
  outline: 2px solid var(--copper-2);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-2);
  z-index: 10000;
  background: var(--copper);
  color: var(--on-copper);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: var(--s-2); }

/* --------------------------------------------------------------------------
   Typographie
   -------------------------------------------------------------------------- */
.h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  text-wrap: balance;
}
.h2 em {
  font-style: italic;
  color: var(--copper-2);
}
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-2);
  max-width: 58ch;
  font-weight: 300;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.eyebrow__line {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-right: -0.25rem;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur), color var(--dur), border-color var(--dur), box-shadow var(--dur);
  touch-action: manipulation;
  will-change: transform;
}
.btn--sm { min-height: 44px; padding: 0.6rem 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--copper);
  color: var(--on-copper);
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-out);
}
.btn--primary:hover { background: var(--copper-2); box-shadow: 0 10px 30px -10px rgba(201, 120, 47, 0.6); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:active { transform: scale(0.98); }
.btn--primary svg { transition: transform var(--dur) var(--ease-out); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(15, 12, 10, 0.25);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--copper-2); color: var(--copper-2); }

.btn__spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(18, 11, 5, 0.3);
  border-top-color: var(--on-copper);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}
.btn.is-loading .btn__label { opacity: 0.6; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Loader d'intro
   -------------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--bg);
  display: grid;
  place-items: center;
}
.loader__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--copper-2);
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.loader__mark svg { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(0.94); } 50% { opacity: 1; transform: scale(1.06); } }
.loader { transition: opacity 600ms ease, visibility 0s linear 600ms; }
.loader.is-done { pointer-events: none; opacity: 0; visibility: hidden; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background-color var(--dur), backdrop-filter var(--dur), border-color var(--dur), transform 400ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15, 12, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  height: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text);
  min-height: 44px;
  white-space: nowrap;
}
.nav__brand svg { color: var(--copper-2); flex: 0 0 auto; }
@media (max-width: 420px) {
  .nav__brand { font-size: 1.05rem; }
  .nav__actions .btn--sm { padding-inline: 0.85rem; }
}
.nav__links { display: none; gap: 0.25rem; }
.nav__links a {
  position: relative;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color var(--dur);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.35rem;
  height: 1px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: var(--s-2); }
.nav__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-2);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  transition: color var(--dur);
  min-height: 44px;
}
.nav__phone:hover { color: var(--copper-2); }
.nav__burger {
  position: relative;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
}
.nav__burger span {
  position: absolute;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform var(--dur) var(--ease-out);
}
.nav__burger span:first-child { transform: translateY(-4px); }
.nav__burger span:last-child { transform: translateY(4px); }
.nav__burger[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}
@media (min-width: 1100px) {
  .nav__phone { display: inline-flex; }
}

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--bg);
  padding: calc(var(--nav-h) + var(--s-4)) var(--gutter) var(--s-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: color var(--dur), padding-left var(--dur) var(--ease-out);
}
.mobile-menu nav a:hover { color: var(--copper-2); padding-left: 0.5rem; }
.mobile-menu nav .mobile-menu__cta { color: var(--copper-2); border-bottom: 0; }
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-3);
  font-size: 0.95rem;
}
.mobile-menu__foot a { color: var(--text); font-size: 1.15rem; }
body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(15,12,10,0.95) 0%, rgba(15,12,10,0.55) 45%, rgba(15,12,10,0.25) 100%),
    linear-gradient(180deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.1) 35%, rgba(15,12,10,0.7) 100%);
}
.hero__embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero__content {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-6));
  padding-bottom: var(--s-5);
}
.hero__eyebrow { margin-bottom: var(--s-3); }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: var(--s-3);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-2);
  max-width: 34ch;
  font-weight: 300;
  margin-bottom: var(--s-4);
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-bottom: var(--s-4);
  border-top: 1px solid var(--line);
  padding-top: var(--s-3);
}
.hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.hero__hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(167, 215, 160, 0.6);
  animation: ping 2.2s ease-out infinite;
}
.hero__hours.is-closed .hero__hours-dot { background: var(--text-3); animation: none; box-shadow: none; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(167,215,160,0.6); } 100% { box-shadow: 0 0 0 10px rgba(167,215,160,0); } }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  min-height: 44px;
}
.hero__scroll-line {
  width: 48px; height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper-2);
  transform: translateX(-100%);
  animation: slide 2s var(--ease-out) infinite;
}
@keyframes slide { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* Découpe des mots pour l'animation (JS) */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span { display: inline-block; will-change: transform; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(5rem, 10vw, 9rem); position: relative; }
.section__head { max-width: 720px; margin-bottom: var(--s-6); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--row {
  max-width: none;
  display: grid;
  gap: var(--s-3);
  align-items: end;
}
@media (min-width: 900px) {
  .section__head--row { grid-template-columns: 1fr 1fr; }
  .section__head--row .lead { justify-self: end; max-width: 40ch; margin-bottom: 0.35rem; }
}

/* --------------------------------------------------------------------------
   La maison
   -------------------------------------------------------------------------- */
.maison { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.maison__grid {
  display: grid;
  gap: var(--s-6);
  align-items: center;
  margin-bottom: var(--s-7);
}
@media (min-width: 960px) {
  .maison__grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-7); }
}
.maison__text .lead { margin-bottom: var(--s-3); }
.maison__text > p:not(.lead):not(.eyebrow) { color: var(--text-2); max-width: 56ch; }

.maison__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.maison__facts div { display: flex; flex-direction: column; gap: 0.15rem; }
.maison__facts strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  color: var(--copper-2);
  font-variant-numeric: tabular-nums;
}
.maison__facts span { font-size: 0.85rem; color: var(--text-3); letter-spacing: 0.04em; }

.maison__media { position: relative; }
.frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 235, 221, 0.18);
  pointer-events: none;
  border-radius: 2px;
  z-index: 2;
}
/* Étalonnage commun à toutes les photos : légère chaleur cuivrée, ombres fondues dans le fond */
.frame::before, .gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(201, 120, 47, 0.10) 0%, rgba(15, 12, 10, 0.05) 40%, rgba(15, 12, 10, 0.28) 100%);
  mix-blend-mode: multiply;
}
.frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; filter: saturate(0.9) contrast(1.03); }
.maison__media .frame:first-child { aspect-ratio: 4 / 5; }
.frame--small {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: 44%;
  aspect-ratio: 1;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  border: 6px solid var(--bg-2);
}
@media (max-width: 959px) {
  .frame--small { right: 0; bottom: -8%; width: 40%; }
  .maison__media { margin-bottom: var(--s-4); }
}

.pillars {
  display: grid;
  gap: var(--s-2);
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
.pillar {
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 25, 21, 0.45);
  transition: border-color var(--dur), transform var(--dur) var(--ease-out), background-color var(--dur);
}
.pillar:hover { border-color: rgba(201, 120, 47, 0.45); transform: translateY(-4px); background: rgba(30, 25, 21, 0.75); }
.pillar__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 120, 47, 0.4);
  color: var(--copper-2);
  margin-bottom: var(--s-3);
}
.pillar h3 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--text-2); font-size: 1rem; margin: 0; }

/* --------------------------------------------------------------------------
   La carte
   -------------------------------------------------------------------------- */
.carte { background: var(--bg-2); }
.carte::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.tabs {
  position: relative;
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-5);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  padding: 0.9rem 1.2rem;
  min-height: 48px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-3);
  transition: color var(--dur);
  white-space: nowrap;
}
.tab:hover { color: var(--text-2); }
.tab.is-active { color: var(--text); }
.tabs__ink {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--copper-2);
  transition: transform 400ms var(--ease-out), width 400ms var(--ease-out);
}

.panels { position: relative; }
.panel[hidden] { display: none; }
.menu {
  display: grid;
  gap: var(--s-2) var(--s-6);
}
@media (min-width: 860px) { .menu { grid-template-columns: 1fr 1fr; } }
.menu__item {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur);
}
.menu__item h3, .menu__dots, .menu__price { transition: color var(--dur), border-color var(--dur), transform var(--dur) var(--ease-out); }
@media (hover: hover) {
  .menu__item:hover { border-bottom-color: rgba(201, 120, 47, 0.35); }
  .menu__item:hover h3 { color: var(--copper-2); }
  .menu__item:hover .menu__dots { border-color: rgba(201, 120, 47, 0.6); }
  .menu__item:hover .menu__price { transform: translateX(-3px); }
}
.menu__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.menu__row h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  flex: 0 1 auto;
}
.menu__dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-0.35em);
  min-width: 1.5rem;
}
.menu__price {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--copper-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu__item p { color: var(--text-2); font-size: 0.98rem; margin-bottom: 0.5rem; max-width: 52ch; }
.menu__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text-3);
}
.tag--star { border-color: rgba(217, 179, 106, 0.5); color: var(--gold); }
.tag--star::before { content: "★"; font-size: 0.75rem; }
.tag--veg { border-color: rgba(167, 215, 160, 0.4); color: var(--success); }
.menu__extra {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: var(--s-4);
  padding: var(--s-2) var(--s-3);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 0.95rem;
}
.menu__extra .menu__price { font-size: 1.05rem; }
.menu__foot { margin-top: var(--s-3); color: var(--text-3); font-size: 0.9rem; }
.menu__foot a { color: var(--copper-2); font-weight: 600; }
.carte__note { margin-top: var(--s-5); color: var(--text-3); font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 42vw;
  gap: var(--s-2);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: var(--s-3);
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (min-width: 1100px) { .gallery { grid-auto-rows: 280px; } }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 900ms var(--ease-out), filter 600ms;
  filter: saturate(0.9) contrast(1.03) brightness(0.94);
  will-change: transform;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(15,12,10,0.6));
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery__item:hover img, .gallery__item:focus-visible img { filter: saturate(1) contrast(1.03) brightness(1); transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   Barre d'action mobile : appeler / réserver, toujours à portée de pouce
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 12, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 420ms var(--ease-out), opacity 300ms;
}
.action-bar.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.action-bar__btn {
  flex: 1 1 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  touch-action: manipulation;
}
.action-bar__btn--primary { background: var(--copper); color: var(--on-copper); flex-grow: 1.6; }
.action-bar__btn--ghost { border: 1px solid var(--line-strong); color: var(--text); }
.action-bar__btn:active { transform: scale(0.98); }
body.menu-open .action-bar { display: none; }
@media (min-width: 900px) { .action-bar { display: none; } }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 1400px);
  max-height: 92vh;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(8, 6, 4, 0.92); backdrop-filter: blur(8px); }
.lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 40px 100px -20px rgba(0,0,0,0.9); }
.lightbox__close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(243,235,221,0.1);
  color: var(--text);
  transition: background-color var(--dur), transform var(--dur);
}
.lightbox__close:hover { background: var(--copper); color: var(--on-copper); transform: rotate(90deg); }

/* --------------------------------------------------------------------------
   Citation
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  padding-block: clamp(7rem, 14vw, 12rem);
  overflow: hidden;
  isolation: isolate;
}
.quote__bg { position: absolute; inset: -12% 0; z-index: -1; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.7); will-change: transform; }
.quote__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(15,12,10,0.2), rgba(15,12,10,0.85));
}
.quote__inner { text-align: center; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.25;
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: var(--s-3);
  text-wrap: balance;
}
.quote cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-2);
}

/* --------------------------------------------------------------------------
   Avis
   -------------------------------------------------------------------------- */
.avis { background: var(--bg); }
.avis__score { margin-inline: auto; }
.avis__score strong { color: var(--gold); font-weight: 600; }
.avis__score a { color: var(--copper-2); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color var(--dur); }
.avis__score a:hover { border-bottom-color: currentColor; }
.reviews { display: grid; gap: var(--s-2); }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
.review {
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur);
}
.review::before {
  content: "“";
  position: absolute;
  top: 0.4rem; right: 1.2rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 120, 47, 0.18);
}
.review:hover { transform: translateY(-4px); border-color: rgba(201, 120, 47, 0.4); }
.review__stars { display: flex; gap: 2px; color: var(--gold); }
.review p { color: var(--text-2); margin: 0; flex: 1; font-size: 1rem; }
.review footer { display: flex; flex-direction: column; gap: 0.1rem; }
.review footer strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.review footer span { font-size: 0.85rem; color: var(--text-3); }

/* --------------------------------------------------------------------------
   Réservation
   -------------------------------------------------------------------------- */
.reserver {
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(201, 120, 47, 0.12), transparent 60%),
    var(--bg-2);
}
.reserver__grid { display: grid; gap: var(--s-6); align-items: start; }
@media (min-width: 960px) { .reserver__grid { grid-template-columns: 1fr 1.15fr; gap: var(--s-7); } }
.reserver__alt {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reserver__alt span { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.reserver__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  font-variant-numeric: tabular-nums;
  transition: color var(--dur);
  min-height: 44px;
}
.reserver__phone svg { color: var(--copper-2); }
.reserver__phone:hover { color: var(--copper-2); }

.form {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 12, 10, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.form__row { display: grid; gap: var(--s-3); }
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .form__row--3 > .field:first-child { grid-column: 1 / -1; }
}
@media (min-width: 1180px) {
  .form__row--3 { grid-template-columns: 1.3fr 1fr 1fr; }
  .form__row--3 > .field:first-child { grid-column: auto; }
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); font-weight: 600; }
.field label span[aria-hidden] { color: var(--copper-2); }
.field__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-3); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  background: rgba(243, 235, 221, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  transition: border-color var(--dur), background-color var(--dur), box-shadow var(--dur);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9bda9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field select option, .field select optgroup { background: var(--bg-3); color: var(--text); }
.field input::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper-2);
  background: rgba(243, 235, 221, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 120, 47, 0.2);
}
.field.is-invalid input, .field.is-invalid select { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: 0.85rem; margin: 0; display: flex; align-items: center; gap: 0.35rem; }
.field__error::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.field__error[hidden] { display: none; }
.form__hint { font-size: 0.85rem; color: var(--text-3); margin: 0; }
.form__status { font-size: 0.95rem; min-height: 1.5em; margin: 0; }
.form__status.is-success { color: var(--success); }
.form__status.is-error { color: var(--danger); }

/* --------------------------------------------------------------------------
   Infos pratiques
   -------------------------------------------------------------------------- */
.infos { background: var(--bg); }
.infos__grid { display: grid; gap: var(--s-3); }
@media (min-width: 900px) {
  .infos__grid { grid-template-columns: 1fr 1fr 1.3fr; }
}
.infos__card {
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.infos__card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: var(--s-3); }
.infos__sub { margin-top: var(--s-4); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.hours th { font-weight: 500; color: var(--text-2); white-space: nowrap; padding-right: var(--s-2); }
.hours td { color: var(--text); font-variant-numeric: tabular-nums; text-align: right; }
.hours td span { display: block; white-space: nowrap; }
.hours__closed { color: var(--text-3); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--copper-2); }
.hours tr.is-today th::after { content: "aujourd'hui"; display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
.infos__note { color: var(--text-3); font-size: 0.9rem; margin: var(--s-3) 0 0; }
address { color: var(--text-2); margin-bottom: var(--s-2); line-height: 1.7; }
.infos__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--copper-2);
  font-weight: 600;
  min-height: 44px;
  transition: gap var(--dur) var(--ease-out);
}
.infos__link:hover { gap: 0.7rem; }
.infos__map {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.infos__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.85) sepia(0.35);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: #0b0908;
  padding-top: var(--s-6);
}
.footer__inner {
  display: grid;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
}
@media (min-width: 860px) { .footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--copper-2); }
.footer__brand div { display: flex; flex-direction: column; gap: 0.2rem; }
.footer__brand strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--text); }
.footer__brand span { color: var(--text-3); font-size: 0.9rem; }
.footer__col { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; }
.footer__col a { color: var(--text); transition: color var(--dur); }
.footer__col a:hover { color: var(--copper-2); }
.footer__label { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.5rem; }
.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  margin-right: 0.4rem;
  transition: border-color var(--dur), color var(--dur), transform var(--dur) var(--ease-out);
}
.footer__social a:hover { border-color: var(--copper-2); color: var(--copper-2); transform: translateY(-2px); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  padding-block: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-3);
}
.footer__legal a { color: var(--text-2); min-height: 44px; display: inline-flex; align-items: center; }
.footer__legal a:hover { color: var(--copper-2); }

/* --------------------------------------------------------------------------
   Téléphone : mise en page entièrement centrée
   -------------------------------------------------------------------------- */
@media (max-width: 719px) {
  /* Textes et titres */
  .section__head, .maison__text, .reserver__text, .carte__note, .menu__foot,
  .pillar, .review, .infos__card, .footer__col, .footer__brand div, .quote__inner { text-align: center; }
  .eyebrow { justify-content: center; width: 100%; }
  .lead, .maison__text > p, .menu__item p, .review p, address, .infos__note { margin-inline: auto; }
  .h2 { margin-inline: auto; }

  /* Hero */
  .hero__content { text-align: center; align-items: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__title { margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin-inline: auto; }
  .hero__foot { flex-direction: column; align-items: center; gap: var(--s-2); text-align: center; }
  .hero__hours { justify-content: center; }
  .hero__scroll { display: none; }

  /* Menu mobile */
  .mobile-menu nav { align-items: center; }
  .mobile-menu nav a { text-align: center; width: 100%; }
  .mobile-menu nav a:hover { padding-left: 0; }
  .mobile-menu__foot { align-items: center; text-align: center; }

  /* La maison */
  .maison__facts { text-align: center; }
  .maison__facts div { align-items: center; }
  .maison__media { display: flex; flex-direction: column; align-items: center; margin-bottom: var(--s-4); }
  .maison__media .frame:first-child { width: min(100%, 420px); }
  .frame--small { position: relative; right: auto; bottom: auto; width: 58%; margin-top: -22%; }
  .pillar { display: flex; flex-direction: column; align-items: center; }

  /* La carte */
  .tabs { flex-wrap: wrap; justify-content: center; gap: 0.25rem 0.5rem; overflow: visible; border-bottom: 0; }
  .tab { border-bottom: 2px solid transparent; padding: 0.7rem 0.9rem; }
  .tab.is-active { border-bottom-color: var(--copper-2); }
  .tabs__ink { display: none; }
  .menu__item { text-align: center; }
  .menu__row { flex-direction: column; align-items: center; gap: 0.2rem; }
  .menu__dots { display: none; }
  .menu__row h3 { text-wrap: balance; }
  .menu__tags { justify-content: center; }
  .menu__extra { flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
  .menu__extra .menu__dots { display: none; }

  /* Galerie et avis */
  .section__head--row { text-align: center; }
  .review { align-items: center; }
  .review__stars { justify-content: center; }
  .review footer { align-items: center; }
  .review::before { display: none; }

  /* Réservation */
  .reserver__alt { align-items: center; }
  .field label { text-align: center; }
  .field__error { justify-content: center; }
  .form__hint, .form__status { text-align: center; }

  /* Infos pratiques */
  .infos__card h3 { text-align: center; }
  .hours { max-width: 340px; margin-inline: auto; }
  .infos__link { justify-content: center; width: 100%; }
  .infos__map { min-height: 280px; }

  /* Pied de page */
  .footer__inner { text-align: center; justify-items: center; }
  .footer__brand { flex-direction: column; align-items: center; text-align: center; }
  .footer__social a { margin: 0 0.2rem; }
  .footer__legal { flex-direction: column; align-items: center; text-align: center; gap: 0.25rem; }
  .footer__legal a { min-height: 40px; }
}

/* --------------------------------------------------------------------------
   Animations d'apparition : état initial (retiré par JS si mouvement réduit)
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal-img { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-img { clip-path: none; }
  .hero__img, .frame img, .gallery__item img { transform: none !important; }
  .hero__scroll-line::after, .hero__hours-dot, .loader__mark svg { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
