/* ==========================================================================
   Restaurant Le Lien — Belfort
   Feuille de style principale
   ========================================================================== */

:root {
  --cream: #f6f2e7;
  --beige: #e0d6c6;
  --taupe: #968477;
  --taupe-dark: #7a6a5e;
  --ink: #141618;
  --charcoal: #303133;
  --grey: #777777;
  --white: #ffffff;
  --line: rgba(20, 22, 24, .12);
  --font-serif: 'Cormorant', Georgia, serif;
  --font-label: 'Jost', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--taupe); color: var(--white); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; color: var(--ink); }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container--narrow { width: min(860px, 92%); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Préchargeur
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader img { width: 72px; opacity: 0; animation: preloaderPulse 1.4s ease infinite alternate; }
@keyframes preloaderPulse { from { opacity: .25; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.preloader.is-done { opacity: 0; visibility: hidden; }

/* --------------------------------------------------------------------------
   En-tête / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  width: min(1360px, 94%); margin-inline: auto;
  transition: height .4s var(--ease);
}
/* Le fond flouté vit dans un pseudo-élément : backdrop-filter posé
   directement sur le header transformerait celui-ci en conteneur de
   positionnement pour le menu mobile (position: fixed), qui se
   retrouverait alors coincé dans la barre au lieu de couvrir l'écran
   (bug visible sur iPhone après un défilement). */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(246, 242, 231, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .45s var(--ease);
}
.site-header.is-solid::before { opacity: 1; }
.site-header.is-solid { box-shadow: 0 1px 0 var(--line); }
/* Menu mobile ouvert : le fond du header s'efface, seul le voile sombre
   du menu doit être visible */
body.nav-open .site-header::before { opacity: 0; }
body.nav-open .site-header { box-shadow: none; }
.site-header.is-solid .site-header__inner { height: 72px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.is-solid .brand img { height: 42px; }

/* Logo blanc sur héros : on inverse via filtre tant que le header est transparent */
.site-header--overlay:not(.is-solid) .brand img { filter: brightness(0) invert(1); }
.site-header--overlay:not(.is-solid) { --nav-color: var(--white); }
.site-header { --nav-color: var(--ink); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-label);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--nav-color);
  position: relative; padding: 6px 0;
  transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.btn-reserve {
  font-family: var(--font-label);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  padding: 12px 26px; border: 1px solid var(--nav-color); color: var(--nav-color);
  transition: background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn-reserve:hover { background: var(--taupe); border-color: var(--taupe); color: var(--white); }

.burger { display: none; z-index: 1102; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--nav-color); transition: transform .4s var(--ease), opacity .3s, background .3s;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 27px; }
body.nav-open .burger span { background: var(--white); }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Héros
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  color: var(--white);
}
.hero--short { min-height: 62svh; }

.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; animation: kenburns 9s ease forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 19, .45) 0%, rgba(16, 18, 19, .30) 45%, rgba(16, 18, 19, .62) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 140px 20px 90px; max-width: 900px; }
.hero__symbol { width: 64px; margin: 0 auto 26px; filter: brightness(0) invert(1); opacity: .9; }
.hero__eyebrow {
  font-family: var(--font-label); font-size: 13px;
  letter-spacing: .42em; text-transform: uppercase;
  margin-bottom: 22px; color: var(--beige);
}
.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400; color: var(--white); line-height: 1.05;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero__sub {
  margin: 26px auto 40px; max-width: 560px;
  font-size: 17px; font-weight: 300; line-height: 1.9; color: rgba(255, 255, 255, .88);
}
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); opacity: .8;
  font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 44px; background: rgba(255,255,255,.6);
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Animation d'entrée du héros */
.hero__content > * { opacity: 0; transform: translateY(26px); animation: heroIn 1.1s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .25s; }
.hero__content > *:nth-child(2) { animation-delay: .40s; }
.hero__content > *:nth-child(3) { animation-delay: .55s; }
.hero__content > *:nth-child(4) { animation-delay: .70s; }
.hero__content > *:nth-child(5) { animation-delay: .85s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-label); font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 38px;
  transition: background .35s, color .35s, border-color .35s, transform .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.btn--solid:hover { background: var(--taupe); border-color: var(--taupe); }
.btn--light { background: var(--white); color: var(--ink); border: 1px solid var(--white); }
.btn--light:hover { background: transparent; color: var(--white); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--outline-light { border: 1px solid rgba(255,255,255,.8); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section--white { background: var(--white); }
.section--beige { background: var(--beige); }
.section--dark { background: var(--ink); color: rgba(255,255,255,.82); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); }
.section-head--left { text-align: left; margin-inline: 0; }
.eyebrow {
  font-family: var(--font-label); font-size: 12px;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--taupe); display: block; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 400; }
.section-head h2 em { font-style: italic; font-weight: 300; }
.section-head p { margin-top: 18px; color: var(--grey); font-weight: 300; }
.ornament { width: 42px; margin: 26px auto 0; opacity: .55; }
.section-head--left .ornament { margin-inline: 0; }

/* Révélation au défilement */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.reveal--left { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--zoom { transform: scale(.96); }
.reveal.is-visible { opacity: 1; transform: translateZ(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
/* Écrans tactiles (iPhone/iPad) : Safari peut faire clignoter les éléments
   translatés horizontalement pendant le défilement — on ne garde qu'une
   apparition verticale douce, sans aucun décalage latéral. */
@media (hover: none) {
  .reveal, .reveal--left, .reveal--right, .reveal--zoom {
    transform: translateY(14px);
    transition-duration: .5s;
  }
  .reveal.is-visible { transform: translateZ(0); }
  .reveal[data-delay="1"] { transition-delay: .06s; }
  .reveal[data-delay="2"] { transition-delay: .12s; }
  .reveal[data-delay="3"] { transition-delay: .18s; }
  .reveal[data-delay="4"] { transition-delay: .24s; }
}

/* --------------------------------------------------------------------------
   Blocs image / texte
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform 1.4s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__media--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; overflow: visible; }
.split__media--duo img { aspect-ratio: 3 / 4; }
.split__media--duo img:last-child { margin-top: 48px; }
.split__body h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 400; margin-bottom: 22px; }
.split__body h2 em { font-style: italic; font-weight: 300; }
.split__body p { color: var(--grey); font-weight: 300; margin-bottom: 18px; }
.split__body .btn { margin-top: 14px; }

blockquote.pull {
  border-left: 2px solid var(--taupe);
  padding-left: 24px; margin: 28px 0;
  font-family: var(--font-serif); font-size: 21px; font-style: italic;
  color: var(--charcoal); line-height: 1.5;
}
blockquote.pull cite { display: block; margin-top: 12px; font-family: var(--font-label); font-style: normal; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--taupe); }

/* --------------------------------------------------------------------------
   Cartes (menu / boissons) — accueil
   -------------------------------------------------------------------------- */
.cards-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card-link {
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-end;
  color: var(--white);
}
.card-link__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.4s var(--ease); }
.card-link:hover .card-link__bg { transform: scale(1.07); }
.card-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,18,19,0) 30%, rgba(16,18,19,.78) 100%); }
.card-link__body { position: relative; z-index: 2; padding: 38px; width: 100%; }
.card-link__body .eyebrow { color: var(--beige); }
.card-link__body h3 { color: var(--white); font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.card-link__body span.cta {
  font-family: var(--font-label); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 4px;
  transition: border-color .3s;
}
.card-link:hover span.cta { border-color: var(--white); }

/* --------------------------------------------------------------------------
   Infos pratiques
   -------------------------------------------------------------------------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); text-align: center; }
.info-grid__item { padding: 44px 28px; background: var(--white); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.info-grid__item:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(20,22,24,.18); }
.info-grid__item .icon { font-size: 26px; color: var(--taupe); margin-bottom: 18px; display: block; }
.info-grid__item h3 { font-size: 24px; margin-bottom: 12px; font-weight: 500; }
.info-grid__item p { color: var(--grey); font-weight: 300; font-size: 15px; }
.info-grid__item a { border-bottom: 1px solid var(--beige); transition: border-color .3s, color .3s; }
.info-grid__item a:hover { color: var(--taupe); border-color: var(--taupe); }

/* --------------------------------------------------------------------------
   Avis
   -------------------------------------------------------------------------- */
.testimonials { position: relative; max-width: 780px; margin: 0 auto; text-align: center; min-height: 300px; }
.testimonial {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 0 10px;
}
.testimonial.is-active { opacity: 1; transform: none; pointer-events: auto; }
.testimonial p { font-family: var(--font-serif); font-size: clamp(19px, 2.4vw, 25px); font-style: italic; line-height: 1.6; color: var(--white); }
.testimonial cite { font-family: var(--font-label); font-style: normal; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--beige); }
.testimonial .stars { color: var(--beige); letter-spacing: 6px; font-size: 14px; }
.testimonials-dots { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.testimonials-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background .3s, transform .3s; }
.testimonials-dots button.is-active { background: var(--beige); transform: scale(1.4); }

/* --------------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; margin-bottom: 48px; }
.filters button {
  font-family: var(--font-label); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey); padding: 8px 4px; position: relative;
  transition: color .3s;
}
.filters button::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--taupe); transform: scaleX(0); transition: transform .35s var(--ease);
}
.filters button:hover { color: var(--ink); }
.filters button.is-active { color: var(--ink); }
.filters button.is-active::after { transform: scaleX(1); }

.gallery { columns: 3 300px; column-gap: 18px; }
.gallery__item {
  break-inside: avoid; margin-bottom: 18px;
  overflow: hidden; position: relative; cursor: zoom-in;
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.gallery__item.is-shown { opacity: 1; transform: none; }
.gallery__item img { width: 100%; transition: transform 1.2s var(--ease), filter .6s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '+'; position: absolute; inset: auto 14px 14px auto;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(246,242,231,.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; opacity: 0; transform: scale(.6);
  transition: opacity .35s, transform .35s var(--ease);
}
.gallery__item:hover::after { opacity: 1; transform: scale(1); }

/* Visionneuse */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(16, 18, 19, .96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .45s, visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__btn {
  position: absolute; color: rgba(255,255,255,.75); font-size: 34px; padding: 18px;
  transition: color .3s, transform .3s;
}
.lightbox__btn:hover { color: var(--white); transform: scale(1.1); }
.lightbox__close { top: 18px; right: 22px; }
.lightbox__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-family: var(--font-label); font-size: 12px; letter-spacing: .3em; }

/* --------------------------------------------------------------------------
   Page carte / menus
   -------------------------------------------------------------------------- */
.menu-note { text-align: center; font-size: 14px; color: var(--grey); font-weight: 300; max-width: 560px; margin: 26px auto 0; }
.menu-block { background: var(--white); border: 1px solid var(--line); padding: clamp(34px, 5vw, 60px); margin-bottom: 34px; }
.menu-block--dark { background: var(--ink); border-color: transparent; }
.menu-block--dark * { color: var(--white); }
.menu-block--dark .menu-dish small, .menu-block--dark .menu-block__note { color: rgba(255,255,255,.6); }
.menu-block__head { text-align: center; margin-bottom: 34px; }
.menu-block__head .eyebrow { margin-bottom: 8px; }
.menu-block__head h3 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 400; }
.menu-block__price { font-family: var(--font-serif); font-size: 26px; font-style: italic; color: var(--taupe); margin-top: 8px; display: block; }
.menu-sep { width: 48px; height: 1px; background: var(--beige); margin: 22px auto; }
.menu-courses { text-align: center; }
.menu-courses li { font-family: var(--font-serif); font-size: 21px; padding: 14px 0; }
.menu-courses li + li { border-top: 1px dashed var(--line); }
.menu-block--dark .menu-courses li + li { border-color: rgba(255,255,255,.14); }
.menu-block__note { text-align: center; font-size: 13px; color: var(--grey); margin-top: 26px; font-weight: 300; }

.menu-cat { font-family: var(--font-label); font-size: 13px; letter-spacing: .34em; text-transform: uppercase; color: var(--taupe); text-align: center; margin: 38px 0 18px; }
.menu-dish { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; }
.menu-dish__name { font-family: var(--font-serif); font-size: 21px; }
.menu-dish__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-5px); }
.menu-dish__price { font-family: var(--font-serif); font-size: 19px; font-style: italic; color: var(--taupe); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Widget de réservation TheFork intégré
   -------------------------------------------------------------------------- */
/* Sans cadre ni fond : le widget a son propre habillage. La hauteur est
   généreuse pour que tout le parcours de réservation tienne sans faire
   apparaître de barre de défilement interne. */
.thefork-embed { max-width: 760px; margin: 0 auto; }
.thefork-embed iframe { display: block; width: 100%; height: 1000px; border: 0; }
@media (max-width: 560px) { .thefork-embed iframe { height: 860px; } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: var(--font-label); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(150,132,119,.14); }
.form-check { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--grey); font-weight: 300; margin-bottom: 26px; }
.form-check input { margin-top: 4px; accent-color: var(--taupe); }

.map-wrap { position: relative; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; filter: grayscale(.35) sepia(.12); transition: filter .5s; }
.map-wrap:hover iframe { filter: none; }

/* --------------------------------------------------------------------------
   Bandeau appel à l'action
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative; padding: clamp(90px, 12vw, 150px) 0;
  background-size: cover; background-position: center; background-attachment: fixed;
  text-align: center; color: var(--white);
}
@media (hover: none) { .cta-banner { background-attachment: scroll; } }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: rgba(16,18,19,.66); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(30px, 4.6vw, 52px); font-weight: 400; margin-bottom: 16px; }
.cta-banner p { max-width: 540px; margin: 0 auto 36px; font-weight: 300; color: rgba(255,255,255,.85); }
.cta-banner .hero__actions { margin-top: 0; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding: clamp(60px, 8vw, 100px) 0 0; font-size: 14px; font-weight: 300; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); padding-bottom: 60px; }
.site-footer__brand img { height: 64px; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 20px; }
.site-footer h4 { color: var(--white); font-family: var(--font-label); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: var(--beige); }
.site-footer .socials { display: flex; gap: 14px; margin-top: 18px; }
.site-footer .socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.site-footer .socials a:hover { background: var(--taupe); border-color: var(--taupe); color: var(--white); }
.site-footer .socials svg { width: 16px; height: 16px; fill: currentColor; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.45);
}
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s, visibility .4s, transform .4s, background .3s;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--taupe); }

/* --------------------------------------------------------------------------
   Pages internes (héros court + prose légale)
   -------------------------------------------------------------------------- */
.prose h2 { font-size: 26px; margin: 42px 0 16px; }
.prose p { margin-bottom: 16px; color: var(--charcoal); font-weight: 300; }
.prose a { color: var(--taupe); text-decoration: underline; text-underline-offset: 3px; }

.partner-placeholder { text-align: center; padding: 40px 0 10px; }
.partner-placeholder .symbol { width: 74px; margin: 0 auto 30px; opacity: .5; }
.partner-placeholder h3 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; font-style: italic; margin-bottom: 16px; }
.partner-placeholder p { color: var(--grey); font-weight: 300; max-width: 520px; margin: 0 auto; }

/* Équipe */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card { position: relative; overflow: hidden; }
.team-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.3s var(--ease); }
.team-card:hover img { transform: scale(1.05); }
.team-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(16,18,19,.82));
  color: var(--white); font-family: var(--font-serif); font-size: 21px; font-style: italic;
}

/* --------------------------------------------------------------------------
   Blog (préparé pour plus tard — articles chargés depuis data/articles.js)
   -------------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(20,22,24,.2); }
.blog-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.blog-card__body { padding: 26px; }
.blog-card__date { font-family: var(--font-label); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--taupe); }
.blog-card h3 { font-size: 23px; margin: 10px 0 12px; font-weight: 500; }
.blog-card p { font-size: 14.5px; color: var(--grey); font-weight: 300; }

/* --------------------------------------------------------------------------
   Adaptation mobile
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 12px; letter-spacing: .14em; }
}

@media (max-width: 960px) {
  .burger { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 1100;
    flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(16, 18, 19, .97);
    opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .main-nav a {
    color: var(--white); font-size: 17px; letter-spacing: .24em; padding: 13px 0;
    opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  }
  body.nav-open .main-nav a { opacity: 1; transform: none; }
  body.nav-open .main-nav a:nth-child(1) { transition-delay: .10s; }
  body.nav-open .main-nav a:nth-child(2) { transition-delay: .15s; }
  body.nav-open .main-nav a:nth-child(3) { transition-delay: .20s; }
  body.nav-open .main-nav a:nth-child(4) { transition-delay: .25s; }
  body.nav-open .main-nav a:nth-child(5) { transition-delay: .30s; }
  body.nav-open .main-nav a:nth-child(6) { transition-delay: .35s; }
  body.nav-open .main-nav a:nth-child(7) { transition-delay: .40s; }
  .btn-reserve--header { display: none; }

  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .cards-duo { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --header-h: 74px; }
  .brand img { height: 42px; }
  .hero__sub { font-size: 15px; }
  .btn { padding: 14px 28px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .gallery { columns: 2 150px; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; }
  .map-wrap iframe { height: 360px; }
  .split__media--duo img:last-child { margin-top: 26px; }
}

/* Accessibilité : réduire les animations si demandé */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
