/* ===========================
   FONTS
   =========================== */

/* Macro — Regular */
@font-face {
  font-family: 'Macro';
  src: url('fonts/Macro_regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Macro — Bold */
@font-face {
  font-family: 'Macro';
  src: url('fonts/Macro_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Lendiga — script accent */
@font-face {
  font-family: 'Lendiga';
  src: url('fonts/Lendiga.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lendiga-Hand';
  src: url('fonts/Lendiga-Hand.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   BRAND COLOURS
   =========================== */
:root {
  --boiling-magna:  #ff4b01;
  --fish-pond:      #80c6ea;
  --pico-orange:    #fca80b;
  --piercing-red:   #d7101f;
  --spinning-silk:  #f8f1e3;
  --white:          #ffffff;

  /* "Noir" de marque — dérivé de Boiling Magna, jamais pur noir */
  --ink:            #1e0900;
  --ink-60:         rgba(30,9,0,0.6);
  --ink-40:         rgba(30,9,0,0.4);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--spinning-silk);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn--lg   { padding: 16px 40px; font-size: 0.92rem; }
.btn--sm   { padding: 10px 22px; font-size: 0.78rem; }

.btn--orange {
  background: var(--boiling-magna);
  color: var(--white);
  border-color: var(--boiling-magna);
  box-shadow: 0 4px 20px rgba(255,75,1,0.35);
}
.btn--orange:hover {
  background: var(--piercing-red);
  border-color: var(--piercing-red);
  box-shadow: 0 8px 28px rgba(215,16,31,0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--spinning-silk);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(248,241,227,0.35);
  color: var(--spinning-silk);
}
.btn--ghost:hover {
  background: rgba(248,241,227,0.08);
  border-color: var(--spinning-silk);
}

.btn--white {
  background: var(--white);
  color: var(--boiling-magna);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--spinning-silk);
  border-color: var(--spinning-silk);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===========================
   PLACEHOLDERS
   =========================== */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 8px;
}

.placeholder-img--dark {
  background: var(--fish-pond);
  color: var(--ink-60);
  border: 1px dashed rgba(30,9,0,0.15);
}

.placeholder-img--tall { min-height: 480px; }

/* ===========================
   SECTION HELPERS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: 'Lendiga', cursive;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--boiling-magna);
  margin-bottom: 6px;
  display: block;
}

.section-eyebrow--alt  { color: var(--piercing-red); }

.section-title {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.0;
  background: linear-gradient(100deg, var(--boiling-magna) 0%, var(--piercing-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sur fond coloré : texte plein, pas de gradient */
.section-title--light {
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
}
.section-title--dark {
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
}

.section-sub {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--ink-60);
}

.section-sub--dark { color: var(--ink-60); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--boiling-magna);
  transition: background 0.3s;
}

.header--scrolled {
  background: rgba(255,255,255,0.98);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo__img--footer {
  height: 88px;
  margin-bottom: 14px;
}

.nav { margin-left: auto; }

.nav ul { display: flex; gap: 40px; }

.nav ul a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  cursor: pointer;
}

/* Flèche — slide depuis la gauche + fade */
.nav ul a::before {
  content: '→';
  font-size: 1.1em;
  font-weight: 900;
  color: var(--boiling-magna);
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

/* Texte — slide légèrement depuis la gauche */
.nav ul a span {
  display: inline-block;
  transform: translateX(-10px);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav ul a:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.nav ul a:hover span {
  transform: translateX(0);
  color: var(--boiling-magna);
}

.header__cta {
  margin-left: 8px;
  padding: 9px 20px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO — typographique
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Photo Ken Burns */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken-burns 20s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@keyframes ken-burns {
  0%   { transform: scale(1)    translate(0%, 0%); }
  33%  { transform: scale(1.08) translate(-1.5%, 0.5%); }
  66%  { transform: scale(1.12) translate(1%, -1%); }
  100% { transform: scale(1.06) translate(-0.5%, 1%); }
}

/* Overlay sombre + teinte orange pour lisibilité */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255,75,1,0.55) 0%,
    rgba(30,9,0,0.65) 100%
  );
  z-index: 1;
}

/* Dégradé bas pour ancrer le texte */
.hero__deco-block {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(30,9,0,0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: 80px 32px 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__actions {
  margin-top: 48px;
}

.hero__eyebrow {
  font-family: 'Lendiga', cursive;
  font-size: 1.4rem;
  font-weight: normal;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  display: block;
}

/* Titre très grand qui remplit la largeur */
.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.hero__title-line {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: normal;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero__title-accent {
  background: linear-gradient(100deg, var(--pico-orange) 0%, var(--boiling-magna) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__actions {
  display: flex;
  justify-content: center;
}

/* Barre de stats en bas du hero */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  background: rgba(30,9,0,0.2);
  backdrop-filter: blur(8px);
}

.hero__stat {
  flex: 1;
  padding: 18px 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat strong {
  font-family: 'Macro', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hero__stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Flèche scroll */
.hero__scroll-hint {
  position: absolute;
  bottom: 76px; right: 40px;
  z-index: 3;
}

.hero__scroll-hint span {
  display: block;
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ===========================
   SCROLLING BANNER
   =========================== */
.banner-strip {
  background: var(--boiling-magna);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.banner-strip__track {
  display: inline-flex;
  align-items: center;
  animation: scroll-left 28s linear infinite;
}

.banner-strip__track span {
  font-family: 'Macro', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 0 8px;
}

.banner-strip__track i {
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-size: 0.55rem;
  padding: 0 14px;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   MENU SECTION
   =========================== */
.menu-section {
  padding: 120px 0;
  background: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}

.menu-card {
  background: var(--spinning-silk);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(255,75,1,0.1);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(255,75,1,0.15);
}

.menu-card--featured {
  border-color: var(--boiling-magna);
  box-shadow: 0 8px 40px rgba(255,75,1,0.18);
}

.menu-card--featured:hover {
  box-shadow: 0 24px 64px rgba(255,75,1,0.3);
}

.menu-card__img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: url('assets/fond%20menu.png') center center / cover no-repeat;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card__img img {
  transform: scale(1.05);
}

.menu-card__img .placeholder-img {
  height: 100%;
  border-radius: 0;
  border: none;
  background: var(--fish-pond);
}

/* Tag positionné sur l'image */
.menu-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 40px;
  background: var(--boiling-magna);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.menu-card__tag--hot {
  background: var(--pico-orange);
  color: var(--ink);
}

.menu-card__body {
  padding: 24px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card__body h3 {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.0;
}

.menu-card__body p {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.65;
}

.menu-section__cta { text-align: center; }

/* ===========================
   ENGAGEMENTS
   =========================== */
.engagements-section {
  padding: 120px 0;
  background: var(--spinning-silk);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Numéro décoratif en fond */
.engagement-card__num {
  font-family: 'Macro', sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,75,1,0.07);
  position: absolute;
  top: 12px; right: 20px;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.engagement-card h3 {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 14px;
  position: relative;
}

/* Ligne orange sous le titre */
.engagement-card h3::after {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: var(--boiling-magna);
  border-radius: 2px;
  margin-top: 10px;
}

.engagement-card p {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.75;
  position: relative;
}

/* ===========================
   VALUE SECTION
   =========================== */
.value-section {
  padding: 120px 0;
  background: var(--fish-pond);
  position: relative;
  overflow: hidden;
}

.value-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,75,1,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.value-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-section__text .section-eyebrow { color: var(--pico-orange); }

.value-section__text h2 {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.0;
}

.value-section__text > p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 32px;
}

.value-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.value-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 14px 18px;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.7);
}

.value-info-icon { font-size: 1.1rem; flex-shrink: 0; }

.value-section__img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30,9,0,0.2);
  border: 2px solid rgba(255,255,255,0.6);
}

/* ===========================
   TESTIMONIALS — colonnes scrollantes
   =========================== */
.testimonial-section {
  padding: 120px 0 0;
  background: var(--fish-pond);
  overflow: hidden;
}

.testimonial-section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* Zone de scroll masquée avec dégradés haut/bas */
.testimonials-wrapper {
  display: flex;
  gap: 20px;
  height: 620px;
  overflow: hidden;
  position: relative;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Dégradé fondu haut et bas */
.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, var(--fish-pond), transparent);
}

.testimonials-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, var(--fish-pond), transparent);
}

.testimonials-col {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonials-col__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scroll-up var(--duration, 20s) linear infinite;
}


@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Carte avis */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  flex-shrink: 0;
}

.testimonial-card__stars {
  font-size: 0.85rem;
  color: var(--pico-orange);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color, var(--boiling-magna));
  color: var(--white);
  font-family: 'Macro', sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--ink-40);
}

/* ===========================
   INFOS PRATIQUES
   =========================== */
.infos-section {
  padding: 100px 0;
  background: var(--spinning-silk);
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.infos-grid--2col {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
}

.info-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.info-card h3 {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 20px;
}

.info-card > p {
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 1.8;
}

/* Liste horaires */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,75,1,0.1);
  color: var(--ink);
}

.hours-list li:last-child { border-bottom: none; }

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}

.hours-list li span:last-child {
  text-align: right;
  color: var(--ink-60);
  line-height: 1.5;
}

.hours-list__closed span { color: var(--ink-40) !important; }
.hours-list__closed span:first-child { color: var(--ink-40) !important; }

/* Info card variants */
.info-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--boiling-magna);
  margin-bottom: 8px;
}

.info-card--delivery {
  background: var(--boiling-magna);
  color: var(--white);
}
.info-card--delivery h3 { color: var(--white); }
.info-card--delivery .info-card__label { color: rgba(255,255,255,0.7); }
.info-card--delivery .hours-list li span { color: var(--white); }

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.delivery-option__icon { font-size: 1.6rem; flex-shrink: 0; }
.delivery-option strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.delivery-option p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
/* ── PARTNER STRIP ── */
.partner-strip {
  background: var(--spinning-silk);
  border-top: 3px solid var(--boiling-magna);
  border-bottom: 3px solid var(--boiling-magna);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partner-strip p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}
.partner-strip p span {
  font-weight: 700;
  color: var(--ink);
}

.cta-section {
  padding: 120px 0;
  background: var(--fish-pond);
  position: relative;
  overflow: hidden;
}

/* Cercles décoratifs */
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(252,168,11,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section__eyebrow {
  font-family: 'Lendiga', cursive;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 8px;
}

.cta-section__inner h2 {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.0;
}

.cta-section__inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--boiling-magna);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 48px 32px;
  align-items: start;
}

/* Colonne 1 — Logo + tagline + social */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo img {
  height: 88px;
  width: auto;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 220px;
}

.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.footer__social a {
  color: rgba(255,255,255,0.7);
  display: flex;
  transition: color 0.2s, transform 0.2s;
}

.footer__social a:hover {
  color: var(--spinning-silk);
  transform: translateY(-2px);
}

/* Colonne 2 — Navigation */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--spinning-silk); }

/* Colonne 3 — Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer__contact address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.footer__contact-handles {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Barre de copyright */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 32px;
  text-align: center;
  font-size: 0.71rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--spinning-silk); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px; }
}

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
  .hero__title-line { font-size: clamp(3rem, 7vw, 6rem); }

  .hero__bottom { flex-direction: column; gap: 28px; }

  .hero__stat { padding: 16px 24px; }

  /* ── Header hamburger tablette ── */
  .nav-toggle { display: flex; }
  .header__cta { display: none; }

  .nav {
    position: fixed;
    top: 84px; left: 0;
    width: 100%;
    background: var(--boiling-magna);
    padding: 32px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    border-bottom: 3px solid var(--piercing-red);
    margin-left: 0;
    z-index: 999;
  }
  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav ul { flex-direction: column; gap: 24px; }
  .nav ul a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    gap: 10px;
  }
  .nav ul a::before { font-size: 1.3rem; }
  .nav ul a span { transform: translateX(-14px); }
}

/* ===========================
   RESPONSIVE — 900px
   =========================== */
@media (max-width: 900px) {
  .menu-grid,
  .engagements-grid,
  .testimonials-grid,
  .infos-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .infos-grid--2col {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-grid { margin-bottom: 40px; }

  .value-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ===========================
   RESPONSIVE — 640px
   =========================== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 68px; left: 0;
    width: 100%;
    background: var(--boiling-magna);
    padding: 32px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    border-bottom: 3px solid var(--piercing-red);
    margin-left: 0;
  }

  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav ul { flex-direction: column; gap: 24px; }

  .nav ul a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    gap: 10px;
  }

  .nav ul a::before {
    font-size: 1.3rem;
  }

  .nav ul a span {
    transform: translateX(-14px);
  }

  .header__cta { display: none; }

  .hero__scroll-hint { display: none; }

  .hero__stats { display: none; }

  .hero__inner { padding-bottom: 80px; }

  .hero__title-line { font-size: clamp(2.2rem, 11vw, 4.5rem); }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .section-header { margin-bottom: 44px; }

  .engagement-card__num { font-size: 5rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 340px; }

  /* infos grid 2col → 1col */
  .infos-grid--2col { grid-template-columns: 1fr; }
  .info-card { padding: 28px 24px; }

  /* partner strip */
  .partner-strip { padding: 16px 20px; gap: 12px; }
}

/* ===========================
   BADGES & DECORATIVE ASSETS
   =========================== */

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes badge-wobble {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%       { transform: rotate(6deg) scale(1.04); }
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0px) rotate(-8deg); }
  50%       { transform: translateY(-10px) rotate(-8deg); }
}

/* Hero floating badge */
.hero__badge {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 14vw, 200px);
  pointer-events: none;
  user-select: none;
  animation: badge-float 5s ease-in-out infinite;
  z-index: 2;
}

/* Inline badge accent (centered, between sections) */
.badge-accent {
  display: flex;
  justify-content: center;
  padding: 10px 0 40px;
}
.badge-accent img {
  width: clamp(80px, 10vw, 130px);
  height: auto;
  animation: badge-wobble 7s ease-in-out infinite;
}

/* Vibes strip (full-width centered horizontal badge) */
.vibes-strip {
  background: var(--fish-pond);
  padding: 60px 24px;
  text-align: center;
  overflow: hidden;
}
.vibes-strip img {
  max-width: min(500px, 80vw);
  height: auto;
}

/* Footer pennant */
.footer__pennant {
  margin-top: 20px;
}
.footer__pennant img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  opacity: 0.9;
}

/* Floating flag on pages */
.page-badge-float {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .hero__badge { display: none; }
  .vibes-strip img { max-width: 90vw; }
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
  background: var(--spinning-silk);
  padding: 80px 0 80px;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.map-section .section-title {
  color: var(--ink);
}

.map-section__frame {
  position: relative;
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30,9,0,0.14);
}

#restaurant-map {
  width: 100%;
  height: 480px;
  display: block;
  cursor: grab;
}

#restaurant-map:active {
  cursor: grabbing;
}

/* Pin logo */
.map-pin {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255,75,1,0.5);
  border: 3px solid var(--boiling-magna);
  overflow: hidden;
}

.map-pin img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Boutons zoom custom */
.map-section__controls {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-zoom-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 2px solid var(--boiling-magna);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--boiling-magna);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background 0.15s, color 0.15s;
}

.map-zoom-btn:hover {
  background: var(--boiling-magna);
  color: var(--white);
}

.map-section__gmaps {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.leaflet-popup-tip-container { display: none; }
.leaflet-control-attribution { display: none; }

@media (max-width: 768px) {
  .map-section { padding: 60px 0 0; }
  #restaurant-map { height: 340px; }
  .map-section__gmaps { font-size: 0.85rem; padding: 10px 18px; }
}

/* ===========================
   STICKY COMMANDER (mobile)
   =========================== */
.sticky-cta { display: none; }

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    padding: 10px 16px 14px;
    background: var(--boiling-magna);
    box-shadow: 0 -4px 20px rgba(255,75,1,0.4);
    border-top: 2px solid var(--piercing-red);
  }
  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--boiling-magna);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }
  body { padding-bottom: 70px; }
}

/* ===========================
   GALLERY GRID VIEW
   =========================== */
.gallery-view-toggle {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 20px 32px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-view-btn {
  background: var(--white);
  border: 2px solid rgba(30,9,0,0.12);
  border-radius: 8px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--ink-60);
}
.gallery-view-btn.active {
  border-color: var(--boiling-magna);
  background: var(--boiling-magna);
  color: var(--white);
}
.gallery-grid-view {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-section.grid-mode .photo-strips { display: none; }
.gallery-section.grid-mode .gallery-grid-view { display: grid; }
.gallery-grid-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-grid-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .gallery-grid-view { grid-template-columns: repeat(2, 1fr); padding: 16px 16px 32px; }
  .gallery-view-toggle { padding: 14px 16px 0; }
}

/* ===========================
   RESPONSIVE — 768px (tablette)
   (ce bloc vient après le 640px → ses règles prévalent pour ≤768px)
   =========================== */
@media (max-width: 768px) {

  /* ── Header compact ── */
  .header__inner {
    height: 68px;
    padding: 0 20px;
    gap: 16px;
  }
  .logo__img { height: 52px; }

  /* Hamburger visible, bouton Commander masqué */
  .nav-toggle { display: flex; }
  .header__cta { display: none; }

  /* Nav overlay mobile */
  .nav {
    position: fixed;
    top: 68px; left: 0;
    width: 100%;
    background: var(--boiling-magna);
    padding: 32px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    border-bottom: 3px solid var(--piercing-red);
    margin-left: 0;
    z-index: 999;
  }
  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav ul { flex-direction: column; gap: 24px; }
  .nav ul a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    gap: 10px;
  }
  .nav ul a::before { font-size: 1.3rem; }
  .nav ul a span { transform: translateX(-14px); }

  /* ── Hero ── */
  .hero { padding-top: 68px; }
  .hero__inner { padding: 64px 20px 90px; }
  .hero__scroll-hint { display: none; }

  /* ── Sections : paddings réduits ── */
  .menu-section      { padding: 72px 0; }
  .engagements-section { padding: 72px 0; }
  .value-section     { padding: 72px 0; }
  .cta-section       { padding: 80px 0; }
  .infos-section     { padding: 72px 0; }
  .testimonial-section { padding: 72px 0 0; }

  /* ── Value section ── */
  .value-section__inner { gap: 40px; }

  /* ── Testimonials : 2 colonnes max ── */
  .testimonials-wrapper { height: 480px; padding: 0 20px; }
  .testimonials-col:last-child { display: none; }

  /* ── CTA actions ── */
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 340px; }

  /* ── Section header ── */
  .section-header { margin-bottom: 48px; }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ===========================
   RESPONSIVE — 480px (petit mobile)
   =========================== */
@media (max-width: 480px) {

  /* ── Container ── */
  .container { padding: 0 16px; }

  /* ── Header ── */
  .header__inner { height: 60px; padding: 0 16px; }
  .logo__img { height: 44px; }
  .nav { top: 60px; }

  /* ── Sections paddings minimum ── */
  .menu-section,
  .engagements-section,
  .value-section,
  .cta-section       { padding: 56px 0; }
  .infos-section     { padding: 56px 0; }
  .testimonial-section { padding: 56px 0 0; }

  /* ── Hero ── */
  .hero { padding-top: 60px; }
  .hero__inner { padding: 48px 16px 72px; }
  .hero__title-line { font-size: clamp(2rem, 10vw, 3.8rem); }
  .hero__stats { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem !important;
    padding: 16px 32px !important;
    letter-spacing: 0.04em !important;
  }

  /* ── Testimonials : 1 colonne ── */
  .testimonials-wrapper { height: 380px; }
  .testimonials-col:nth-child(2) { display: none; }

  /* ── Grids → 1 col ── */
  .menu-grid,
  .engagements-grid { max-width: 100%; }
  .infos-grid--2col { max-width: 100%; }

  /* ── Engagement card ── */
  .engagement-card { padding: 28px 20px; }
  .engagement-card__num { font-size: 4.5rem; }

  /* ── Info cards ── */
  .info-card { padding: 24px 20px; }

  /* ── Boutons lg → taille normale ── */
  .btn--lg { padding: 14px 28px; font-size: 0.88rem; }

  /* ── Map ── */
  #restaurant-map { height: 260px; }
  .map-section { padding: 48px 0 0; }

  /* ── Section title responsive ── */
  .section-title { font-size: clamp(1.9rem, 8vw, 3.2rem); }

  /* ── Partner strip ── */
  .partner-strip {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
    gap: 10px;
  }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px; }
  .footer__logo img { height: 64px; }

  /* ── CTA section ── */
  .cta-section__inner h2 { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* ── Page hero (pages internes) ── */
  .page-hero { padding: 80px 16px 20px; }

  /* ── Banner strip ── */
  .banner-strip__track span { font-size: 0.88rem; }

  /* ── Order cards (commander.html) ── */
  .order-cards { max-width: 100% !important; }
}

/* ── STATS STRIP ── */
.stats-strip {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(30,9,0,0.06);
  border-bottom: 1px solid rgba(30,9,0,0.06);
}
.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.stats-strip__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 10px;
}
.stats-strip__num {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: normal;
  color: var(--boiling-magna);
  letter-spacing: -0.02em;
}
.stats-strip__unit {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--pico-orange);
}
.stats-strip__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-60);
}
.stats-strip__sep {
  width: 1px;
  height: 60px;
  background: rgba(30,9,0,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .stats-strip__sep { display: none; }
}

/* ── SOCIAL SECTION ── */
.social-section {
  padding: 100px 0;
  background: var(--spinning-silk);
  position: relative;
  overflow: hidden;
}
.social-section__inner {
  text-align: center;
}
.social-section__title {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: normal;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.social-section__accent {
  color: var(--boiling-magna);
}
.social-section__sub {
  color: var(--ink-60);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.social-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(30,9,0,0.08);
  border-radius: 20px;
  padding: 28px 36px;
  text-decoration: none;
  width: 340px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30,9,0,0.1);
}
.social-card--tiktok:hover { border-color: var(--boiling-magna); }
.social-card--instagram:hover { border-color: var(--pico-orange); }
.social-card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.social-card--tiktok .social-card__icon { background: var(--boiling-magna); }
.social-card--instagram .social-card__icon { background: linear-gradient(135deg, var(--pico-orange), var(--boiling-magna)); }
.social-card__body {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}
.social-card__body strong {
  font-family: 'Macro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.social-card__body span {
  font-size: 0.88rem;
  color: var(--ink-60);
}
.social-card__arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--ink-40);
  transition: color 0.2s, transform 0.2s;
}
.social-card:hover .social-card__arrow {
  color: var(--boiling-magna);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .social-cards { flex-direction: column; align-items: center; }
  .social-card { width: 100%; max-width: 380px; }
}

/* ===========================
   PAGE TRANSITION (H)
   =========================== */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.page-ready { opacity: 1; }

/* ===========================
   COMMANDER TOAST (G)
   =========================== */
.commander-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}
.commander-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   HERO SCROLL INDICATOR (F)
   =========================== */
.hero__scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  z-index: 10;
  animation: scroll-bounce 2.2s ease-in-out infinite;
  transition: opacity 0.4s ease, background 0.2s;
}
.hero__scroll-down:hover { background: rgba(255,255,255,0.22); }
.hero__scroll-down.hidden { opacity: 0; pointer-events: none; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===========================
   HERO STATUS BADGE (J)
   =========================== */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__status__dot--open   { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
.hero__status__dot--closed { background: rgba(255,255,255,0.45); }
@media (max-width: 480px) {
  .hero__scroll-down { bottom: 24px; }
}

/* ── WAVE DIVIDERS ── */
.wave-divider {
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ── GRAIN / NOISE TEXTURE ── */
.hero::after,
.cta-section .grain-overlay {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.hero::after {
  z-index: 2;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #fff8f4;
  border: 2px solid #ff4b01;
  border-radius: 16px;
  padding: 20px 22px;
  width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.cookie-banner.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}
.cookie-banner__text {
  color: #3a2a1a;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-banner__text strong {
  font-family: 'Macro', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  display: block;
  margin-bottom: 6px;
}
.cookie-banner__text a {
  color: #ff4b01;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-family: 'Macro', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  border: 2px solid #ff4b01;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.cookie-btn--accept {
  background: #ff4b01;
  color: #fff;
}
.cookie-btn--accept:hover {
  background: #e04200;
}
.cookie-btn--refuse {
  background: transparent;
  color: #ff4b01;
}
.cookie-btn--refuse:hover {
  background: rgba(255,75,1,0.08);
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 80px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}
