/* ============================================
   EQUAIZEN V2 — Editorial luxury × Organic nature
   ============================================ */

/* Fonts loaded via <link> in HTML for performance — see preconnect in <head> */

:root {
  --noir: #5C4D3C;
  --noir-light: #6B5D4E;
  --creme: #F5F0E8;
  --creme-dark: #E8E0D4;
  --cuivre: #C4884A;
  --cuivre-glow: #D4A06A;
  --sauge: #8B9E7A;
  --terre: #6B5D4E;
  --text-main: #3A3530;
  --text-soft: #8A8078;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  --radius: 4px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--creme); line-height: 1.7; font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   GRAIN OVERLAY — texture organique
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   TYPO — drammatique, éditorial
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }

p { font-size: 0.92rem; }

.accent { color: var(--cuivre); }
.italic { font-style: italic; }
.light { color: var(--text-soft); }
.small { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1300px; margin: 0 auto; padding: 0 var(--space-lg); }
.container--narrow { max-width: 800px; }

.section { padding: var(--space-xl) 0; }
.spacer { height: var(--space-lg); }
.spacer--sm { height: var(--space-md); }
.section--dark { background: var(--noir); color: var(--creme); }
.section--dark h2, .section--dark h3 { color: var(--creme); }
.section--muted { background: var(--creme-dark); }

/* ============================================
   HEADER — minimal, flottant
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(58, 46, 36, 0.95) 0%, rgba(58, 46, 36, 0.6) 70%, transparent 100%);
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header__logo-name span { color: var(--cuivre-glow); }

.header__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: var(--space-lg); }

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  position: relative;
  transition: opacity 0.3s;
}

.nav a:hover { opacity: 0.6; }

.nav__client {
  padding: 8px 18px;
  border: 1px solid var(--cuivre);
  border-radius: 100px;
  color: var(--cuivre-glow) !important;
  font-size: 0.75rem !important;
  opacity: 0.85;
}

.nav__client:hover {
  background: var(--cuivre);
  color: white !important;
  opacity: 1 !important;
}

.nav__cta {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  transition: all 0.3s;
}

.nav__cta:hover {
  background: white;
  color: var(--noir) !important;
  opacity: 1 !important;
}

/* ============================================
   HERO — cinématique
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26, 24, 20, 0.9) 0%,
    rgba(26, 24, 20, 0.3) 40%,
    rgba(26, 24, 20, 0.1) 70%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  max-width: 900px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cuivre-glow);
  margin-bottom: var(--space-md);
  padding: 8px 20px;
  border: 1px solid rgba(212, 160, 106, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  background: rgba(58, 46, 36, 0.25);
}

.hero h1 { color: var(--creme); margin-bottom: var(--space-md); }

.hero--compact {
  height: auto;
  min-height: 65vh;
  background-size: cover;
  background-position: center;
  align-items: center;
}

.hero--compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26, 24, 20, 0.85) 0%,
    rgba(26, 24, 20, 0.4) 50%,
    rgba(26, 24, 20, 0.2) 100%
  );
  z-index: 1;
}

/* Bandeau vidéo pleine largeur */
.video-break {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-top: var(--space-lg);
}

.video-break video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__text {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.85);
  max-width: 540px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--primary {
  background: var(--cuivre);
  color: var(--creme);
  border-color: var(--cuivre);
}

.btn--primary:hover {
  background: transparent;
  color: var(--cuivre);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--creme);
  border-color: rgba(245, 240, 232, 0.3);
}

.btn--ghost:hover {
  border-color: var(--creme);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--noir);
  color: var(--creme);
  border-color: var(--noir);
}

.btn--dark:hover {
  background: transparent;
  color: var(--noir);
  transform: translateY(-2px);
}

/* ============================================
   SPLIT — layout 2 colonnes asymétriques
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media {
  position: relative;
  overflow: hidden;
}

.split__media img,
.split__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-xl);
}

.split__content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.split__content li {
  font-size: 0.88rem;
  padding: 3px 0;
}

.split__content h2 { margin-bottom: var(--space-sm); }

/* Séparateur entre les splits */
.split + .split { border-top: 1px solid rgba(0,0,0,0.06); }
.section--dark + .split { border-top: none; }

/* Variante : contenu large / image étroite */
.split--wide { grid-template-columns: 1.4fr 0.6fr; }
.split--wide.split--reverse { grid-template-columns: 0.6fr 1.4fr; }

/* ============================================
   MARQUEE — texte défilant
   ============================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  padding: 0 var(--space-lg);
}

.marquee__item .dot,
.marquee__item .marquee__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--cuivre);
  border-radius: 50%;
  margin-left: var(--space-xl);
  vertical-align: middle;
}

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

/* ============================================
   CHIFFRES — horizontal, éditorial
   ============================================ */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.stat { text-align: center; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--cuivre);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================
   CARDS — style éditorial, pas de bordure
   ============================================ */
.card-editorial {
  position: relative;
  overflow: hidden;
}

.card-editorial__media {
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.card-editorial__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-editorial:hover .card-editorial__media img {
  transform: scale(1.05);
}

.card-editorial h3 { margin-bottom: var(--space-xs); }

.card-editorial p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.card-editorial__link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cuivre);
  position: relative;
  padding-bottom: 2px;
}

.card-editorial__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--cuivre);
  transition: width 0.3s;
}

.card-editorial:hover .card-editorial__link::after { width: 100%; }

/* ============================================
   GRID EDITORIALE — asymétrique
   ============================================ */
.grid-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.grid-editorial > :first-child { padding-top: var(--space-2xl); }

/* 3 colonnes */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ============================================
   CITATION — pleine largeur, dramatique
   ============================================ */
.quote-block {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
  color: var(--noir);
}

.quote-block .accent { color: var(--cuivre); }

/* ============================================
   VIDEO BREAK — pleine largeur
   ============================================ */
.video-break {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

.video-break video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PORTES D'ENTREE — style magazine
   ============================================ */
.gates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.gate {
  background: var(--creme);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-main);
}

.gate:hover {
  background: var(--noir);
  color: var(--creme);
}

.gate:hover .gate__label { color: var(--cuivre-glow); }
.gate:hover .gate__title { color: var(--creme); }

.gate__icon {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--cuivre);
  transition: transform 0.4s;
}

.gate:hover .gate__icon { transform: translateY(-4px); }

.gate__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  transition: color 0.4s;
}

.gate__desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: var(--space-sm);
  transition: color 0.4s;
}

.gate:hover .gate__desc { color: rgba(245,240,232,0.8); }

.gate__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cuivre);
  transition: color 0.4s;
}

/* ============================================
   TEMOIGNAGE
   ============================================ */
.testimonial-v2 {
  border-left: 2px solid var(--cuivre);
  padding-left: var(--space-lg);
}

.testimonial-v2 blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial-v2 cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--noir);
  color: rgba(245,240,232,0.8);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: var(--space-sm);
}

.footer a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
  transition: color 0.3s;
}

.footer a:hover { color: var(--cuivre-glow); }

.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: var(--space-md);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-block {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.75);
}

.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--creme); margin-bottom: var(--space-sm); }
.cta-block p { color: rgba(245,240,232,0.7); margin-bottom: var(--space-lg); }

/* ============================================
   DIVIDER
   ============================================ */
.divider { width: 40px; height: 2px; background: var(--cuivre); border: none; margin: var(--space-md) 0; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================
   ACCESSIBILITÉ — Focus visible
   ============================================ */
:focus-visible {
  outline: 2px solid var(--cuivre);
  outline-offset: 3px;
}

.sr-only {
  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;
  top: -100%;
  left: var(--space-md);
  background: var(--cuivre);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 200;
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ============================================
   BURGER MENU — Mobile navigation
   ============================================ */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

/* Burger → X animation */
.burger-btn.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Body scroll lock */
body.nav-open {
  overflow: hidden;
}

/* ============================================
   FORMULAIRE — Styles CSS (remplace inline)
   ============================================ */
.form-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--creme);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--cuivre);
  box-shadow: 0 0 0 3px rgba(196, 136, 74, 0.15);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--cuivre);
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.form-message {
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message--success {
  background: rgba(139, 158, 122, 0.15);
  color: var(--sauge);
  border: 1px solid var(--sauge);
}

.form-message--error {
  background: rgba(196, 80, 80, 0.1);
  color: #a04040;
  border: 1px solid #c06060;
}

/* ============================================
   BLOG — Grille cards + article + breadcrumb
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  display: block;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--text-main);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: var(--space-md);
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin: var(--space-xs) 0;
  color: var(--text-main);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.blog-card__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cuivre);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Article de blog */
.blog-article {
  line-height: 1.8;
}

.blog-article h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.blog-article h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.blog-article p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.blog-article ul, .blog-article ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  list-style: disc;
}

.blog-article li {
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-article blockquote {
  border-left: 3px solid var(--cuivre);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--text-soft);
}

/* Pages de contenu textuel (légal, confidentialité, CGV) */
.content-page p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.content-page h2 {
  margin-top: var(--space-xl);
}

.content-page ul, .content-page ol {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  list-style: disc;
  line-height: 1.8;
}

.content-page li {
  margin-bottom: var(--space-xs);
}

/* Fil d'ariane */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-sm);
}

.breadcrumb a {
  color: var(--cuivre);
  text-decoration: underline;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* LAPTOP (1024-1400px) */
@media (max-width: 1400px) {
  .header { padding: var(--space-sm) var(--space-lg); }
  .nav { gap: 1rem; }
  .nav a { font-size: 0.75rem; letter-spacing: 0.06em; }
  .nav__cta { padding: 10px 20px; font-size: 0.75rem !important; }
  .nav__client { padding: 6px 14px; font-size: 0.7rem !important; }
  .header__logo-name { font-size: 1.3rem; }
  .header__logo-sub { font-size: 0.5rem; letter-spacing: 0.1em; }
  .hero__label { font-size: 0.65rem; padding: 6px 14px; }
  h1 { font-size: 2.8rem; }
}

/* TABLETTE (max 1024px) */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split--reverse .split__media { order: 0; }
  .split--reverse .split__content { order: 0; }
  .split__media { height: 50vh; }
  .split__content { padding: var(--space-xl) var(--space-lg); }
  .gates { grid-template-columns: repeat(2, 1fr); }
  .grid-editorial { grid-template-columns: 1fr; }
  .grid-editorial > :first-child { padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: var(--space-lg); }
  .stats .stat__number { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .header { padding: var(--space-sm) var(--space-md); }

  /* Burger visible */
  .burger-btn { display: flex; }

  /* Nav mobile plein écran */
  .nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    background: rgba(58, 46, 36, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 105;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .nav__client {
    font-size: 0.85rem !important;
    padding: 10px 24px;
  }

  .nav__cta {
    font-size: 1rem !important;
    padding: 14px 36px;
  }

  .hero { height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero__label { font-size: 0.55rem; padding: 5px 12px; }
  .split__media { height: 40vh; }
  .gates { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: var(--space-sm); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-xs); }
  .hero__content { padding: var(--space-xl) var(--space-md) var(--space-lg); }
  .cta-block { padding: var(--space-2xl) var(--space-md); background-attachment: scroll; }
  .quote-block blockquote { font-size: 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-break { height: 250px; }
}

/* ============================================
   PARALLAX BANNER — image fixe + texte centré
   ============================================ */
.parallax-banner {
  position: relative;
  height: 45vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 46, 36, 0.7);
}

.parallax-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .parallax-banner {
    background-attachment: scroll;
    height: 35vh;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

