/* ============================================================
   LE NABU — Saint-Jean-de-Niost
   Design system : sombre & chaleureux, serif élégante,
   accents dorés et bordeaux (fidèle au croquis)
   ============================================================ */

:root {
  --bg: #16110d;
  --bg-2: #1d1712;
  --bg-3: #262019;
  --surface: #211a14;
  --cream: #f3ebdc;
  --cream-soft: #d9cfbd;
  --muted: #a89b85;
  --gold: #c6a268;
  --gold-soft: #9d8258;
  --bordeaux: #7d1f2e;
  --bordeaux-deep: #641823;
  --kraft: #b9906a; /* fond kraft de la charte graphique 2023 */
  --kraft-soft: #9c7a58;
  --line: rgba(243, 235, 220, 0.12);
  --line-soft: rgba(243, 235, 220, 0.07);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-logo: "Dorsa", "Cormorant Garamond", serif; /* typographie du logo (charte 2023) */
  --font-body: "Jost", "Segoe UI", sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 104px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--bordeaux); color: var(--cream); }

/* ------------------------------------------------ typographie */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(52px, 9vw, 118px); }
h2 { font-size: clamp(34px, 4.6vw, 54px); }
h3 { font-size: clamp(24px, 2.6vw, 31px); }

.lead { font-size: 18px; color: var(--cream-soft); max-width: 62ch; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--kraft); /* note kraft — charte 2023 */
}
.label--bare::before { display: none; }

.italic-note { font-style: italic; font-family: var(--font-display); font-size: 1.15em; }

/* ------------------------------------------------ layout */

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.wrap--narrow { width: min(880px, calc(100% - 48px)); margin: 0 auto; }

section { position: relative; }

.section-pad { padding: var(--space-6) 0; }

.section-head { margin-bottom: var(--space-5); }

#contact { padding-bottom: 0; }

@media (max-width: 720px) {
  /* Écarts plus resserrés et réguliers en mobile pour un rythme harmonieux
     entre les sections (le bureau garde ses espacements d'origine). */
  .section-pad { padding: 64px 0; }
  .section-head { margin-bottom: 24px; }
  /* En-têtes sans h2 (ex. "Ateliers") : le label est directement suivi du
     contenu, l'écart doit donc rester court. */
  .section-head:not(:has(h2)) { margin-bottom: 28px; }
  #contact { padding-bottom: 40px; }
  .partners-section { padding-bottom: 40px; }
  #ateliers { padding-top: 40px; }
}
.section-head h2 { margin-top: 18px; }


/* ------------------------------------------------ boutons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }

.btn--solid { background: var(--cream); color: #1a140f; border-color: var(--cream); }
.btn--solid:hover { background: var(--kraft); border-color: var(--kraft); color: #17110c; } /* note kraft — charte 2023 */

.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(243, 235, 220, 0.4); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(243, 235, 220, 0.07); }

.btn--gold { background: transparent; color: var(--gold); border-color: rgba(198, 162, 104, 0.45); }
.btn--gold:hover { background: var(--gold); color: #17110c; border-color: var(--gold); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--cream); }

/* ------------------------------------------------ header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(18, 13, 10, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
@media (max-width: 720px) {
  /* Sur mobile, le header garde toujours un fond solide : le logo et "Le Nabu"
     restent lisibles quelle que soit la photo derrière, sans attendre le scroll. */
  .site-header { background: rgba(18, 13, 10, 0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-soft); }
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
}
.nav__logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
}
.nav__logo:hover img { transform: rotate(-8deg) scale(1.05); }
.nav__logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
/* mot-symbole dans la typographie du logo (Dorsa — charte 2023) */
.nav__wordmark {
  font-family: var(--font-logo);
  font-size: 30px;
  letter-spacing: 0.09em;
  color: var(--cream);
  line-height: 1;
  transform: translateY(1px);
}
@media (max-width: 460px) { .nav__wordmark { display: none; } }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-left: auto;
}
.nav__links a:not(.btn) {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.btn):hover,
.nav__links a.active { color: var(--cream); }
.nav__links a:not(.btn):hover::after,
.nav__links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { padding: 11px 22px; }

.nav__socials { display: flex; align-items: center; gap: 6px; }
.nav__socials a,
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--cream-soft);
  transition: color 0.3s, background 0.3s;
}
.nav__socials a:hover, .social-btn:hover { color: var(--gold); background: rgba(243, 235, 220, 0.06); }
.nav__socials svg, .social-btn svg { width: 17px; height: 17px; }

.nav__burger {
  display: none;
  position: relative;
  z-index: 10;
  margin-left: auto;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  pointer-events: auto;
}
.nav__burger span {
  pointer-events: none;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

@media (max-width: 1020px) {
  .nav__links {
    position: fixed;
    z-index: 5;
    top: 74px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(18, 13, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 12px 28px 28px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--line-soft); }
  .nav__links li:last-child { border-bottom: none; padding-top: 18px; }
  .nav__links a:not(.btn) { display: block; padding: 15px 2px; font-size: 13px; }
  .nav__cta { width: 100%; }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav__socials { display: none; }
}

/* ------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: 100vh;   /* repli pour les navigateurs sans unité svh (le hero ne doit jamais s'effondrer) */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero--short { min-height: 78vh; min-height: 78svh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22, 17, 13, 0.55) 0%, rgba(22, 17, 13, 0.18) 40%, rgba(22, 17, 13, 0.88) 100%),
    linear-gradient(100deg, rgba(22, 17, 13, 0.72) 0%, rgba(22, 17, 13, 0.15) 65%);
}

.hero__content { padding: 0 0 clamp(56px, 9vh, 110px); max-width: 780px; }
.hero__content .label { margin-bottom: 20px; }
/* titre hero dans la typographie du logo (Dorsa — charte 2023) */
.hero__content h1 {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.98;
  font-size: clamp(72px, 12vw, 172px);
}
.hero__tagline {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--cream);
}
.hero__tagline::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--kraft); /* note kraft — charte 2023 */
  margin-top: 22px;
}
.hero__meta {
  margin-top: 18px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--cream-soft);
}
.hero__meta span { color: var(--gold); padding: 0 8px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero__pills a {
  padding: 9px 18px;
  border: 1px solid rgba(198, 162, 104, 0.45);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  backdrop-filter: blur(6px);
  background: rgba(22, 17, 13, 0.25);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__pills a:hover { background: var(--kraft); border-color: var(--kraft); color: #17110c; } /* note kraft — charte 2023 */

.hero__infobar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(243, 235, 220, 0.16);
  background: linear-gradient(180deg, rgba(18, 13, 10, 0.25), rgba(18, 13, 10, 0.55));
  backdrop-filter: blur(8px);
}
.hero__infobar-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.hero__infobar-grid a { color: var(--gold); transition: color 0.3s; }
.hero__infobar-grid a:hover { color: var(--cream); }
@media (max-width: 880px) { .hero__infobar { display: none; } }
@media (min-width: 881px) {
  .hero:has(.hero__infobar) .hero__content { padding-bottom: clamp(110px, 16vh, 170px); }
  .hero:has(.hero__infobar) .hero__scroll { bottom: 78px; }
}

@media (max-width: 720px) {
  /* Réserve la place du header fixe : sur les mobiles à faible hauteur (avec
     barre d'adresse visible), le bloc de texte du hero peut sinon remonter
     jusque sous le header et se faire recouvrir/couper. */
  .hero { padding-top: 96px; }
  .hero__content .label { margin-bottom: 14px; }
  .hero__content h1 { font-size: clamp(52px, 15vw, 96px); }
  .hero__tagline { margin-top: 16px; }
  .hero__pills { margin-top: 18px; }
  .hero__actions { margin-top: 24px; }
}

.hero__scroll {
  position: absolute;
  right: 30px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--kraft), transparent); /* note kraft — charte 2023 */
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ------------------------------------------------ bandeau horaires */

.hours-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: var(--space-5) 0;
}
.hours-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: var(--space-4);
  align-items: center;
}
.hours-band__grid h2 { margin-top: 14px; font-size: clamp(28px, 3.4vw, 40px); }
.hours-list { display: grid; gap: 10px; font-size: 15px; }
.hours-list__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.hours-list__row dt { color: var(--cream-soft); }
.hours-list__row dd { font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }
.hours-list__row .closed { color: var(--muted); font-style: italic; }
@media (max-width: 920px) {
  .hours-band__grid { grid-template-columns: 1fr; gap: var(--space-3); }
}
@media (max-width: 720px) {
  .hours-band { padding: 40px 0; }
}

/* ------------------------------------------------ univers (cartes) */

.universe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1020px) { .universe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .universe-grid { grid-template-columns: 1fr; } }

.universe-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.universe-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 162, 104, 0.35);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.8);
}
.universe-card__media { aspect-ratio: 4 / 3.1; overflow: hidden; }
.universe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.universe-card:hover .universe-card__media img { transform: scale(1.06); }
.universe-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.universe-card__body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.universe-card__body .link-arrow { font-size: 11px; }

/* ------------------------------------------------ galerie marquee */

.marquee {
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:not(#instagram-marquee) .marquee__track { animation-duration: 80s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  width: clamp(230px, 26vw, 330px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.marquee__item--wide { aspect-ratio: 4 / 3; width: clamp(300px, 34vw, 430px); }
.marquee__item img { width: 100%; height: 100%; object-fit: cover; }
.marquee-note {
  text-align: center;
  margin-top: 20px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Galerie Instagram : grille façon vrai widget (pas de bordure colorée, coins arrondis, gap serré) */
#instagram-marquee .marquee__track { gap: 6px; }
#instagram-marquee .marquee__item {
  width: clamp(240px, 27vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}
#instagram-marquee .marquee__item a { position: relative; display: block; width: 100%; height: 100%; }
#instagram-marquee .ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
#instagram-marquee .ig-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
}
#instagram-marquee .ig-stat svg { width: 19px; height: 19px; }
#instagram-marquee .ig-reel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
#instagram-marquee .ig-reel-badge svg { width: 16px; height: 16px; }
#instagram-marquee .marquee__item a:hover .ig-overlay,
#instagram-marquee .marquee__item a:focus-visible .ig-overlay {
  opacity: 1;
}

/* ------------------------------------------------ à propos / citation */

.about-feature {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 14vh, 150px) 0;
  overflow: hidden;
}
.about-feature__bg { position: absolute; inset: 0; z-index: -2; }
.about-feature__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 15, 11, 0.93) 0%, rgba(20, 15, 11, 0.72) 55%, rgba(20, 15, 11, 0.55) 100%);
}
.about-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) {
  .about-feature__grid { grid-template-columns: 1fr; }
  /* En pile mobile, le titre doit précéder la citation (ordre de lecture),
     même si la citation reste en premier dans le HTML pour le bureau. */
  .about-feature__grid > .quote { order: 2; margin-top: 28px; }
  .about-feature__grid > div { order: 1; }
}
@media (max-width: 720px) {
  /* Le titre "À propos" doit apparaître tout en haut de la photo, juste
     après la galerie ; écarts haut/bas égaux pour rester harmonieux. */
  .about-feature { padding-top: 64px; padding-bottom: 64px; }
  /* La photo de fond de "À propos" couvre tout le padding-top ci-dessus,
     donc l'écart visible avec la galerie doit venir d'ici (fond uni). */
  .marquee-note { margin-bottom: 40px; }
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.4;
  padding-left: 26px;
  border-left: 2px solid var(--bordeaux);
}
.about-feature h2 { margin: 16px 0 20px; }
.about-feature p { color: var(--cream-soft); max-width: 52ch; }
.about-feature .btn { margin-top: 30px; }

/* ------------------------------------------------ agenda / événement */

.event-card {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 880px) { .event-card { grid-template-columns: 1fr; } }
.event-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  display: inline-block;
  background: var(--gold);
  color: #221a12;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--radius);
}
.event-card__body h3 { margin: 18px 0 14px; font-size: clamp(28px, 3vw, 38px); }
.event-card__body p { color: var(--cream-soft); max-width: 56ch; }
.event-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.btn--social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: border-color 0.3s, color 0.3s;
}
.btn--social:hover { border-color: var(--gold); color: var(--gold); }
.btn--social svg { width: 15px; height: 15px; }

/* ------------------------------------------------ entreprises */

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 920px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.offer-card:hover { transform: translateY(-5px); border-color: rgba(198, 162, 104, 0.3); }
.offer-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.offer-card:hover .offer-card__media img { transform: scale(1.05); }
.offer-card__body { padding: 26px 24px 30px; }
.offer-card__body h3 { font-size: 24px; margin-bottom: 10px; }
.offer-card__body p { font-size: 14.5px; color: var(--muted); }

/* ------------------------------------------------ CTA bordeaux */

/* bandeau CTA au fond kraft de la charte 2023, texte noir RAL 9005 */
.cta-band { background: var(--kraft); color: #1d1d1b; padding: clamp(60px, 9vh, 96px) 0; }
.cta-band .btn--solid { color: #1d1d1b; }
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: center;
}
@media (max-width: 820px) { .cta-band__grid { grid-template-columns: 1fr; } }
.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  max-width: 24ch;
}
.cta-band .btn--solid { background: var(--cream); }
.cta-band .btn--solid:hover { background: #fff; border-color: #fff; }

/* ------------------------------------------------ contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: 4px; margin-top: 26px; }
.contact-list a.contact-row:hover .contact-row__value { color: var(--gold); }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-row__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-row__value { font-size: 16.5px; transition: color 0.3s; }

/* ------------------------------------------------ menus (restaurant) */

.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5.5vw, 80px);
  align-items: center;
  padding: var(--space-6) 0;
}
.menu-section--flip .menu-section__media { order: 2; }
.menu-section--flip .menu-section__media-group { order: 2; }

/* generous variant: the photo column gets more room than the text column
   (used where the imagery itself should do the selling — bar-a-vin's duo shots) */
.menu-section--wide-media { grid-template-columns: 7fr 5fr; }
.menu-section--wide-media.menu-section--flip { grid-template-columns: 5fr 7fr; }

/* even more generous: reserved for the one section that should feel most immersive */
.menu-section--wide-media--xl { grid-template-columns: 3fr 2fr; }
.menu-section--wide-media--xl.menu-section--flip { grid-template-columns: 2fr 3fr; }
.menu-section--wide-media--xl .menu-section__media-group .menu-section__media,
.menu-section--wide-media--xl .menu-section__media-group .menu-section__accent {
  aspect-ratio: 4 / 5.6;
}

@media (max-width: 880px) {
  .menu-section,
  .menu-section--wide-media,
  .menu-section--wide-media.menu-section--flip,
  .menu-section--wide-media--xl,
  .menu-section--wide-media--xl.menu-section--flip { grid-template-columns: 1fr; padding: var(--space-5) 0; }
  .menu-section--flip .menu-section__media { order: 0; }
  .menu-section--flip .menu-section__media-group { order: 0; }
  .menu-section--wide-media--xl .menu-section__media-group .menu-section__media,
  .menu-section--wide-media--xl .menu-section__media-group .menu-section__accent {
    aspect-ratio: 4 / 5;
  }
}
.menu-section__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.menu-section__media--tall { aspect-ratio: 3 / 3.6; }
.menu-section__media--wide { aspect-ratio: 3 / 2.15; }
.menu-section__media img { width: 100%; height: 100%; object-fit: cover; }

/* wrapper used when a section pairs its main photo with a companion photo:
   two equal, gently-cropped frames side by side, joined by a thin gold seam */
.menu-section__media-group {
  display: flex;
  gap: 2px;
  background: var(--gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-section__media-group .menu-section__media,
.menu-section__media-group .menu-section__accent {
  flex: 1 1 0;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: hidden;
}
.menu-section__media-group .menu-section__media img,
.menu-section__media-group .menu-section__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* tighter crop for a photo whose default framing shows an unwanted edge (e.g. a plate rim) */
.menu-section__media-group img.img-zoom {
  transform: scale(1.22);
  object-position: center 25%;
}
.menu-section__body h2 { margin: 16px 0 12px; }
.menu-section__body > p { color: var(--cream-soft); max-width: 56ch; }

.menu-list { margin-top: 26px; display: grid; gap: 22px; }
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.3;
}
.menu-item__head h3, .menu-item__head .menu-item__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
}
.menu-item__dots { flex: 1; border-bottom: 1px dotted rgba(243, 235, 220, 0.3); transform: translateY(-4px); }
.menu-item__price {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--kraft); /* note kraft — charte 2023 */
  font-variant-numeric: tabular-nums;
}
.menu-item__desc { font-size: 14px; color: var(--muted); margin-top: 5px; max-width: 52ch; }
.menu-note {
  margin-top: 24px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream-soft);
  padding-left: 18px;
  border-left: 2px solid var(--gold-soft);
}

/* ------------------------------------------------ trois colonnes cave */

.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 920px) { .trio-grid { grid-template-columns: 1fr; } }
.trio-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 30px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.trio-card:hover { transform: translateY(-5px); border-color: rgba(198, 162, 104, 0.3); }
.trio-card svg { width: 30px; height: 30px; color: var(--gold); }
.trio-card h3 { font-size: 25px; }
.trio-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--kraft); /* note kraft — charte 2023 */
  margin: 14px auto 0;
}
.trio-card p { font-size: 14.5px; color: var(--muted); }

/* ------------------------------------------------ galerie mosaïque */

.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
.mosaic__item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 4; }
.mosaic__item--landscape { aspect-ratio: 4 / 3; grid-column: span 2; }
.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.mosaic__item:hover img { transform: scale(1.05); }

/* ------------------------------------------------ page header (sous-pages) */

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .hero__content { padding-bottom: clamp(46px, 7vh, 80px); }
.page-hero h1 { font-size: clamp(58px, 9vw, 120px); }

/* ------------------------------------------------ footer */

.site-footer {
  background: #120d0a;
  border-top: 1px solid var(--line-soft);
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 62px; border-radius: 50%; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 34ch; }
.footer-brand .nav__socials { margin-top: 18px; margin-left: -10px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--kraft); /* note kraft — charte 2023 */
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--cream-soft); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 14.5px; color: var(--cream-soft); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: var(--space-3);
  font-size: 12px;
  color: var(--muted);
}

/* ------------------------------------------------ reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal--left, .reveal--right { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .hero__scroll::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ------------------------------------------------ partenaires */

.partners-section { padding-top: 0; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .partners-grid { grid-template-columns: 1fr; } }

.partner-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 32px 34px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.partner-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 162, 104, 0.07), transparent 72%);
  pointer-events: none;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 162, 104, 0.35);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.partner-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(198, 162, 104, 0.4);
  color: var(--gold);
  margin-bottom: 22px;
}
.partner-card__icon svg { width: 20px; height: 20px; }

.partner-card h3 { font-size: clamp(21px, 2.1vw, 25px); }
.partner-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--kraft); /* note kraft — charte 2023 */
  margin: 16px 0 26px;
}

.partner-logos { display: flex; flex-wrap: wrap; gap: 14px; }

.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: rgba(243, 235, 220, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.partner-chip:hover,
.partner-chip:focus-visible {
  background: rgba(243, 235, 220, 0.08);
  border-color: rgba(198, 162, 104, 0.4);
  transform: translateY(-2px);
}
.partner-chip img { display: block; object-fit: contain; }

/* gabarits sur mesure — chaque logo a son propre équilibre visuel */
.partner-chip--region img { width: 138px; height: auto; }
.partner-chip--ccpa img { width: 92px; height: auto; }
.partner-chip--varay img { height: 92px; width: auto; }
.partner-chip--maramour img { height: 50px; width: auto; }
