/* The Velvet Table — Events & Catering
   Brand: Sable chaud (#F5EBDC) + Doré (#9A7B33 / #C9A961) + Bleu nuit (#1B2A4A, encre/boutons/footer).
   Type pairing: Gill Sans Nova (sans principal) + Manus Smooth (script accent). */

/* ---------- Self-hosted fonts (Gill Sans Nova + Manus Smooth) ---------- */
@font-face {
  font-family: "gill-sans-nova";
  src: url("assets/fonts/gillsansnova-book.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gill-sans-nova";
  src: url("assets/fonts/gillsansnova-bookitalic.woff2") format("woff2");
  font-weight: 300 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "gill-sans-nova";
  src: url("assets/fonts/gillsansnova-extrabold.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "manus-smooth";
  src: url("assets/fonts/manus-smooth.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

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

html, body { background: #241C10; } /* brun profond chaud derrière le hero */

body {
  font-family: "gill-sans-nova", "Gill Sans", "Gill Sans MT", "Segoe UI", system-ui, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button { font-family: inherit; }

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  /* Halo doré + fond brun chaud profond : le hero prolonge l'ambiance
     sable/doré des visuels Instagram (le texte blanc reste lisible). */
  background:
    radial-gradient(60% 80% at 74% 38%, rgba(201, 169, 97, 0.22), rgba(201, 169, 97, 0) 62%),
    linear-gradient(120deg, #241C10 0%, #2E2413 30%, #3A2E1B 60%, #4A3B24 100%);
}

/* Subtle top scrim so the nav + right-side pills read over the light backdrop */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: linear-gradient(to bottom, rgba(40, 31, 18, 0.38), rgba(40, 31, 18, 0));
  z-index: 1;
  pointer-events: none;
}

/* Couche média du hero (photo placeholder → vidéo plus tard) */
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  pointer-events: none;
}

/* Voile chaud par-dessus le média — plus léger que l'ancien voile navy :
   la photo respire, le texte blanc reste lisible côté gauche. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Allégé pour le visuel clair : texte blanc à ~6.8:1 (AA) côté gauche,
     l'assiette à droite reste lumineuse. */
  background: linear-gradient(105deg,
    rgba(36, 28, 16, 0.58) 0%,
    rgba(42, 32, 18, 0.44) 34%,
    rgba(46, 36, 20, 0.12) 58%,
    rgba(36, 28, 16, 0.24) 100%);
}

/* Hero video — sits on the right, its grey backdrop dissolving into the page */
.hero__video {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 58%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 38%, #000 100%);
}

/* Keep copy above the video */
.hero__body { position: relative; z-index: 2; }

/* ---------- Nav ---------- */
/* Merged state — full-width, transparent, sitting on the hero */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 56px;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px rgba(20, 30, 35, 0);
  transition: top 0.4s ease, width 0.4s ease, padding 0.4s ease,
              border-radius 0.4s ease, background-color 0.4s ease,
              box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Scrolled state — collapses into a floating frosted pill */
.nav.is-pill {
  top: 16px;
  width: calc(100% - 40px);
  max-width: 1380px;
  padding: 13px 18px 13px 30px;
  border-radius: 999px;
  background: rgba(38, 46, 50, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(20, 30, 35, 0.20);
}

.brand {
  font-size: 21px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark { font-weight: 500; }
.brand__rest { color: rgba(255, 255, 255, 0.7); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.nav__links a { text-decoration: none; }
.nav__phone { letter-spacing: 0.06em; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__clients {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Buttons (pill-shaped) ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  padding: 13px 26px;
  letter-spacing: 0.01em;
  font-weight: 400;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--solid {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}
.btn--solid:hover { background: rgba(255, 255, 255, 0.86); }

/* Frosted translucent pill (secondary) */
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.40);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Larger hero CTA buttons */
.btn--lg {
  font-size: 15px;
  padding: 16px 34px;
}

/* ---------- Hero body ---------- */
.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 56px;
}
.hero__content { max-width: 600px; }

.hero__accent {
  font-family: "manus-smooth", "Caveat", cursive;
  font-weight: 600;
  color: var(--gold-soft);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}

.hero__title {
  font-family: "gill-sans-nova", "Gill Sans", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Univers actif (cliquable pour rouvrir la porte) */
.hero__universe {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: "manus-smooth", "Caveat", cursive;
  color: var(--gold-soft);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}
.hero__universe-switch {
  font-family: "gill-sans-nova", "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.hero__universe:hover .hero__universe-switch { color: var(--gold-soft); }

.hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 50ch;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: 20px;
}

/* ---------- Hamburger toggle ---------- */
.nav__toggle {
  display: none; /* shown via media query on small screens */
  position: relative;
  width: 30px;
  height: 22px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, background-color 0.2s ease, top 0.3s ease;
}
.nav__toggle-bars { top: 50%; transform: translateY(-50%); }
.nav__toggle-bars::before { top: -9px; }
.nav__toggle-bars::after  { top: 9px; }
/* animate to an X when open — X en encre sur le menu clair */
body.menu-open .nav__toggle-bars { background: transparent; }
body.menu-open .nav__toggle-bars::before { top: 0; transform: rotate(45deg); background-color: #16213E; }
body.menu-open .nav__toggle-bars::after  { top: 0; transform: rotate(-45deg); background-color: #16213E; }

/* ---------- Mobile menu overlay ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 110px 32px 48px;
  overflow-y: auto;
  background: var(--paper, #F5EBDC); /* menu mobile clair (palette lancement) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.mobile-menu__links a {
  color: var(--ink, #16213E);
  text-decoration: none;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.mobile-menu__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mobile-menu__phone {
  color: var(--ink, #16213E);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.mobile-menu__clients {
  color: var(--muted, #6B6151);
  text-decoration: none;
  font-size: 17px;
  font-weight: 300;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  /* Collapse the inline nav into a hamburger */
  .nav__toggle { display: block; }
  .nav__links,
  .nav__actions { display: none; }
  .hero__video { width: 64%; }
}

/* Below tablet: stack the video under the copy so white text stays readable */
@media (max-width: 900px) {
  .hero { background:
    linear-gradient(180deg, #4A3B24 0%, #8a7350 46%, #cbb494 78%, #ddc9ab 100%); }
  .hero__video {
    position: relative;
    width: 100%;
    height: 48vh;
    object-position: center 18%;
    order: 3;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%);
  }
  .hero__body { flex: 0 0 auto; padding-top: 104px; padding-bottom: 28px; }
  .hero__content { max-width: 720px; }
  /* Mobile : le texte occupe toute la largeur → voile VERTICAL (sombre en haut,
     dégagé en bas pour laisser voir l'assiette du visuel portrait). */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(36, 28, 16, 0.72) 0%,
      rgba(38, 30, 17, 0.60) 45%,
      rgba(40, 32, 18, 0.22) 78%,
      rgba(36, 28, 16, 0.30) 100%);
  }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav.is-pill { padding: 11px 14px 11px 22px; top: 12px; width: calc(100% - 24px); }
  .hero__body { padding-left: 28px; padding-right: 28px; }
  .hero__accent { font-size: 44px; }
  .hero__title { font-size: 48px; }
  .hero__video { height: 42vh; }
  .brand__img { height: 34px; }
}

@media (max-width: 480px) {
  .nav__actions { width: 100%; justify-content: space-between; gap: 16px; }
  .hero__accent { font-size: 26px; line-height: 28px; font-weight: 400; margin-bottom: 10px; }
  .hero__title { font-size: 30px; line-height: 33px; margin-bottom: 26px; }
  .hero__cta { flex-wrap: wrap; gap: 14px; }
  .btn--lg { flex: 1 1 auto; text-align: center; }
}

/* =========================================================
   Below-the-hero sections
   ========================================================= */
:root {
  /* Palette « lancement » alignée sur les visuels Instagram (2026-06-25) :
     surfaces SABLE CHAUD, navy réservé à l'encre/boutons/footer, doré inchangé. */
  --ink: #16213E;        /* bleu nuit — texte */
  --muted: #6B6151;      /* brun-gris chaud — texte secondaire */
  --navy: #1B2A4A;       /* bleu nuit — boutons, footer (signature) */
  --navy-dark: #122038;
  --gold: #9A7B33;       /* doré profond — accents, liens, sur fond clair */
  --gold-soft: #C9A961;  /* doré clair — décoratif */
  /* Alias hérités de Soumaya : --teal* pointent désormais vers le doré (accents) */
  --teal: #9A7B33;
  --teal-dark: #7E6428;
  --teal-deep: #1B2A4A;  /* utilisé par footer/cta → bleu nuit */
  --paper: #F5EBDC;      /* sable clair chaud — fond principal */
  --paper-2: #EADDC7;    /* sable soutenu — sections alternées, cartes */
  --line: rgba(122, 92, 47, 0.20);
}

html { scroll-behavior: smooth; }

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

/* Content layer rises over the pinned hero */
.content {
  position: relative;
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 -34px 70px rgba(20, 30, 35, 0.22);
}

.mobile-menu { z-index: 1000; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.section { padding: 110px 0; }

/* Heading system: script eyebrow + uppercase title */
.eyebrow {
  font-family: "manus-smooth", "Caveat", cursive;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 6px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.95); }

.section__title {
  font-family: "gill-sans-nova", "Gill Sans", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.section__lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section__head--center { justify-content: center; text-align: center; }

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.ticks { list-style: none; margin: 26px 0 0; display: grid; gap: 12px; }
.ticks--2col { grid-template-columns: 1fr 1fr; }
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 16px;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  line-height: 19px;
  text-align: center;
}

/* Button variants for light sections */
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-dark); }
.btn--line { background: transparent; color: var(--ink); border-color: rgba(20, 30, 35, 0.30); }
.btn--line:hover { border-color: var(--teal); color: var(--teal); }

.btn-row { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* --- AI Simulation --- */
.sim__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ba-slider {
  --p: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 34px 64px rgba(20, 30, 35, 0.20);
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.ba-slider__before { clip-path: inset(0 calc(100% - var(--p)) 0 0); }
.ba-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--p);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}
.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: var(--p);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid #fff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  box-shadow: 0 2px 10px rgba(20, 30, 35, 0.25);
}
.ba-slider__handle svg { width: 22px; height: 22px; }
.ba-slider__handle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.ba-slider__tag {
  position: absolute;
  top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 5px rgba(20, 30, 35, 0.45);
  pointer-events: none;
}
.ba-slider__tag--before { left: 16px; }
.ba-slider__tag--after { right: 16px; }

/* --- Testimonials --- */
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.carousel__btn:hover { border-color: var(--teal); color: var(--teal); }
.carousel__btn--solid { background: var(--teal); color: #fff; border-color: var(--teal); }
.carousel__btn--solid:hover { background: var(--teal-dark); color: #fff; }

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.tcard {
  scroll-snap-align: start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: var(--teal); letter-spacing: 3px; font-size: 16px; }
.tcard__quote { color: var(--ink); font-size: 16px; line-height: 1.6; flex: 1; }
.tcard__name { color: var(--ink); font-weight: 500; font-size: 15px; }
.tcard__name span { color: var(--muted); font-weight: 400; }

/* --- Treatments --- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tcard2 {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tcard2:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20, 30, 35, 0.13); }
.tcard2__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tcard2__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tcard2:hover .tcard2__media img { transform: scale(1.05); }
.tcard2__body { padding: 26px; }
.tcard2__body h3 { font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.tcard2__body p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.link-arrow { display: inline-block; margin-top: 16px; color: var(--teal); font-size: 14px; letter-spacing: 0.04em; }

/* --- Benefits --- */
/* --- Comment ça marche (3 étapes) --- */
.how { background: var(--paper-2); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how__step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px 28px;
}
.how__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.how__num {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--gold);
}
.how__ico { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold-soft); }
.how__ico svg { width: 21px; height: 21px; }
.how__title { font-size: 19px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.how__copy { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.how__cta { display: flex; justify-content: center; margin-top: 34px; }
@media (max-width: 860px) {
  .how__grid { grid-template-columns: 1fr; gap: 16px; }
}

.benefits { background: var(--paper-2); }
.benefits__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.benefits__media { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(20, 30, 35, 0.16); }
.benefits__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* --- Why choose (pillars) --- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { text-align: center; }
.pillar__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 97, 109, 0.10);
  color: var(--teal);
  margin-bottom: 20px;
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 32ch; margin: 0 auto; }

/* --- About the expert --- */
.about__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about__media { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(20, 30, 35, 0.16); }
.about__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; display: block; }
.about__text .section__title { margin-top: 4px; }
.about__text p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 18px; max-width: 54ch; }

/* --- Final CTA --- */
.cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.cta__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta__title { font-family: "gill-sans-nova", "Gill Sans", sans-serif; font-size: 40px; font-weight: 300; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.12; margin-top: 6px; }
.cta__lead { margin-top: 18px; color: rgba(255, 255, 255, 0.85); font-size: 18px; }

/* --- Footer --- */
.site-footer { background: var(--teal-deep); color: rgba(255, 255, 255, 0.85); padding: 72px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__col h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer__col a { display: block; color: rgba(255, 255, 255, 0.78); text-decoration: none; font-size: 15px; margin-bottom: 10px; }
.footer__col a:hover { color: #fff; }
.brand--footer { font-size: 22px; letter-spacing: 0.18em; text-decoration: none; color: #fff; display: inline-block; margin-bottom: 16px; }
.footer__tag { color: rgba(255, 255, 255, 0.6); font-size: 14px; line-height: 1.6; max-width: 34ch; }
.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__wordmark { font-size: clamp(16px, 3.2vw, 34px); letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.14); font-weight: 300; white-space: nowrap; }

/* Logo images */
.brand__img { height: 42px; width: auto; display: block; }
/* Logo carré empilé (icône + wordmark) — dimensionné par hauteur */
.brand__img--nav { height: 66px; transition: height 0.3s ease; }
.nav.is-pill .brand__img--nav { height: 48px; }
.brand__img--footer { height: 132px; width: auto; }

/* --- Responsive (sections) --- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
}
@media (max-width: 900px) {
  .hero { position: relative; top: auto; height: auto; min-height: 100vh; }
  .content { box-shadow: none; }
  .section { padding: 72px 0; }
  .section__title { font-size: 34px; }
  .eyebrow { font-size: 34px; }
  .sim__inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits__inner { grid-template-columns: 1fr; gap: 36px; }
  .benefits__media { order: -1; }
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__media { order: -1; max-width: 460px; }
  .cards {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 32px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .cards::-webkit-scrollbar { display: none; }
  .tcard2 { scroll-snap-align: start; }
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta__title { font-size: 30px; }
}
@media (max-width: 560px) {
  .ticks--2col { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 14px; text-align: center; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .footer__wordmark { display: none; }
  .brand__img { height: 30px; }
}

/* ── Language switcher (circular dropdown EN/FR) ───────────────────────── */
.lang-dd { position: relative; margin-left: 12px; display: inline-flex; }
.lang-dd__btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid currentColor; background: transparent; color: currentColor;
  font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.lang-dd__btn:hover { background: rgba(127, 127, 127, 0.12); }
.lang-dd__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  list-style: none; margin: 0; padding: 5px;
  background: #fff; border-radius: 24px; box-shadow: 0 14px 34px rgba(18, 59, 68, 0.20);
  display: flex; flex-direction: column; gap: 3px; min-width: 56px;
}
.lang-dd__opt {
  width: 100%; border: 0; background: none; cursor: pointer;
  padding: 9px 14px; border-radius: 20px; font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--ink); text-align: center;
}
.lang-dd__opt:hover { background: var(--paper-2, #f3f5f5); }
.lang-dd__opt.is-active { background: var(--teal, #15616d); color: #fff; }
.nav .lang-dd__btn { color: #fff; }
.nav.is-pill .lang-dd__btn { color: var(--ink); }
.lang-dd--menu { margin-left: 0; margin-top: 8px; }
.lang-dd--menu .lang-dd__btn { color: #fff; }
.lang-dd--menu .lang-dd__menu { right: auto; left: 50%; transform: translateX(-50%); }

/* =========================================================
   The Velvet Table — ajouts (liens-boutons, cartes d'offres)
   ========================================================= */

/* Boutons qui se comportent comme des liens de navigation */
.nav__linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  letter-spacing: inherit;
}
.nav__linkbtn:hover { color: var(--gold-soft); }
.nav.is-pill .nav__linkbtn:hover { color: var(--gold); }

.mobile-menu__linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.footer__linkbtn {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer__linkbtn:hover { color: #fff; }

/* --- Cartes d'offres (Offers) --- */
.ocards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ocard {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px 28px;
  box-shadow: 0 1px 2px rgba(22, 33, 62, 0.04), 0 10px 30px rgba(22, 33, 62, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ocard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(22, 33, 62, 0.13);
  border-color: rgba(201, 169, 97, 0.5);
}
.ocard__num {
  font-family: "manus-smooth", "Caveat", cursive;
  font-size: 44px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 10px;
}
.ocard__title {
  font-family: "gill-sans-nova", "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.ocard__copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.ocard__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.ocard__cta svg { transition: transform 0.3s ease; }
.ocard:hover .ocard__cta svg { transform: translateX(4px); }

.offers__note {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .ocards { grid-template-columns: 1fr; }
}

/* =========================================================
   Créations (cartes plat photo + prix) — section 7
   ========================================================= */
.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 8px;
}
.dish {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(22, 33, 62, 0.04), 0 10px 30px rgba(22, 33, 62, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dish:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(22, 33, 62, 0.14); }
.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(27, 42, 74, 0.86);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.dish__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.dish__name {
  font-family: "gill-sans-nova", "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
}
.dish__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dish__price { font-size: 20px; color: var(--ink); font-weight: 500; }
.dish__from, .dish__unit { font-size: 12px; color: var(--muted); font-weight: 400; }
.dish__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.dish__cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* =========================================================
   Galerie de réalisations — section 6
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--1 { grid-row: span 2; }
.gallery__item--4 { grid-column: span 2; }
.gallery__item--6 { grid-column: span 2; }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 14, 26, 0.7), rgba(8, 14, 26, 0));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .dishes { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--1 { grid-row: span 2; }
  .gallery__item--4, .gallery__item--6 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--1, .gallery__item--4, .gallery__item--6 { grid-row: auto; grid-column: auto; }
}
/* Mobile : galerie masquée (6 photos empilées = scroll trop long avant le contact).
   Les visuels restent visibles sur Instagram et sur desktop. */
@media (max-width: 768px) {
  .gallery { display: none; }
}

/* =========================================================
   Section "Nos formules" (menus signature + personnalisé)
   ========================================================= */
.formules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.dish__menu {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dish__menu li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--muted);
}
.dish__menu li::before { content: "·"; position: absolute; left: 4px; color: var(--gold); }
.dish__cat--gold { background: rgba(154, 123, 51, 0.92); color: #fff; }
.dish--custom { border-style: dashed; border-color: rgba(201, 169, 97, 0.55); }

.formules-soon {
  text-align: center;
  padding: 30px 0 8px;
}
.formules-soon p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }

/* =========================================================
   Section "Votre menu en image" (aperçu IA — maquette WhatsApp)
   ========================================================= */
.preview-steps {
  list-style: none;
  margin: 28px 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-step { display: flex; align-items: center; gap: 14px; }
.preview-step__ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(154, 123, 51, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.5);
  color: var(--gold);
}
.preview-step__ico svg { width: 20px; height: 20px; }
.preview-step__label { font-size: 16px; color: var(--ink); }

/* Maquette WhatsApp */
.wa {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #efeae2;
  box-shadow: 0 26px 60px rgba(22, 33, 62, 0.22);
  border: 1px solid var(--border);
}
.wa__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #075e54;
  color: #fff;
}
.wa__avatar {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-family: "gill-sans-nova", serif;
  font-size: 18px;
  color: var(--gold-soft);
}
.wa__who { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.wa__name { font-size: 15px; font-weight: 500; }
.wa__status { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.wa__dots { width: 18px; height: 18px; opacity: 0.85; }
.wa__body {
  padding: 18px 14px 22px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.wa__bubble {
  position: relative;
  max-width: 86%;
  background: #fff;
  border-radius: 12px;
  border-top-left-radius: 2px;
  padding: 7px 7px 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
}
.wa__photo { position: relative; border-radius: 8px; overflow: hidden; }
.wa__photo img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.wa__aiTag {
  position: absolute;
  top: 8px; left: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(154, 123, 51, 0.92);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.wa__aiTag svg { width: 12px; height: 12px; }
.wa__text { font-size: 14px; line-height: 1.45; color: #111b21; padding: 8px 6px 2px; }
.wa__time { display: block; text-align: right; font-size: 11px; color: #667781; padding: 0 6px 2px; }

@media (max-width: 1100px) { .formules { grid-template-columns: repeat(2, 1fr); } }
/* Mobile : slider horizontal à défilement (la carte suivante dépasse = indice de scroll) */
@media (max-width: 640px) {
  /* Grille 2 colonnes (pas de carrousel) — décision client 2026-06-26 */
  .formules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
  .formules .dish__body { padding: 12px 13px 14px; gap: 10px; }
  .formules .dish__name { font-size: 16px; }
  .formules .dish__copy { font-size: 12px; }
  .formules .dish__row { flex-wrap: wrap; gap: 8px; }
  .formules .dish__price { font-size: 15px; }
}

/* =========================================================
   Landing standard (route /) — vidéo placeholder + logo
   ========================================================= */
.std { position: fixed; inset: 0; overflow: hidden; background: #0F1B30; }
.std__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  animation: stdZoom 22s ease-in-out infinite alternate;
}
@keyframes stdZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.std__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,48,.5) 0%, rgba(15,27,48,.84) 100%); }
.std__center {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 4px;
}
.std__logo { height: 156px; width: auto; filter: drop-shadow(0 10px 36px rgba(0,0,0,.45)); }
.std__tagline { font-family: "manus-smooth", "Caveat", cursive; color: var(--gold-soft); font-size: 36px; line-height: 1; }
.std__enter {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid var(--gold-soft); color: #fff;
  font-family: "gill-sans-nova", "Gill Sans", sans-serif;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background-color .2s ease, transform .2s ease;
}
.std__enter:hover { background: rgba(201,169,97,.22); transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .std__media { animation: none; } }
@media (max-width: 640px) { .std__logo { height: 112px; } .std__tagline { font-size: 27px; } }

/* Cartes formules (3) */
.dish__copy { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; flex: 1; }
@media (min-width: 1101px) { .formules--3 { grid-template-columns: repeat(3, 1fr); } }
