/* =========================================================================
   SABLITO — Feuille de style globale
   Sablés vanille artisanaux · Morges, Vaud
   -------------------------------------------------------------------------
   Toutes les couleurs et polices sont en variables ci-dessous.
   Pour changer la direction artistique : modifie uniquement :root.
   ========================================================================= */

:root {
  /* --- PALETTE (2 primaires · 2 secondaires · 2 accents) --- */
  --bordeaux:   #5C1815;   /* Primaire 1 — fond dominant            */
  --bordeaux-2: #45100E;   /* variante plus sombre (footer, ombres) */
  --creme:      #F2EAD8;   /* Primaire 2 — fond clair / texte clair */
  --terracotta: #B5694A;   /* Secondaire 1                          */
  --ocre:       #C9A063;   /* Secondaire 2 — miel                   */
  --corail:     #F25C3A;   /* Accent 1 — CTA                        */
  --jaune:      #F2B705;   /* Accent 2 — highlights                 */

  /* --- Dérivés utilitaires --- */
  --creme-soft: #FBF6EC;
  --ink:        #2A0E0C;   /* texte sombre sur fond clair           */
  --line:       rgba(92, 24, 21, .14);

  /* --- TYPOGRAPHIE --- */
  --font-script:  "Caveat", cursive;                 /* wordmark + accents manuscrits */
  --font-display: "Bricolage Grotesque", sans-serif; /* titres à caractère            */
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  /* --- Mesures --- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-pill: 999px;
  --header-h: 68px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bordeaux);
  color: var(--creme);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* --------------------------- Typographie ------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -.01em; }
.script { font-family: var(--font-script); font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; opacity: .75;
}

/* ----------------------------- Layout ---------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 11vw, 130px); position: relative; }
.section--cream    { background: var(--creme);    color: var(--ink); }
.section--cream-2  { background: var(--creme-soft); color: var(--ink); }
.section--bordeaux { background: var(--bordeaux);  color: var(--creme); }
.section--sun      { background: var(--jaune);     color: var(--bordeaux); }
.section--terra    { background: var(--terracotta); color: var(--creme); }

/* ----------------------- Motif carreaux mexicains ----------------------
   Pattern géométrique (formes simples) encodé en SVG data-URI = 0 requête.
   --tile-ink contrôle la couleur, --tile-op l'opacité. */
.tile-band {
  --tile-ink: var(--bordeaux);
  --tile-op: 1;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3E%3Cg fill='%235C1815'%3E%3Cpath d='M26 0 39 13 26 26 13 13z'/%3E%3Ccircle cx='0' cy='13' r='5'/%3E%3Ccircle cx='52' cy='13' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 52px 26px;
  background-repeat: repeat-x;
}
.tile-soft::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%235C1815' stroke-width='2'%3E%3Ccircle cx='40' cy='40' r='14'/%3E%3Cpath d='M40 6 47 33 74 40 47 47 40 74 33 47 6 40 33 33z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* ------------------------------ Boutons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--coral   { background: var(--corail); color: #fff; box-shadow: 0 8px 22px -8px var(--corail); }
.btn--coral:hover { box-shadow: 0 14px 30px -8px var(--corail); }
.btn--cream   { background: var(--creme); color: var(--bordeaux); }
.btn--bordeaux{ background: var(--bordeaux); color: var(--creme); }
.btn--ghost   { background: transparent; box-shadow: inset 0 0 0 2px currentColor; }
.btn--lg { font-size: 1.1rem; padding: 1em 1.8em; }

/* ----------------------------- En-tête --------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled { background: color-mix(in srgb, var(--bordeaux) 86%, transparent); backdrop-filter: blur(10px); }
.site-header .wordmark { font-family: var(--font-script); font-size: 2rem; line-height: 1; color: var(--creme); }
.header--light .wordmark { color: var(--creme); }

/* bouton burger (toujours visible, desktop + mobile) */
.burger {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--creme); text-transform: lowercase; letter-spacing: .02em;
}
.burger .bars { display: inline-grid; gap: 4px; }
.burger .bars span { display: block; width: 26px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease); }
.burger:hover .bars span:first-child { transform: translateX(3px); }

/* ----------------------- Overlay menu (plein écran) --------------------- */
.menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--bordeaux);
  display: flex; flex-direction: column;
  padding: clamp(20px, 5vw, 48px);
  clip-path: circle(0% at calc(100% - 48px) 40px);
  transition: clip-path .65s var(--ease);
  pointer-events: none;
}
.menu.open { clip-path: circle(150% at calc(100% - 48px) 40px); pointer-events: auto; }
.menu::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23F2EAD8' stroke-width='2'%3E%3Ccircle cx='40' cy='40' r='14'/%3E%3Cpath d='M40 6 47 33 74 40 47 47 40 74 33 47 6 40 33 33z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.menu__top { display: flex; align-items: center; justify-content: space-between; }
.menu__top .wordmark { font-family: var(--font-script); font-size: 2rem; color: var(--creme); }
.menu__close { font-family: var(--font-display); font-weight: 700; color: var(--creme); display: inline-flex; align-items: center; gap: .5em; }
.menu__close .x { font-size: 1.6rem; line-height: 1; }
.menu__nav { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; gap: clamp(4px, 1.5vw, 10px); position: relative; z-index: 1; }
.menu__nav a {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 5.5rem); line-height: 1.02; color: var(--creme);
  width: max-content; transition: color .2s var(--ease), transform .35s var(--ease);
  opacity: 0; transform: translateY(28px);
}
.menu.open .menu__nav a { opacity: 1; transform: none; transition: color .2s var(--ease), opacity .5s var(--ease), transform .5s var(--ease); }
.menu.open .menu__nav a:nth-child(1) { transition-delay: .14s; }
.menu.open .menu__nav a:nth-child(2) { transition-delay: .20s; }
.menu.open .menu__nav a:nth-child(3) { transition-delay: .26s; }
.menu.open .menu__nav a:nth-child(4) { transition-delay: .32s; }
.menu.open .menu__nav a:nth-child(5) { transition-delay: .38s; }
.menu__nav a:hover { color: var(--jaune); transform: translateX(10px); }
.menu__nav a .idx { font-family: var(--font-body); font-size: .9rem; vertical-align: super; opacity: .5; margin-right: .4em; }
.menu__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; position: relative; z-index: 1; }
.menu__foot .meta { font-size: .85rem; opacity: .7; margin-left: auto; }

/* ----------------- Animation d'entrée (rideau de session) --------------- */
.intro {
  position: fixed; inset: 0; z-index: 120; background: var(--bordeaux);
  display: grid; place-items: center; text-align: center;
}
.intro__mark { font-family: var(--font-script); font-size: clamp(3.5rem, 16vw, 9rem); color: var(--creme); transform: translateY(14px); opacity: 0; }
.intro__sun { width: clamp(56px, 14vw, 96px); margin: 0 auto 6px; opacity: 0; transform: scale(.6) rotate(-30deg); }
.intro.play .intro__sun  { animation: introSun .7s var(--ease) .1s forwards; }
.intro.play .intro__mark { animation: introMark .7s var(--ease) .35s forwards; }
.intro.done { animation: introOut .7s var(--ease) forwards; pointer-events: none; }
@keyframes introSun  { to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes introMark { to { opacity: 1; transform: none; } }
@keyframes introOut  { to { transform: translateY(-100%); } }

/* ----------------------------- Curseur --------------------------------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none;
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  transition: transform .18s var(--ease), opacity .25s; opacity: 0; }
.cursor svg { width: 100%; height: 100%; transition: transform .25s var(--ease); }
.cursor.is-active svg { transform: scale(1.7) rotate(18deg); }
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button, body.cursor-on input,
body.cursor-on textarea, body.cursor-on select, body.cursor-on label { cursor: none; }

/* ------------------------ Révélations au scroll ------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .intro { display: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------------- Placeholders images (à remplacer) -------------------- */
/* Emplacements balisés où l'utilisateur déposera ses visuels.            */
.ph {
  display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(92,24,21,.05) 0 8px, rgba(92,24,21,.09) 8px 16px);
  border: 1.5px dashed rgba(92,24,21,.35);
  border-radius: var(--radius); color: rgba(92,24,21,.6);
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .8rem; padding: 14px;
}
.section--bordeaux .ph, .ph--dark {
  background: repeating-linear-gradient(45deg, rgba(242,234,216,.05) 0 8px, rgba(242,234,216,.09) 8px 16px);
  border-color: rgba(242,234,216,.3); color: rgba(242,234,216,.7);
}
.ph .tag { display: inline-block; padding: 3px 9px; border: 1px solid currentColor; border-radius: 999px; }

/* ------------------------------- Hero ---------------------------------- */
.hero { min-height: 100svh; display: grid; align-items: center; position: relative; padding-top: var(--header-h); overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero__sun { width: clamp(72px, 12vw, 128px); margin-bottom: clamp(14px, 3vw, 26px); }
.hero h1 { font-size: clamp(2.6rem, 9vw, 6.4rem); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--jaune); }
.hero__sub { font-size: clamp(1.05rem, 3vw, 1.4rem); margin-top: clamp(16px, 3vw, 24px); max-width: 30ch; opacity: .92; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 5vw, 40px); }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .65; }

/* ----------------------- Blocs de contenu communs ---------------------- */
.lead { font-size: clamp(1.3rem, 3.4vw, 2rem); line-height: 1.35; font-weight: 500; }
.kicker { font-family: var(--font-script); font-size: clamp(1.6rem, 5vw, 2.6rem); color: var(--corail); line-height: 1; }
.grid-2 { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }

.section-title { font-size: clamp(2rem, 6vw, 3.6rem); }
.section-title + .lead { margin-top: 18px; }

/* --- Intro Sarah (accueil) --- */
.sarah { display: grid; gap: 26px; }
@media (min-width: 760px) { .sarah { grid-template-columns: 280px 1fr; gap: 48px; align-items: center; } }
.sarah__portrait { aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.sarah__sign { font-family: var(--font-script); font-size: 2.4rem; color: var(--corail); margin-top: 10px; }

/* --- Aperçu / carte produit --- */
.product-peek { display: grid; gap: clamp(24px, 5vw, 56px); align-items: center; }
@media (min-width: 820px) { .product-peek { grid-template-columns: 1.1fr 1fr; } }
.product-peek__img { aspect-ratio: 4/3; }
.price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 10px 0 22px; }
.price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 6vw, 3rem); color: var(--corail); }
.price-row .meta { opacity: .7; }

/* --- Marchés (cartes date) --- */
.market-list { display: grid; gap: 14px; }
.market-card { display: flex; gap: 16px; align-items: center; padding: 16px;
  background: color-mix(in srgb, var(--creme) 8%, transparent); border-radius: var(--radius);
  border: 1px solid var(--line); }
.section--cream .market-card, .section--cream-2 .market-card { background: #fff; border-color: var(--line); }
.date-chip { flex: none; width: 64px; height: 64px; border-radius: 14px; background: var(--ocre); color: var(--bordeaux);
  display: grid; place-content: center; text-align: center; font-family: var(--font-display); font-weight: 700; line-height: 1; }
.date-chip .d { font-size: 1.5rem; }
.date-chip .m { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }
.market-card.next .date-chip { background: var(--corail); color: #fff; }
.market-card__body h3 { font-size: 1.15rem; }
.market-card__body .where { opacity: .8; font-size: .95rem; }
.market-card__body .time { font-size: .85rem; opacity: .65; }

/* --- Rail horizontal (galerie / instagram) --- */
.rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 auto; }
.rail__item { width: min(78vw, 360px); aspect-ratio: 4/5; }
.rail__item.sq { aspect-ratio: 1; width: min(60vw, 260px); }

/* --- Citation pleine largeur --- */
.pullquote { text-align: center; }
.pullquote q { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 7vw, 4.2rem); line-height: 1.04; quotes: none; }
.pullquote q::before, .pullquote q::after { content: ""; }

/* ------------------------------ Histoire ------------------------------- */
.story { max-width: 760px; margin-inline: auto; }
.story p { font-size: clamp(1.1rem, 2.6vw, 1.3rem); line-height: 1.7; }
.story p + p { margin-top: 1.3em; }
.story__illus { display: grid; gap: 20px; margin: 40px 0; }
@media (min-width: 640px) { .story__illus { grid-template-columns: 1fr 1fr; } }
.story__illus .ph { aspect-ratio: 5/4; }

/* ------------------------------ Détails produit ------------------------ */
.specs { border-top: 1px solid var(--line); }
.spec { border-bottom: 1px solid var(--line); }
.spec__head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.spec__head .plus { transition: transform .3s var(--ease); font-size: 1.4rem; }
.spec.open .spec__head .plus { transform: rotate(45deg); }
.spec__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.spec.open .spec__body { max-height: 320px; }
.spec__body p { padding: 0 4px 18px; opacity: .85; }

/* ------------------------------ Achat ---------------------------------- */
.buy { display: grid; gap: 16px; }
.option-row { display: grid; gap: 10px; }
@media (min-width: 480px) { .option-row { grid-template-columns: 1fr 1fr; } }
.option {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: border-color .2s, background .2s;
}
.option:has(input:checked) { border-color: var(--corail); background: color-mix(in srgb, var(--corail) 8%, transparent); }
.option input { margin-top: 4px; accent-color: var(--corail); }
.option .t { font-family: var(--font-display); font-weight: 700; }
.option .s { font-size: .85rem; opacity: .7; }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 44px; height: 44px; font-size: 1.3rem; font-family: var(--font-display); }
.qty button:hover { background: color-mix(in srgb, var(--corail) 12%, transparent); }
.qty input { width: 46px; text-align: center; border: none; background: none; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

.gift { display: grid; gap: 10px; }
.gift label.tgl { display: inline-flex; gap: 10px; align-items: center; cursor: pointer; font-weight: 600; }
.gift textarea { display: none; width: 100%; min-height: 80px; padding: 14px; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; resize: vertical; }
.gift.open textarea { display: block; }

.buy-bar {
  position: sticky; bottom: 0; z-index: 30; margin-top: 12px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px; border-radius: var(--radius);
  background: var(--bordeaux); color: var(--creme); box-shadow: 0 -10px 30px -16px rgba(0,0,0,.5);
}
.buy-bar .total { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-right: auto; }
.buy-bar .btn { flex: 1; justify-content: center; min-width: 180px; }
.buy-note { font-family: var(--font-script); font-size: 1.5rem; color: var(--jaune); }

/* ------------------------------ Formulaire ----------------------------- */
.form { display: grid; gap: 16px; max-width: 560px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.field input, .field textarea, .field select {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.section--bordeaux .field input, .section--bordeaux .field textarea, .section--bordeaux .field select {
  background: color-mix(in srgb, var(--creme) 8%, transparent); color: var(--creme); border-color: rgba(242,234,216,.25);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--corail); box-shadow: 0 0 0 3px color-mix(in srgb, var(--corail) 25%, transparent); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 16px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.contact-direct { display: grid; gap: 12px; }
.contact-direct a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.contact-direct a:hover { color: var(--corail); }

.callout { padding: clamp(22px, 4vw, 36px); border-radius: var(--radius); }
.callout--terra { background: var(--terracotta); color: var(--creme); }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--bordeaux-2); color: var(--creme); padding-block: clamp(48px, 8vw, 84px); position: relative; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .wordmark { font-family: var(--font-script); font-size: 2.6rem; }
.site-footer .tagline { opacity: .75; margin-top: 6px; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; opacity: .9; transition: color .2s, opacity .2s; }
.footer-col a:hover { color: var(--jaune); opacity: 1; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(242,234,216,.16);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; opacity: .65; }

/* ------------------------------ Divers --------------------------------- */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--jaune); color: var(--bordeaux); font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
hr.rule { border: none; border-top: 1px solid var(--line); margin-block: 40px; }

/* ---------------------------- Newsletter ------------------------------- */
.newsletter { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.newsletter input {
  flex: 1 1 220px; min-width: 0; padding: 14px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.section--bordeaux .newsletter input,
.construction .newsletter input {
  background: color-mix(in srgb, var(--creme) 10%, transparent);
  color: var(--creme); border-color: rgba(242,234,216,.3);
}
.section--bordeaux .newsletter input::placeholder,
.construction .newsletter input::placeholder { color: rgba(242,234,216,.55); }
.newsletter input:focus { outline: none; border-color: var(--corail);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--corail) 25%, transparent); }
.newsletter .btn { flex: 0 0 auto; }
.nl-msg { font-weight: 600; font-size: .95rem; margin-top: 12px; }
.nl-legal { font-size: .8rem; opacity: .6; margin-top: 12px; max-width: 44ch; }

/* --------------------- Page construction (coming soon) ----------------- */
.construction {
  min-height: 100svh; display: flex; flex-direction: column;
  background: var(--bordeaux); color: var(--creme); position: relative; overflow: hidden;
}
.construction__main {
  flex: 1; display: grid; place-items: center; text-align: center;
  padding: clamp(80px, 14vh, 140px) var(--gutter) 40px; position: relative; z-index: 1;
}
.construction__inner { max-width: 640px; }
.construction__sun { width: clamp(84px, 16vw, 132px); margin: 0 auto clamp(16px, 3vw, 26px); }
.construction__mark { font-family: var(--font-script); font-size: clamp(3.4rem, 15vw, 7rem); line-height: .9; }
.construction__slogan { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 4.5vw, 2.2rem); line-height: 1.1; margin-top: 10px; max-width: 18ch; margin-inline: auto; }
.construction__slogan em { font-style: normal; color: var(--jaune); }
.construction__lead { font-size: clamp(1rem, 2.8vw, 1.2rem); opacity: .9; margin-top: 18px; max-width: 46ch; margin-inline: auto; }
.construction__form { margin-top: clamp(24px, 4vw, 34px); display: flex; flex-direction: column; align-items: center; }
.construction__form .newsletter { margin-inline: auto; justify-content: center; }
.construction__ig { margin-top: clamp(26px, 4vw, 38px); }
.construction__ig a { font-family: var(--font-display); font-weight: 700; color: var(--jaune); }
.construction__ig a:hover { color: var(--corail); }
.construction__foot {
  position: relative; z-index: 1; padding: 20px var(--gutter);
  border-top: 1px solid rgba(242,234,216,.16); font-size: .82rem; opacity: .65;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; align-items: center;
}
.construction__foot a:hover { color: var(--jaune); opacity: 1; }
