/* ============================================================
   Sébastien — Créateur de sites internet · Angoulême
   "Editorial Contrast" — d'après Tobias van Schneider (NYC)
   Spec design : octo ui-ux-designer
   ============================================================ */

:root {
  --paper: #F0EBE1;
  --paper-alt: #E8E1D6;
  --ink: #0F0E0B;
  --ink-mid: #4A453C;
  --ink-light: #908880;
  --blue: #1F3BFF;
  --blue-dark: #0A1FCC;
  --blue-soft: #6a8bff;
  --void: #0A0908;
  --void-mid: #161411;
  --line-light: rgba(15, 14, 11, 0.12);
  --line-dark: rgba(240, 235, 225, 0.12);

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --margin: clamp(1.4rem, 6vw, 7rem);
  --gutter: clamp(1rem, 2.5vw, 2rem);
  --container: 1440px;
  --section-pad: clamp(5rem, 12vw, 11rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-curtain: cubic-bezier(0.76, 0, 0.24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--page-bg, var(--paper));
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .6s var(--ease);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9996; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--blue); }

/* ---------- Curseur ---------- */
.cursor { position: fixed; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); display: grid; place-items: center; transition: width .35s var(--ease), height .35s var(--ease), background .3s; }
.cursor span { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: .06em; color: #fff; opacity: 0; white-space: nowrap; }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(31,59,255,.22); border: 1px solid var(--blue); }
.cursor.is-label { width: 84px; height: 84px; background: var(--blue); }
.cursor.is-label span { opacity: 1; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ---------- Vignette flottante ---------- */
.float { position: fixed; top: 0; left: 0; z-index: 700; width: 320px; height: 230px; pointer-events: none; opacity: 0; transform: translate(-50%,-50%) scale(.8); transition: opacity .4s var(--ease), transform .5s var(--ease); }
.float.is-on { opacity: 1; }
.float__inner { width: 100%; height: 100%; border-radius: 10px; background-size: 220% 220%; animation: grad 7s ease infinite; box-shadow: 0 30px 70px rgba(10,9,8,.35); }
.float__inner[data-grad="1"] { background-image: linear-gradient(135deg,#7b5cff,#1f3bff,#0a1a7a); }
.float__inner[data-grad="2"] { background-image: linear-gradient(135deg,#00c2ac,#1f8bff,#0a3b6b); }
.float__inner[data-grad="3"] { background-image: linear-gradient(135deg,#ff6a3b,#ff9d2f,#b3242b); }
@keyframes grad { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@media (pointer: coarse) { .float { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--blue); z-index: 9998; transition: background-color .4s; }
.scroll-progress.on-dark { background: var(--paper); }

/* ---------- Preloader (rideau) ---------- */
.preloader { position: fixed; inset: 0; z-index: 10000; }
.preloader.is-gone { display: none; }
.preloader__content { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; color: var(--paper); transition: opacity .4s; }
.preloader__mark { font-family: var(--serif); font-size: clamp(2rem,7vw,4rem); letter-spacing: -.02em; }
.preloader__count { font-family: var(--sans); font-size: .85rem; color: var(--ink-light); }
.preloader__panel { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--void); z-index: 2; transition: transform .9s var(--ease-curtain); }
.preloader__panel--top { top: 0; }
.preloader__panel--bot { bottom: 0; }
.preloader.is-done .preloader__content { opacity: 0; }
.preloader.is-done .preloader__panel--top { transform: translateY(-100%); }
.preloader.is-done .preloader__panel--bot { transform: translateY(100%); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem var(--margin); transition: padding .4s, background .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav--dark { color: var(--paper); }
.nav.is-scrolled { background: rgba(10,9,8,.82); backdrop-filter: blur(16px); border-color: var(--line-dark); padding-top: .8rem; padding-bottom: .8rem; color: var(--paper); }
.nav__brand { display: flex; align-items: center; gap: .65rem; }
.logo svg { display: block; border-radius: 9px; }
.nav__name { font-family: var(--sans); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.nav__links { display: flex; gap: 1.7rem; }
.nav__links a { position: relative; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: inherit; opacity: .65; transition: opacity .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; color: inherit; }
.nav__burger span { width: 26px; height: 2px; background: currentColor; transition: .3s; }

/* ---------- Boutons / liens ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; padding: 1rem 1.8rem; border: 1px solid var(--ink); border-radius: 0; cursor: pointer; transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s; will-change: transform; }
.btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); }
.btn--nav { padding: .7rem 1.3rem; background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--nav:hover { background: #fff; color: var(--ink); border-color: #fff; }
.link-arrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: .5rem; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

.btn--submit { background: var(--blue); border-color: var(--blue); color: #fff; width: 100%; height: 64px; }
.btn--submit:hover { background: var(--ink); border-color: var(--ink); }
.btn--submit:disabled { opacity: .6; cursor: default; }

/* ---------- Hero ---------- */
.hero { min-height: 92svh; background: var(--void); color: var(--paper); display: flex; align-items: center; padding: clamp(7rem,13vh,9rem) var(--margin) clamp(3rem,6vw,5rem); position: relative; }
.hero__col { width: 100%; max-width: 1100px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-light); margin-bottom: clamp(1.4rem,3vw,2.2rem); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 8.5vw, 8.5rem); line-height: .94; letter-spacing: -.03em; margin-bottom: clamp(1.4rem,3vw,2rem); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.hero__title em { color: var(--blue-soft); }
.hero.is-in .line:nth-child(1) > span { transform: none; transition-delay: .05s; }
.hero.is-in .line:nth-child(2) > span { transform: none; transition-delay: .18s; }

.hero__lead { font-size: clamp(1rem,1.5vw,1.25rem); color: #c9c3b8; max-width: 46ch; margin-bottom: clamp(1.8rem,3vw,2.4rem); opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease) .5s, transform .8s var(--ease) .5s; }
.hero__lead strong { color: var(--paper); font-weight: 500; }
.hero.is-in .hero__lead { opacity: 1; transform: none; }
.hero__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease) .65s, transform .8s var(--ease) .65s; }
.hero.is-in .hero__cta { opacity: 1; transform: none; }
.hero__points { margin-top: clamp(1.6rem,3vw,2.2rem); font-size: .82rem; color: var(--ink-light); letter-spacing: .01em; opacity: 0; transition: opacity .8s var(--ease) .8s; }
.hero.is-in .hero__points { opacity: 1; }

/* ---------- Marquee (éditorial, sobre) ---------- */
.marquee { overflow: hidden; background: var(--paper); color: var(--ink); padding: 1.1rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line-light); }
.marquee__track { display: flex; align-items: center; gap: 1.6rem; white-space: nowrap; width: max-content; animation: scroll 40s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: clamp(1rem,1.9vw,1.45rem); }
.marquee__track i { font-style: normal; color: var(--blue); font-size: .7em; transform: translateY(-1px); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Blocs ---------- */
.block { position: relative; padding: var(--section-pad) var(--margin); max-width: var(--container); margin-inline: auto; }
.block[data-bg="paperAlt"] { background: var(--paper-alt); max-width: none; }
.block[data-bg="paperAlt"] > * { max-width: var(--container); margin-inline: auto; }
.block__label { display: flex; align-items: center; gap: .55rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mid); margin-bottom: 2.5rem; }
.block__label span { color: var(--blue); font-variant-numeric: tabular-nums; }
.big { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,5vw,5.5rem); line-height: 1; letter-spacing: -.03em; }
.block__head { margin-bottom: clamp(3rem,6vw,5rem); }
.ghost-num { position: absolute; top: -.15em; right: var(--margin); font-family: var(--serif); font-size: clamp(8rem,22vw,20rem); line-height: 1; color: var(--line-light); pointer-events: none; z-index: 0; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- À propos ---------- */
.about { display: grid; grid-template-columns: repeat(12,1fr); column-gap: var(--gutter); row-gap: 0; }
.about__head { grid-column: 1 / 8; position: relative; z-index: 1; }
.about__head .big { max-width: 12ch; }
.about__body { grid-column: 8 / 13; display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.08rem; color: var(--ink-mid); align-self: center; }
.about__body strong { color: var(--ink); font-weight: 700; }
.stats { grid-column: 1 / 13; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: clamp(3rem,6vw,5rem); border-top: 1px solid var(--line-light); padding-top: 3rem; }
.stat { padding-left: 1.2rem; border-left: 3px solid var(--blue); }
.stat__num { font-family: var(--serif); font-size: clamp(3rem,7vw,5.5rem); line-height: 1; letter-spacing: -.02em; display: block; }
.stat__num small { font-size: .3em; color: var(--ink-mid); }
.stat p { color: var(--ink-mid); margin-top: .5rem; font-size: .92rem; }

/* ---------- Services (inversion) ---------- */
.svc { list-style: none; }
.svc__item { display: grid; grid-template-columns: 64px 1.1fr 1.3fr 40px; gap: var(--gutter); align-items: center; padding: clamp(1.6rem,3vw,2.6rem) clamp(1rem,2vw,1.8rem); border-top: 1px solid var(--line-light); will-change: background-color; transition: background .45s var(--ease), color .45s var(--ease); }
.svc__item:last-child { border-bottom: 1px solid var(--line-light); }
.svc__n { font-family: var(--serif); font-size: 1.4rem; color: var(--blue); }
.svc__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem,4vw,3.4rem); line-height: 1.02; }
.svc__desc { font-size: .95rem; color: var(--ink-mid); opacity: .75; transform: translateX(-8px); transition: opacity .45s var(--ease), transform .45s var(--ease), color .45s; }
.svc__arrow { font-size: 1.5rem; justify-self: end; color: var(--ink-light); transition: transform .45s var(--ease), color .45s; }
.svc__item:hover { background: var(--ink); color: var(--paper); }
.svc__item:hover .svc__n { color: var(--blue-soft); }
.svc__item:hover .svc__desc { opacity: 1; transform: none; color: #c9c3b8; }
.svc__item:hover .svc__arrow { color: var(--paper); transform: rotate(-45deg); }

/* ---------- USP ---------- */
.usp { background: var(--void); color: var(--paper); padding: clamp(5rem,11vw,9rem) var(--margin); text-align: center; overflow: hidden; }
.usp__title { font-family: var(--serif); font-weight: 400; line-height: .9; letter-spacing: -.03em; }
.usp__word { display: block; font-size: clamp(2.4rem,8vw,7.5rem); }
.usp__word--it { font-style: italic; }
.usp__word .ltr { color: var(--paper); transition: color .15s linear; }
.usp__rule { display: block; width: min(60%,520px); height: 1px; background: var(--line-dark); margin: clamp(.6rem,1.5vw,1.4rem) auto; }
.usp__sub { font-size: clamp(1.05rem,1.8vw,1.4rem); color: var(--ink-light); max-width: 540px; margin: clamp(2rem,4vw,3rem) auto 2rem; }
.usp__sub strong { color: var(--paper); }
.usp__bullets { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem 2.4rem; margin-bottom: 2.6rem; }
.usp__bullets li { font-size: .95rem; color: #c9c3b8; }
.usp__bullets li::before { content: "— "; color: var(--blue-soft); }

/* ---------- Méthode ---------- */
.steps { list-style: none; }
.step { display: grid; grid-template-columns: 100px 1fr; gap: clamp(1.2rem,3vw,3rem); padding: clamp(1.8rem,3vw,2.6rem) 0; border-top: 1px solid var(--line-light); align-items: baseline; }
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step--alt { grid-template-columns: 1fr 100px; }
.step--alt > div { order: -1; text-align: right; margin-left: auto; max-width: 60ch; }
.step--alt .step__n { text-align: right; }
.step__n { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem,4vw,3rem); color: var(--blue); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,3vw,2.2rem); margin-bottom: .4rem; }
.step p { color: var(--ink-mid); max-width: 58ch; }

/* ---------- Réalisations (cartes "navigateur") ---------- */
.projects { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,2.5vw,2.5rem); }
.project { display: block; }
.project__frame { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-light); background: #fff; box-shadow: 0 18px 40px rgba(20,19,15,.10); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.project:hover .project__frame { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(20,19,15,.16); }
.project__bar { display: flex; align-items: center; gap: .7rem; height: 34px; padding: 0 .9rem; background: #f3f0ea; border-bottom: 1px solid var(--line-light); }
.project__dots { display: flex; gap: 6px; }
.project__dots i { width: 9px; height: 9px; border-radius: 50%; }
.project__dots i:nth-child(1) { background: #ff5f57; }
.project__dots i:nth-child(2) { background: #febc2e; }
.project__dots i:nth-child(3) { background: #28c840; }
.project__url { font-size: .72rem; color: var(--ink-mid); margin: 0 auto; transform: translateX(-14px); background: #fff; border: 1px solid var(--line-light); border-radius: 100px; padding: .12rem .9rem; }
.project__img { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper); }
.project__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .8s var(--ease); }
.project:hover .project__img img { transform: scale(1.04); }
.project__row { display: grid; grid-template-columns: 34px 1fr; gap: .2rem 1rem; align-items: baseline; padding: 1.1rem .1rem 0; }
.project__idx { font-size: .78rem; color: var(--ink-light); }
.project__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem,2.6vw,2.2rem); line-height: 1; letter-spacing: -.02em; transition: color .3s; }
.project:hover .project__name { color: var(--blue); }
.project__meta { grid-column: 2; display: flex; flex-direction: column; gap: .2rem; margin-top: .35rem; }
.project__tag { font-size: .82rem; color: var(--ink-mid); }
.project__go { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--blue); transition: transform .3s var(--ease); }
.project:hover .project__go { transform: translateX(4px); }
@media (max-width: 900px) { .projects { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .projects { grid-template-columns: 1fr; } }

/* ---------- Zones ---------- */
.zones__grid { display: block; }
.zones__lead { font-size: 1.1rem; color: var(--ink-mid); max-width: 50ch; margin: 1.8rem 0 2.5rem; }
.zones__lead strong { color: var(--ink); }
.zones__list { display: flex; flex-wrap: wrap; gap: .7rem; list-style: none; }
.zones__list li { border: 1px solid var(--line-light); border-radius: 100px; overflow: hidden; }
.zones__list span { position: relative; display: block; padding: .55rem 1.1rem; font-size: .88rem; transition: color .3s; z-index: 1; }
.zones__list span::before { content: ""; position: absolute; inset: 0; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); z-index: -1; }
.zones__list li:hover span { color: #fff; }
.zones__list li:hover span::before { transform: scaleX(1); transform-origin: left; }
.zones__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; display: block; }
.zones__photo figcaption { margin-top: .7rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-light); }

/* ---------- FAQ ---------- */
.faq__item { border-top: 1px solid var(--line-light); }
.faq__item:last-child { border-bottom: 1px solid var(--line-light); }
.faq__item:nth-child(odd) { background: rgba(232,225,214,.4); }
.faq__item summary { font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem,2.6vw,2rem); padding: 1.5rem clamp(.8rem,2vw,1.5rem); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .3s; }
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "(+)"; font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--blue); }
.faq__item[open] summary::after { content: "(—)"; }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq__item[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p { color: var(--ink-mid); padding: 0 clamp(.8rem,2vw,1.5rem) 1.6rem; max-width: 70ch; font-size: 1.04rem; }
/* details ouvert : neutralise le toggle natif instantané pour laisser l'anim CSS */
.faq__item[open] > summary ~ .faq__body { }

/* ---------- Contact ---------- */
.contact__sig { display: block; width: 80px; height: 2px; background: var(--blue); margin: -2.5rem 0 2rem; }
.contact__lead { font-size: 1.12rem; color: var(--ink-mid); max-width: 50ch; margin-bottom: 3rem; }
.contact__lead strong { color: var(--ink); }
.form { display: grid; gap: 1.6rem; max-width: 860px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mid); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--ink); border-radius: 0; padding: .7rem .1rem; transition: border-color .3s; }
.field input::placeholder, .field textarea::placeholder { color: #a8a294; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--blue); border-bottom-width: 2px; }
.field textarea { resize: vertical; border: 1px solid var(--ink); padding: .9rem 1rem; }
.field textarea:focus { border-color: var(--blue); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F0E0B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .2rem center; padding-right: 1.5rem; }
.field select option { background: var(--paper); }
.field--check label { display: flex; gap: .6rem; align-items: flex-start; text-transform: none; letter-spacing: 0; font-size: .9rem; color: var(--ink-mid); cursor: pointer; }
.field--check input { width: 18px; height: 18px; accent-color: var(--blue); margin-top: 2px; }
.form__note { font-size: .8rem; color: var(--ink-mid); }
.form__status { font-family: var(--serif); font-size: 1.15rem; }
.form__status.ok { color: var(--blue); }
.form__status.err { color: #C42B2B; }

/* ---------- Footer ---------- */
.footer { background: var(--void); color: var(--paper); padding: clamp(4rem,9vw,8rem) var(--margin) 2.5rem; }
.footer__cta { font-family: var(--serif); font-weight: 400; line-height: .88; letter-spacing: -.04em; margin-bottom: clamp(3rem,6vw,5rem); }
.footer__line { display: block; font-size: clamp(3rem,15vw,15rem); }
.footer__line--it { font-style: italic; color: var(--blue-soft); }
.footer__line .ltr { display: inline-block; overflow: hidden; }
.footer__line .ltr > span { display: inline-block; transform: translateY(110%); transition: transform .7s var(--ease); }
.footer__cta.is-in .ltr > span { transform: none; }
.footer__grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); padding-top: 2.5rem; }
.footer__brand { display: flex; gap: 1rem; max-width: 440px; }
.footer__brand p { color: var(--ink-light); font-size: .95rem; }
.footer__brand strong { color: var(--paper); }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; text-align: right; }
.footer__nav a { color: var(--ink-light); transition: color .3s; }
.footer__nav a:hover { color: var(--blue-soft); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .8rem; color: var(--ink-light); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__col { grid-column: 1 / 13; }
  .hero__meta { grid-column: 1 / 13; align-self: auto; padding-top: 2rem; }
  .about__head, .about__body, .stats { grid-column: 1 / 13; }
  .about__body { margin-top: 2rem; }
  .zones__grid { grid-template-columns: 1fr; }
  .zones__map { max-width: 360px; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .btn--nav { display: none; }
  .nav.is-open { background: var(--void); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav.is-open .nav__brand, .nav.is-open .nav__burger { position: relative; z-index: 2; }
  .nav.is-open .nav__links { display: flex; position: fixed; inset: 0; z-index: 1; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem; background: var(--void); }
  .nav.is-open .nav__links a { font-size: 1.6rem; opacity: 1; color: var(--paper); }
  .nav.is-open .nav__links a::after { display: none; }
  .nav.is-open .nav__burger span:first-child { transform: rotate(45deg) translate(5px,5px); }
  .nav.is-open .nav__burger span:last-child { transform: rotate(-45deg) translate(5px,-5px); }
  .masthead { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; }
  .masthead li:nth-child(3) { border-left: none; padding-left: 0; }
  .stats { grid-template-columns: 1fr; gap: 2rem; }
  .svc__item { grid-template-columns: 40px 1fr; row-gap: .6rem; }
  .svc__desc, .svc__arrow { grid-column: 2; }
  .svc__arrow { display: none; }
  .step, .step--alt { grid-template-columns: 60px 1fr; }
  .step--alt > div { order: 0; text-align: left; margin-left: 0; }
  .step--alt .step__n { text-align: left; }
  .form__row { grid-template-columns: 1fr; }
  .footer__nav { text-align: left; }
}
