/* NFCSide — feuille de styles principale
   Couleurs et typographies : voir Logo NFCSide/LISEZ-MOI.txt */

:root {
  --navy: #16243b;
  --navy-2: #1b2c47;
  --navy-3: #2b3a54;
  --cyan: #00b4d8;
  --cyan-light: #48cae4;
  --cyan-bg: #eef8fb;
  --cyan-text: #0a7f99;
  --paper: #f7f9fb;
  --panel: #f4f7fa;
  --border: #e9edf2;
  --border-2: #d9e0e8;
  --text-body: #4a5668;
  --text-muted: #7a8699;
  --text-muted-2: #8fa0b6;
  --white: #ffffff;
  --off-white: #fbfdff;
  --max-width: 1200px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  font-family: 'Chivo', system-ui, sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--cyan-text); }

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

button { font-family: inherit; }

.mono {
  font-family: 'Chivo Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--white); }

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  padding: 15px 28px;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
}
.btn-primary { background: var(--cyan); color: #0c1a2e; }
.btn-primary:hover { background: var(--cyan-light); color: #0c1a2e; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--navy);
  font-weight: 500;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--cyan); color: #0c1a2e; }
.btn:active:not(:disabled) { transform: scale(.96); }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* Retour tactile générique sur les éléments cliquables */
.add-to-cart, .cart-toggle, .qty-btn, .nav-toggle, .cart-close {
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.add-to-cart:active, .cart-toggle:active, .qty-btn:active, .nav-toggle:active, .cart-close:active {
  transform: scale(.92);
}
.mobile-nav a, .footer-links a {
  display: inline-block;
  transition: color .15s ease, transform .12s ease;
}
.main-nav a:active, .mobile-nav a:active, .footer-links a:active {
  transform: scale(.96);
}

@media (prefers-reduced-motion: reduce) {
  .btn:active:not(:disabled),
  .add-to-cart:active, .cart-toggle:active, .qty-btn:active, .nav-toggle:active, .cart-close:active,
  .main-nav a:active, .mobile-nav a:active, .footer-links a:active {
    transform: none;
  }
}

/* ---------- En-tête ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand svg { width: 34px; height: 31px; overflow: visible; }
.brand-word { font-size: 20px; letter-spacing: -0.04em; display: flex; line-height: 1; }
.brand-word .nfc { font-weight: 700; }
.brand-word .side { font-weight: 300; color: #5a6678; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
}
.main-nav a {
  position: relative;
  color: var(--text-body);
  padding-bottom: 5px;
  display: inline-block;
  transition: color .15s ease, transform .12s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.main-nav a.is-active { color: var(--navy); }
.main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.cart-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  cursor: pointer;
}
.cart-toggle:hover { border-color: var(--navy); }
.cart-count {
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes nfcs-bump { 0%{transform:scale(1)} 35%{transform:scale(1.35)} 65%{transform:scale(.92)} 100%{transform:scale(1)} }
.cart-count.bump { animation: nfcs-bump .4s ease; }

@media (prefers-reduced-motion: reduce) {
  .cart-count.bump { animation: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform .15s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav a {
  padding: 14px 40px;
  border-top: 1px solid var(--border);
  color: var(--text-body);
  font-size: 15px;
}
.mobile-nav.is-open { display: flex; }

/* ---------- Animation logo (identique au design d'origine) ---------- */

@keyframes nfcs-roll {
  0% { opacity:0; transform:translateX(-90px) rotate(-372deg); }
  12% { opacity:1; }
  72% { transform:translateX(4px) rotate(-3deg); }
  86% { transform:translateX(-2px) rotate(-16deg); }
  100% { opacity:1; transform:translateX(0) rotate(-12deg); }
}
@keyframes nfcs-wave-a { 0%{opacity:0;transform:scale(.35)} 60%{opacity:1;transform:scale(1.14)} 100%{opacity:1;transform:scale(1)} }
@keyframes nfcs-wave-b { 0%{opacity:0;transform:scale(.35)} 60%{opacity:.72;transform:scale(1.14)} 100%{opacity:.55;transform:scale(1)} }
@keyframes nfcs-in { from{opacity:0;transform:translateX(-14px)} to{opacity:1;transform:none} }
@keyframes nfcs-pulse { 0%,100%{opacity:.35} 50%{opacity:.9} }

.brand .card-shape, .footer-brand-anim .card-shape { transform-box: fill-box; transform-origin: 50% 50%; animation: nfcs-roll .95s cubic-bezier(.16,.84,.3,1) both; }
.brand .wave-a, .footer-brand-anim .wave-a { transform-box: fill-box; transform-origin: 0% 50%; animation: nfcs-wave-a .36s .86s cubic-bezier(.2,1.4,.4,1) both; }
.brand .wave-b, .footer-brand-anim .wave-b { transform-box: fill-box; transform-origin: 0% 50%; animation: nfcs-wave-b .36s 1s cubic-bezier(.2,1.4,.4,1) both; }
.brand .nfc, .footer-brand-anim .nfc { animation: nfcs-in .42s .92s both; }
.brand .side, .footer-brand-anim .side { animation: nfcs-in .42s 1.04s both; }
.footer-brand-anim .baseline { animation: nfcs-fade-up .5s 1.2s ease-out both; }

@keyframes nfcs-fade-up { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.footer-brand-anim { display: flex; align-items: center; gap: 14px; }
.footer-brand-anim .word { font-size: 22px; letter-spacing: -0.04em; display: flex; line-height: 1; }
.footer-brand-anim .baseline { font-family: 'Chivo Mono', monospace; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--text-muted); margin-top: 6px; }

@media (prefers-reduced-motion: reduce) {
  .brand .card-shape, .brand .wave-a, .brand .wave-b, .brand .nfc, .brand .side,
  .footer-brand-anim .card-shape, .footer-brand-anim .wave-a, .footer-brand-anim .wave-b,
  .footer-brand-anim .nfc, .footer-brand-anim .side, .footer-brand-anim .baseline {
    animation: none !important; opacity: 1 !important;
  }
}

/* ---------- Barre de progression de lecture ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 50;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ---------- Repère visuel à l'arrivée sur une section (clic de nav) ---------- */

@keyframes nfcs-section-flash {
  0% { background-color: rgba(0, 180, 216, .1); }
  100% { background-color: transparent; }
}
.flash-target { animation: nfcs-section-flash 1.1s ease-out; }

@media (prefers-reduced-motion: reduce) {
  .flash-target { animation: none; }
}

/* ---------- Ondes NFC : pouls continu ---------- */

.wave-loop { animation: nfcs-pulse 2.6s ease-in-out infinite; }
.wave-loop-2 { animation-delay: .3s; }
.wave-loop-3 { animation-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  .wave-loop, .wave-loop-2, .wave-loop-3 { animation: none !important; }
}

/* ---------- Apparition au chargement (au-dessus de la ligne de flottaison) ---------- */

.hero-copy > * { animation: nfcs-rise .6s cubic-bezier(.2,.8,.2,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .12s; }
.hero-copy > *:nth-child(3) { animation-delay: .2s; }
.hero-copy > *:nth-child(4) { animation-delay: .28s; }
.hero-copy > *:nth-child(5) { animation-delay: .34s; }
.hero-visual { animation: nfcs-rise-scale .7s .16s cubic-bezier(.2,.8,.2,1) both; }

@keyframes nfcs-rise { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
@keyframes nfcs-rise-scale { from{opacity:0;transform:translateY(10px) scale(.98)} to{opacity:1;transform:none} }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { animation: none !important; opacity: 1 !important; }
  .hero-visual { animation: none !important; }
}

/* ---------- Apparition au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

.steps .reveal:nth-child(2), .products-grid .reveal:nth-child(2) { transition-delay: .08s; }
.steps .reveal:nth-child(3), .products-grid .reveal:nth-child(3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Survol : légère élévation des cartes ---------- */

.product-card, .step-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover, .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(22, 36, 59, .08);
  border-color: var(--border-2);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 40px 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.eyebrow {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--cyan-bg);
  color: var(--cyan-text);
  font-family: 'Chivo Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.hero-lead {
  margin: 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 560px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding-top: 6px; }
.hero-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.dot-sep { width: 1px; height: 14px; background: #e0e6ec; }

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.22;
}
.hero-visual svg { width: 100%; height: 100%; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 65% at 50% 42%, var(--white) 0%, rgba(255,255,255,.85) 38%, rgba(255,255,255,.35) 62%, rgba(255,255,255,.05) 82%);
}

/* ---------- Sections génériques ---------- */

section { scroll-margin-top: 84px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.section-head h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.products-lead {
  margin: 4px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 56ch;
  text-wrap: pretty;
}

.band {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band .container { padding: 88px 40px; }

/* ---------- Étapes ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.step-title { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.step-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-body); text-wrap: pretty; }

/* ---------- Produits ---------- */

.products-section .container { padding: 88px 40px; }
.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.products-note { font-size: 14px; color: var(--text-muted); }

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

.product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.product-card--highlight { border-color: var(--cyan); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  color: #0c1a2e;
  font-family: 'Chivo Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-image { aspect-ratio: 4 / 3; background: var(--panel); overflow: hidden; }
.product-image svg { width: 100%; height: 100%; transition: transform .35s ease; }
.product-card:hover .product-image svg { transform: scale(1.06); }
.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-title { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.product-desc { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-body); flex: 1; text-wrap: pretty; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; }
.product-price { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; }
.add-to-cart {
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-family: 'Chivo', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.add-to-cart:hover { background: var(--cyan); color: #0c1a2e; }
.add-to-cart.is-added { background: var(--cyan-text); color: var(--white); }

.cart-summary-bar {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--paper);
}
.cart-summary-title { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.cart-summary-sub { font-size: 14px; color: var(--text-muted); }

/* ---------- Panier (tiroir) ---------- */

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 18, 32, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 40;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100vw);
  background: var(--white);
  box-shadow: -18px 0 44px rgba(10,18,32,.16);
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
  z-index: 41;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-head h2 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.cart-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--text-muted);
  padding: 4px 8px;
}
.cart-close:hover { color: var(--navy); }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; display: flex; flex-direction: column; gap: 0; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--text-muted); font-size: 14.5px; }

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-thumb {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}
.cart-item-thumb svg { width: 100%; height: 100%; }
.cart-item-name { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.cart-item-price { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--white);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.qty-btn:hover { border-color: var(--navy); }
.qty-value { min-width: 18px; text-align: center; font-size: 14px; font-weight: 500; }
.remove-item {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 12.5px; text-decoration: underline;
  padding: 0; margin-left: 4px;
}
.remove-item:hover { color: #c23b3b; }

.cart-item-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.cart-item-link input {
  padding: 9px 11px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  font-family: 'Chivo', system-ui, sans-serif;
  font-size: 13px;
  color: var(--navy);
}
.cart-item-link input:focus { outline: none; border-color: var(--cyan); }
.cart-item-link input.is-invalid { border-color: #c23b3b; }
.cart-item-link input.is-invalid:focus { border-color: #c23b3b; }

.cart-drawer-foot {
  border-top: 1px solid var(--border);
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-line { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--text-body); }
.cart-line.total { font-size: 17px; font-weight: 700; color: var(--navy); }
.cart-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.checkout-error { font-size: 13px; color: #c23b3b; display: none; }
.checkout-error.is-visible { display: block; }

/* ---------- FAQ ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan-text);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}

/* ---------- Contact ---------- */

.contact-section .container { padding: 88px 40px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-copy { display: flex; flex-direction: column; gap: 18px; }
.contact-copy p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--text-body); text-wrap: pretty; }
.contact-details { display: flex; flex-direction: column; gap: 10px; padding-top: 10px; font-size: 15px; color: var(--text-body); }

.contact-form {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-body); }
.field input, .field textarea, .field select {
  padding: 13px 15px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-family: 'Chivo', system-ui, sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); }
.field textarea { resize: vertical; }
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 4px; }
.form-status { font-size: 13.5px; color: var(--cyan-text); }
.form-status.is-error { color: #c23b3b; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Bandeau de clôture ---------- */

.closing-cta { background: var(--navy); }
.closing-cta .container {
  padding: 76px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.closing-cta h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--off-white);
  max-width: 30ch;
  text-wrap: balance;
}
.closing-cta p { margin: 0 0 8px; font-size: 15.5px; color: var(--text-muted-2); }

/* ---------- Pied de page ---------- */

.site-footer { border-top: 1px solid var(--border); background: var(--paper); }
.site-footer .container {
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand svg { width: 28px; height: 26px; }
.footer-brand span { font-size: 16px; letter-spacing: -0.04em; }
.footer-links { display: flex; align-items: center; gap: 26px; font-size: 13.5px; color: var(--text-muted); flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--navy); }
.footer-legal { border-top: 1px solid var(--border); }
.footer-legal .container { padding: 18px 40px; justify-content: center; gap: 22px; font-size: 12.5px; color: var(--text-muted); }

/* ---------- Pages simples (mentions légales, CGV, succès, annulation) ---------- */

.simple-page .container { padding: 72px 40px 100px; max-width: 820px; }
.simple-page h1 { font-size: 40px; font-weight: 700; letter-spacing: -0.04em; margin: 0 0 8px; }
.simple-page .updated { font-size: 13.5px; color: var(--text-muted); margin-bottom: 40px; }
.simple-page h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 12px; scroll-margin-top: 84px; }
.simple-page p, .simple-page li { font-size: 15.5px; line-height: 1.7; color: var(--text-body); }
.simple-page ul { padding-left: 20px; }
.legal-callout {
  background: var(--cyan-bg);
  color: var(--cyan-text);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.status-page { text-align: center; padding: 120px 40px; }
.status-page .icon { margin: 0 auto 28px; width: 72px; height: 72px; }
.status-page h1 { font-size: 32px; margin: 0 0 14px; letter-spacing: -0.03em; }
.status-page p { font-size: 16px; color: var(--text-body); max-width: 480px; margin: 0 auto 28px; line-height: 1.6; }
.order-recap {
  max-width: 460px;
  margin: 0 auto 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: left;
  background: var(--paper);
}
.order-recap dt { font-size: 12.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 12px; }
.order-recap dt:first-child { margin-top: 0; }
.order-recap dd { margin: 3px 0 0; font-size: 15px; color: var(--navy); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero { padding: 64px 28px 56px; }
  .hero h1 { font-size: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .products-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .band .container, .products-section .container, .contact-section .container { padding: 64px 28px; }
  .container { padding: 0 28px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .mobile-nav { padding: 4px 0; }
  .site-header .container { padding: 14px 20px; }
  .hero { padding: 44px 20px 44px; }
  .hero h1 { font-size: 34px; }
  .hero-lead { font-size: 16.5px; }
  .hero-visual { display: none; }
  .section-head h2 { font-size: 28px; }
  .products-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container, .band .container, .products-section .container, .contact-section .container { padding: 44px 20px; }
  .site-footer .container { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100vw; }
  .simple-page .container { padding: 48px 20px 72px; }
}
