/* =====================================================
   OH LA VACHE ! — Toulouse · V2
   Charbon · Os · Laiton — Fraunces / Hanken Grotesk
   ===================================================== */

:root {
  --charbon: #0d0a08;
  --charbon-2: #131009;
  --charbon-3: #1a1510;
  --os: #eae3d6;
  --os-dim: rgba(234, 227, 214, 0.58);
  --os-faint: rgba(234, 227, 214, 0.24);
  --laiton: #c6a15b;
  --laiton-vif: #dcb873;
  --laiton-faint: rgba(198, 161, 91, 0.16);
  --oxblood: #7a2e2b;
  --hairline: rgba(234, 227, 214, 0.1);
  --display: "Fraunces", Georgia, serif;
  --texte: "Hanken Grotesk", -apple-system, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--charbon);
  color: var(--os);
  font-family: var(--texte);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--laiton); color: var(--charbon); }

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

.label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--laiton);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--charbon);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.loader-mark img { width: 56px; opacity: 0.9; animation: breathe 2.2s ease-in-out infinite; }
.loader-mark span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--os-dim);
  letter-spacing: 0.05em;
}
@keyframes breathe { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 140;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 18px); }
  66% { transform: translate(22px, -26px); }
  100% { transform: translate(0, 0); }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.4rem, 4vw, 3.2rem);
  padding-top: calc(1.5rem + env(safe-area-inset-top));
  transition: background 0.6s var(--ease), padding 0.6s var(--ease), box-shadow 0.6s;
}
.nav.scrolled {
  background: linear-gradient(rgba(13, 10, 8, 0.93), rgba(13, 10, 8, 0.8));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: calc(0.95rem + env(safe-area-inset-top));
  padding-bottom: 0.95rem;
  box-shadow: 0 1px 0 var(--hairline);
}
.nav-brand { display: flex; align-items: center; gap: 0.85rem; }
.nav-brand img { width: 40px; height: 40px; }
.nav-brand-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}
.nav-brand-name em {
  display: block;
  font-family: var(--texte);
  font-style: normal;
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--laiton);
  margin-top: 0.1rem;
}
.nav-links {
  display: flex; gap: 2.6rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a { position: relative; color: var(--os-dim); transition: color 0.3s; padding-bottom: 4px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--laiton);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover { color: var(--os); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--os); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--laiton);
  border: 1px solid rgba(198, 161, 91, 0.45);
  padding: 0.7rem 1.7rem;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.nav-cta:hover, .nav-cta.active { background: var(--laiton); border-color: var(--laiton); color: var(--charbon); }
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--os);
  transition: transform 0.4s var(--ease);
}
.nav-burger.open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(13, 10, 8, 0.98);
  backdrop-filter: blur(22px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.nav-mobile.open a { opacity: 1; transform: none; }
.nav-mobile.open a:nth-child(1) { transition-delay: 0.08s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.14s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.26s; }
.nav-mobile a.gold { color: var(--laiton); font-style: italic; }

/* ---------- Hero (accueil) ---------- */
.hero { height: 340vh; position: relative; }
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
#heroCanvas, .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback { z-index: 0; }
#heroCanvas { z-index: 1; }
.hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(rgba(13, 10, 8, 0.32), transparent 38%, transparent 55%, rgba(13, 10, 8, 0.82) 96%);
}
.hero-frame {
  position: absolute; inset: clamp(0.9rem, 2vw, 1.6rem); z-index: 3;
  border: 1px solid rgba(234, 227, 214, 0.16);
  pointer-events: none;
}
.hero-content {
  position: absolute; z-index: 4;
  left: clamp(1.6rem, 5vw, 4.5rem);
  right: clamp(1.6rem, 5vw, 4.5rem);
  bottom: clamp(3rem, 9vh, 5.5rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2.5rem;
}
.hero-left { max-width: 900px; }
.hero-kicker { overflow: hidden; margin-bottom: 1.6rem; }
.hero-kicker span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease) 0.8s forwards;
}
@keyframes lineUp { to { transform: translateY(0); } }
.hero-title {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(3.4rem, 10.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.hero-title .ht-row { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-title .ht-inner {
  display: inline-block;
  transform: translateY(112%);
  animation: lineUp 1.2s var(--ease) forwards;
}
.hero-title .ht-row:nth-child(1) .ht-inner { animation-delay: 0.45s; }
.hero-title .ht-row:nth-child(2) .ht-inner { animation-delay: 0.6s; font-style: italic; color: var(--laiton); font-weight: 340; }
.hero-tag {
  margin-top: 1.7rem;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--os-dim);
  max-width: 40ch;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.5s forwards;
}
.hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--os-dim);
  text-align: right;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.9s forwards;
}
.hero-right strong { color: var(--laiton); font-weight: 600; }
.hero-right span { border-bottom: 1px solid var(--hairline); padding-bottom: 0.85rem; }
.hero-right span:last-child { border-bottom: none; padding-bottom: 0; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-scroll-hint {
  position: absolute; top: 50%; right: clamp(1.6rem, 4vw, 3.4rem);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 4;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--os-faint);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 2.4s forwards;
}

/* ---------- Sections communes ---------- */
.sec { padding: clamp(6rem, 15vh, 11rem) clamp(1.6rem, 6vw, 5rem); }
.sec-head { max-width: 1100px; margin-bottom: clamp(3rem, 7vh, 5rem); }
.sec-title {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 1.6rem;
}
.sec-title em { font-style: italic; color: var(--laiton); font-weight: 340; }
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Statement (accueil) ---------- */
.statement { text-align: center; position: relative; }
.statement-inner { max-width: 980px; margin: 0 auto; }
.statement p.big {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.18;
}
.statement p.big em { font-style: italic; color: var(--laiton); }
.statement .sub {
  margin-top: 2.2rem;
  color: var(--os-dim);
  font-size: 1rem;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: clamp(4rem, 9vh, 6.5rem) auto 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: 2.6rem 1.4rem;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  color: var(--os);
}
.stat-num sup { font-size: 45%; color: var(--laiton); font-style: italic; }
.stat-label {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--os-dim);
  line-height: 1.8;
}

/* ---------- Panneaux navigation (accueil) ---------- */
.panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.panel {
  position: relative;
  background: var(--charbon);
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.8rem, 3.5vw, 3rem);
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  transition: background 0.6s var(--ease);
}
.panel-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s var(--ease), transform 1.4s var(--ease);
}
.panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13, 10, 8, 0.4), rgba(13, 10, 8, 0.88));
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.panel:hover .panel-bg { opacity: 0.55; transform: scale(1); }
.panel:hover::after { opacity: 1; }
.panel > * { position: relative; z-index: 2; }
.panel-num {
  position: absolute; top: 2rem; left: clamp(1.8rem, 3.5vw, 3rem);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--laiton);
  z-index: 2;
}
.panel h3 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.05;
}
.panel p {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--os-dim);
  max-width: 34ch;
}
.panel-link {
  margin-top: 1.8rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--laiton);
}
.panel-link i {
  font-style: normal;
  transition: transform 0.5s var(--ease);
}
.panel:hover .panel-link i { transform: translateX(8px); }

/* ---------- Bandeau citation ---------- */
.pull {
  padding: clamp(6rem, 14vh, 9rem) clamp(1.6rem, 6vw, 5rem);
  text-align: center;
}
.pull blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.7rem, 4.2vw, 3.1rem);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto;
}
.pull blockquote::before { content: "« "; color: var(--laiton); }
.pull blockquote::after { content: " »"; color: var(--laiton); }
.pull cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--texte);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--os-dim);
}

/* ---------- Page header (pages internes) ---------- */
.page-head {
  padding: clamp(9rem, 22vh, 14rem) clamp(1.6rem, 6vw, 5rem) clamp(3.5rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
}
.page-head-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.32;
  filter: saturate(0.9);
}
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13, 10, 8, 0.55), var(--charbon) 92%);
}
.page-head-inner { position: relative; z-index: 2; }
.page-title {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
}
.page-title em { font-style: italic; color: var(--laiton); font-weight: 340; }
.page-sub {
  margin-top: 1.8rem;
  color: var(--os-dim);
  font-size: 1rem;
  max-width: 54ch;
}

/* ---------- Carte ---------- */
.carte-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--laiton);
  margin-bottom: clamp(3rem, 6vh, 4.5rem);
}
.carte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  max-width: 1250px;
}
.carte-bloc h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.35);
  margin-bottom: 0.6rem;
}
.carte-bloc h3 em { font-style: italic; color: var(--laiton); font-size: 0.62em; letter-spacing: 0.02em; }
.carte-bloc.mt { margin-top: 3.4rem; }
.carte-bloc ul { list-style: none; }
.carte-bloc li {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline);
}
.mi-name { font-size: 1rem; font-weight: 400; }
.mi-name small {
  display: block;
  font-size: 0.8rem;
  color: var(--os-faint);
  font-weight: 300;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(234, 227, 214, 0.2); transform: translateY(-4px); }
.mi-price {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--laiton);
}

/* ---------- Avis ---------- */
.scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  max-width: 1250px;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.score {
  background: var(--charbon-2);
  padding: clamp(2.2rem, 4vw, 3.2rem);
}
.score-note {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
}
.score-note em { font-style: italic; font-size: 40%; color: var(--laiton); }
.score-stars { display: block; color: var(--laiton); letter-spacing: 0.3em; margin: 1rem 0 0.7rem; font-size: 0.85rem; }
.score-src { font-size: 0.75rem; font-weight: 400; color: var(--os-dim); line-height: 1.7; letter-spacing: 0.06em; }
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 1250px;
}
.avis-card {
  border: 1px solid var(--hairline);
  padding: 2.2rem;
  background: var(--charbon-2);
  font-size: 0.93rem;
  color: var(--os-dim);
  display: flex; flex-direction: column; gap: 1.3rem;
}
.avis-card p { flex: 1; font-family: var(--display); font-size: 1.08rem; line-height: 1.55; font-weight: 350; color: var(--os); }
.avis-who { display: flex; align-items: center; gap: 1rem; }
.avis-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--laiton);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.avis-who strong { display: block; font-weight: 500; color: var(--os); font-size: 0.9rem; }
.avis-who small { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--os-faint); }
.avis-stars { color: var(--laiton); font-size: 0.78rem; letter-spacing: 0.24em; }
.fute {
  margin-top: clamp(4rem, 8vh, 6rem);
  max-width: 940px;
  border-left: 1px solid var(--laiton);
  padding-left: clamp(1.6rem, 4vw, 3rem);
}
.fute blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.45;
}
.fute .label { display: block; margin-bottom: 1.4rem; }

/* ---------- Réservation ---------- */
.resa-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: 1250px;
}
.hours { list-style: none; margin-top: 2.2rem; max-width: 480px; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
}
.hours li span:last-child { font-family: var(--display); font-size: 1.05rem; }
.hours .closed { color: var(--os-faint); font-style: italic; }
.infos-contact { margin-top: 2.6rem; }
.infos-tel {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 380;
  color: var(--laiton);
  display: inline-block;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.infos-tel:hover { color: var(--laiton-vif); }
.infos-contact p { color: var(--os-dim); }
.infos-small { font-size: 0.76rem; letter-spacing: 0.1em; color: var(--os-faint); margin-top: 0.5rem; }
.map {
  margin-top: 2.6rem;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.map iframe {
  width: 100%; height: 320px; border: 0; display: block;
  filter: grayscale(1) invert(0.93) contrast(0.88) sepia(0.22);
}

.resa-card {
  position: sticky; top: 120px;
  background: var(--charbon-3);
  border: 1px solid rgba(198, 161, 91, 0.28);
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.resa-card h3 {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 380;
}
.resa-card h3 em { font-style: italic; color: var(--laiton); }
.resa-sub { font-size: 0.82rem; color: var(--os-faint); margin: 0.6rem 0 2rem; }
.field { margin-bottom: 1.3rem; flex: 1; }
.field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--os-dim);
  margin-bottom: 0.55rem;
}
.field input, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(234, 227, 214, 0.22);
  border-radius: 0;
  color: var(--os);
  font-family: var(--texte);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c6a15b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--laiton);
}
.field input::placeholder { color: var(--os-faint); }
.field-row { display: flex; gap: 1.6rem; }
.resa-error { color: #cf6b52; font-size: 0.84rem; margin: 0.4rem 0 0.8rem; }

.btn {
  display: inline-block;
  background: var(--laiton);
  color: var(--charbon);
  font-family: var(--texte);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.15rem 2.6rem;
  border: 1px solid var(--laiton);
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s, transform 0.4s var(--ease);
}
.btn:hover { background: transparent; color: var(--laiton); }
.btn-ghost { background: transparent; color: var(--laiton); }
.btn-ghost:hover { background: var(--laiton); color: var(--charbon); }
.btn-full { width: 100%; text-align: center; margin-top: 1rem; }

.resa-done { text-align: center; padding: 1.2rem 0 0.5rem; }
.resa-done-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 380;
  color: var(--laiton);
  margin-bottom: 1rem;
}
.resa-done p { font-size: 0.95rem; color: var(--os-dim); }
.resa-done-note { margin-top: 1.6rem; font-size: 0.78rem !important; color: var(--os-faint) !important; }

/* ---------- CTA bande ---------- */
.cta-band {
  padding: clamp(6rem, 14vh, 9rem) clamp(1.6rem, 6vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 2.4rem;
}
.cta-band h2 em { font-style: italic; color: var(--laiton); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(3.5rem, 8vh, 5.5rem) clamp(1.6rem, 6vw, 5rem) 2.8rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  max-width: 1250px;
  margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 52px; }
.footer-brand-name { font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.footer-brand-name em {
  display: block;
  font-family: var(--texte);
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--laiton);
  margin-top: 0.2rem;
}
.footer-mid { text-align: center; font-size: 0.88rem; color: var(--os-dim); }
.footer-mid a { color: var(--laiton); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; text-align: right; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--os-dim); }
.footer-links a:hover { color: var(--laiton); }
.footer-bottom {
  max-width: 1250px;
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--os-faint);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ---------- Mobile ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { height: 280vh; }
  .hero-content { flex-direction: column; align-items: flex-start; }
  .hero-right { align-items: flex-start; text-align: left; white-space: normal; }
  .hero-scroll-hint { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: none; }
  .panels { grid-template-columns: 1fr; }
  .panel { min-height: 300px; }
  .carte-grid { grid-template-columns: 1fr; }
  .scores { grid-template-columns: 1fr; }
  .avis-cards { grid-template-columns: 1fr; max-width: 580px; }
  .resa-grid { grid-template-columns: 1fr; }
  .resa-card { position: static; }
  .field-row { flex-direction: column; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-mid { text-align: left; }
  .footer-links { text-align: left; }
}

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