/* ═══════════════════════════════════════════════════════
   SPZ GESTION — STYLES VAGUE 1
   Charte : noir profond / beige chaud / crème / taupe / doré rare
   Typo : Cormorant Garamond (titres) + Inter (corps)
   ═══════════════════════════════════════════════════════ */

:root {
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --ink-line: rgba(17, 17, 17, 0.1);
  --beige: #E8DFD4;
  --cream: #F5F1EB;
  --taupe: #B8AA9C;
  --gold: #C8A977;
  --muted: rgba(17, 17, 17, 0.55);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ─── Container ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ─── Typography helpers ─── */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.section-tag__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 500;
}
.section-tag__line {
  width: 50px;
  height: 1px;
  background: var(--ink);
  opacity: 0.2;
}
.section-tag__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.h-display em { font-style: italic; opacity: 0.55; }

.text-prose { line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   NAV TOP — sticky
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 235, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
.nav.scrolled { border-bottom-color: var(--ink-line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__brand-mark { color: var(--gold); font-size: 1rem; }
.nav__brand-name em { font-style: italic; font-weight: 400; }

.nav__menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav__menu a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--gold); }

.nav__cta {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); }

.nav__burger {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__burger span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav__burger span:nth-child(1) { top: 9px; }
.nav__burger span:nth-child(2) { top: 14px; }
.nav__burger span:nth-child(3) { top: 19px; }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg); top: 14px; }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg); top: 14px; }

/* Menu mobile : caché par défaut (sera affiché sur mobile via media query) */
.nav__mobile { display: none; }

/* ═══════════════════════════════════════════════════════
   SECTION : générique
   ═══════════════════════════════════════════════════════ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--beige { background: var(--beige); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark .section-tag__line { background: var(--cream); opacity: 0.2; }
.section--dark .section-tag__label { color: rgba(245, 241, 235, 0.6); }
.section--dark .eyebrow { color: rgba(245, 241, 235, 0.6); }
.section--dark .eyebrow::before { background: var(--gold); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 1.75rem 0 1.5rem;
}
.hero__sub {
  font-size: 1.05rem;
  max-width: 480px;
  color: rgba(17, 17, 17, 0.75);
}
.hero__cta-row {
  display: flex;
  gap: 0.75rem;
  margin: 2.25rem 0 2rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--gold); }
.btn__arrow { font-family: var(--serif); font-style: italic; font-size: 1rem; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.hero__meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink-line);
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.hero__meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}
.hero__meta-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ─── HERO COMPO SIGNATURE (SVG abstrait chaos → ordre) ─── */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hero__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   PROBLÈME
   ═══════════════════════════════════════════════════════ */
.problem__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.problem__mark {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.problem__title {
  font-size: clamp(2rem, 4vw, 3rem);
}
.problem__text {
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.8);
}
.problem__text p { margin-bottom: 1.25rem; }
.problem__highlight {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   MÉTHODE
   ═══════════════════════════════════════════════════════ */
.method__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 760px;
  margin-bottom: 3rem;
}
.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}
.method-step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.4);
}
.method-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.method-step__title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.875rem;
}
.method-step__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.75);
}
.method-step__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.method-step__tag .dot { color: var(--gold); margin: 0 0.3rem; }

/* ═══════════════════════════════════════════════════════
   PULL QUOTE (manifeste)
   ═══════════════════════════════════════════════════════ */
.pullquote {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.pullquote__mark {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pullquote__text {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto;
  font-weight: 400;
}
.pullquote__text em { font-style: italic; color: var(--gold); }
.pullquote__sig {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pullquote__sig::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   ACCOMPAGNEMENT — niveaux
   ═══════════════════════════════════════════════════════ */
.accompagnement__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  max-width: 800px;
}
.levels {
  list-style: none;
}
.level {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink-line);
  transition: padding 0.3s;
}
.level:last-child { border-bottom: 1px solid var(--ink-line); }
.level:hover { padding-left: 0.5rem; }
.level__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}
.level__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.level__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.level__badge {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-weight: 600;
  font-family: var(--sans);
}
.level__desc {
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.7);
}
.level__price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}
.level__duration {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.25rem;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════
   RÉALISATIONS — cas clients
   ═══════════════════════════════════════════════════════ */
.cases__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 3.5rem;
}
.cases__list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}
.case {
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px rgba(17, 17, 17, 0.12);
}
.case__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink-line);
}
.case__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}
.case__title em { font-style: italic; opacity: 0.55; }
.case__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  margin-right: 0.3rem;
}
.case__meta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.case__meta .dot { color: var(--gold); margin: 0 0.4rem; }
.case__visual {
  margin: 0 auto;
  max-width: 100%;
}
.case__visual img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Vague 2 placeholder (à supprimer quand cas ajoutés) */
.case-future {
  background: transparent;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  padding: 1.75rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-radius: 4px;
}
.case-future .gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   POUR QUI
   ═══════════════════════════════════════════════════════ */
.audience__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.audience-item {
  border-top: 1px solid rgba(17, 17, 17, 0.4);
  padding-top: 1.25rem;
}
.audience-item__mark { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.875rem; }
.audience-item__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.audience-item__desc {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   BANDE TARIFS — fond noir
   ═══════════════════════════════════════════════════════ */
.pricing-band {
  background: var(--ink);
  color: var(--cream);
}
.pricing-band .eyebrow { color: rgba(245, 241, 235, 0.65); }
.pricing-band .eyebrow::before { background: var(--gold); }
.pricing-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.pricing-band__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1.5rem 0 1.75rem;
}
.pricing-band__title em { color: var(--gold); opacity: 1; }
.pricing-band__text {
  color: rgba(245, 241, 235, 0.75);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.pricing-ticket {
  border: 1px solid rgba(245, 241, 235, 0.15);
  padding: 2rem 1.75rem;
  position: relative;
  background: rgba(245, 241, 235, 0.02);
}
.pricing-ticket::before,
.pricing-ticket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
}
.pricing-ticket::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.pricing-ticket::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(245, 241, 235, 0.12);
}
.pricing-row:last-of-type { border-bottom: none; padding-top: 1rem; }
.pricing-row__val {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}
.pricing-row__price {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.6rem;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════
   CONTACT — fond noir
   ═══════════════════════════════════════════════════════ */
.contact__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.contact__lede {
  color: rgba(245, 241, 235, 0.75);
  margin-bottom: 3rem;
  max-width: 540px;
  line-height: 1.7;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.6);
  font-weight: 500;
}
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 235, 0.2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.625rem 0;
  transition: border-color 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea {
  border: 1px solid rgba(245, 241, 235, 0.2);
  padding: 0.875rem 1rem;
  border-radius: 2px;
  min-height: 110px;
  font-family: var(--sans);
}
.field textarea::placeholder {
  color: rgba(245, 241, 235, 0.4);
  font-style: italic;
  font-family: var(--serif);
}
.contact__submit {
  align-self: flex-start;
  margin-top: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: clamp(0rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(245, 241, 235, 0.1);
  padding-top: 0.5rem;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-info-item__lbl {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.55);
  font-weight: 600;
}
.contact-info-item__val {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}
.contact-info-item__val--phone {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.contact-info-item__val--phone:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: rgba(245, 241, 235, 0.7);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 241, 235, 0.08);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__brand-mark { color: var(--gold); font-size: 1rem; }
.footer__brand em { font-style: italic; font-weight: 400; }
.footer__intro {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col-title {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.footer__col-list a { transition: color 0.2s; }
.footer__col-list a:hover { color: var(--gold); }
.footer__phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 1rem;
}
.footer__bottom {
  padding-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.4);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════
   STICKY MOBILE — Bouton "Appeler"
   ═══════════════════════════════════════════════════════ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
  display: none;
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.25);
}
.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.95rem;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--sans);
  width: 100%;
  text-align: center;
}
.mobile-cta__btn::before {
  content: '◆';
  color: var(--ink);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════
   REVEAL animations
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .method__grid,
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid,
  .problem__grid,
  .pricing-band__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    max-width: 420px;
    margin: 1.5rem auto 0;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 5rem; }
  
  .nav__menu, .nav__cta {
    display: none;
  }
  .nav__burger { display: block; }
  
  /* Mobile menu - réafficher */
  .nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--ink-line);
    padding: 1.5rem 0;
  }
  .nav__mobile.open {
    display: block !important;
  }
  .nav__mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
  }
  .nav__mobile-list a {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav__mobile-cta {
    display: block;
    margin: 1.5rem clamp(1.5rem, 4vw, 4rem) 0;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    padding: 0.95rem;
    border-radius: 3px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
  
  .method__grid,
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__row { grid-template-columns: 1fr; }
  
  .level {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
  .level__price {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 56px;
    margin-top: 0.25rem;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
  }
  
  .contact__info {
    border-left: none;
    border-top: 1px solid rgba(245, 241, 235, 0.1);
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .pricing-band__grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-cta { display: block; }
  
  .footer__bottom { flex-direction: column; }
  
  .case__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
