/* ─── Redfern Services — Shared Styles ─────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --ivory:      #f8f5ef;
  --ivory-dark: #ede9e0;
  --charcoal:   #1a1916;
  --mid:        #6b6760;
  --light:      #b0aca4;
  --pink:       #e90d98;
  --pink-dim:   rgba(233,13,152,0.08);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1440px;
  --pad:   clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  cursor: none;
  overflow-x: clip;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: none; font-family: var(--ff-body); }

/* ── Custom Cursor ── */
#cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--pink); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.2s;
}
#cursor.big { width: 48px; height: 48px; background: transparent; border: 1.5px solid var(--pink); }
#cursor.hidden { opacity: 0; }
@media (hover: none) { #cursor { display: none; } body { cursor: auto; } a, button { cursor: pointer; } }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled { background: rgba(248,245,239,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--ivory-dark); }
.nav__logo { display: flex; align-items: center; }
.nav__logo img, .custom-logo { height: 56px !important; width: auto !important; display: block; transition: opacity 0.2s; }
.nav__logo:hover img { opacity: 0.7; }
.nav__links { display: flex; gap: 40px; list-style: none; }
.nav__links a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; color: var(--mid); position: relative; padding-bottom: 2px; transition: color 0.2s;
}
.nav__links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--pink); transition: width 0.3s; }
.nav__links a:hover { color: var(--charcoal); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--ivory); background: var(--charcoal);
  padding: 10px 22px; border: 1.5px solid var(--charcoal);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav__cta:hover { background: var(--pink); border-color: var(--pink); }
.nav__right { display: flex; align-items: center; gap: 20px; }

/* lang switcher */
.lang-switcher { list-style:none; display:flex; gap:6px; align-items:center; padding:0; margin:0; }
.lang-switcher__link {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--mid); text-decoration: none;
  transition: color 0.25s;
}
.lang-switcher__link:hover { color: var(--charcoal); }
.lang-switcher__link.is-active { color: var(--charcoal); }
.lang-switcher__sep { color: var(--mid); font-size: 11px; }
.lang-switcher li { font-size:11px; letter-spacing:0.14em; text-transform:uppercase; }
.lang-switcher a { color: var(--mid); }
.lang-switcher .current-lang a, .lang-switcher a:hover { color: var(--pink); }

/* ── Reveals (only hide when JS is running, so images never get stuck) ── */
.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 0.9s cubic-bezier(.16,1,.3,1); }
.js .reveal-clip.in { clip-path: inset(0 0 0% 0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .reveal-clip { clip-path: none !important; }
}

/* ── Eyebrow ── */
.eyebrow { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); font-weight: 500; display: block; margin-bottom: 16px; }

/* ── Footer ── */
footer { background: var(--charcoal); color: var(--light); padding: 60px var(--pad); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.footer-tagline { font-size: 12px; line-height: 1.6; color: var(--mid); }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-contact-item { font-size: 13px; color: var(--light); margin-bottom: 8px; }
.footer-contact-item a:hover { color: var(--pink); }
.footer-bottom { max-width: var(--max-w); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--mid); letter-spacing: 0.08em; }

/* ── Marquee ── */
.marquee-track { overflow: hidden; border-top: 1px solid var(--ivory-dark); border-bottom: 1px solid var(--ivory-dark); padding: 18px 0; background: var(--ivory); }
.marquee-inner { display: flex; gap: 0; white-space: nowrap; animation: marquee 24s linear infinite; }
.marquee-item { font-family: var(--ff-display); font-size: 15px; font-style: italic; font-weight: 300; color: var(--mid); letter-spacing: 0.04em; padding-right: 60px; }
.marquee-item span { color: var(--pink); margin-right: 60px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Btn ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-body); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; padding: 14px 28px;
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  transition: background 0.25s, color 0.25s, border-color 0.25s; position: relative;
}
.btn:hover { background: var(--charcoal); color: var(--ivory); }
.btn--pink { background: var(--pink); border-color: var(--pink); color: white; }
.btn--pink:hover { background: transparent; color: var(--pink); }
.btn__arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Utility ── */
.text-pink { color: var(--pink); }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.img-placeholder {
  background-color: var(--ivory-dark);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0,0,0,0.03) 4px, rgba(0,0,0,0.03) 8px);
  display: flex; align-items: flex-end; padding: 16px; overflow: hidden; position: relative;
}
.img-placeholder__label { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }

/* ── Hero (homepage) ── */
.hero { perspective: 1400px; perspective-origin: 50% 40%; overflow: hidden; }
.hero__left { transform-style: preserve-3d; }
.hero__right { transform-style: preserve-3d; }
.hero__img-wrap { position: absolute; inset: -8%; transform-style: preserve-3d; will-change: transform; }
.hero__img-wrap > img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; display: block; }
.hero__h1-part { display: block; overflow: hidden; }
.hero__h1-part--2 { color: var(--mid, #6b6b6b); margin-top: 0.1em; }
.hero__phrase { display: inline-block; will-change: transform, opacity; }
.hero__phrase > em { font-style: italic; font-weight: 300; }
.hero__layer { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(2px); opacity: 0; will-change: transform, opacity; }
.hero__layer--1 { width: 220px; height: 220px; top: 18%; left: -40px; background: radial-gradient(circle at 30% 30%, rgba(216,158,168,0.55), rgba(216,158,168,0) 70%); }
.hero__layer--2 { width: 140px; height: 140px; top: 60%; left: 38%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%); mix-blend-mode: overlay; }
.hero__layer--3 { width: 320px; height: 320px; bottom: -80px; right: -60px; background: radial-gradient(circle at 50% 50%, rgba(20,20,20,0.18), rgba(20,20,20,0) 70%); }
@media (max-width: 900px) {
  .hero {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    perspective: none;
  }
  .hero__layer { display: none; }
  .hero__left {
    justify-content: flex-start !important;
    padding: 32px var(--pad) 48px !important;
    order: 2;
  }
  .hero__right {
    order: 1;
    height: 60vh;
    min-height: 360px;
    max-height: 520px;
  }
  .hero__img-wrap { position: absolute; inset: 0; }
  .hero__img-wrap > img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
  .hero__h1 { font-size: clamp(34px, 9vw, 48px) !important; margin-bottom: 20px !important; }
  .hero__sub { margin-bottom: 32px !important; }
  .hero__ctas { gap: 12px !important; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none !important; }
}
.hero__scroll-line { width: 48px; height: 1px; background: var(--light); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:var(--pink); animation: scan 2s ease-in-out infinite; }
@keyframes scan { 0%{left:-100%;} 50%{left:0;} 100%{left:100%;} }

/* ── Intro block ── */
.intro {
  padding: clamp(80px,10vw,160px) var(--pad);
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.intro__label { padding-top: 6px; }
.intro__heading { font-family: var(--ff-display); font-size: clamp(30px, 3.2vw, 52px); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 28px; }
.intro__heading em { font-style: italic; }
.intro__body { font-size: 15px; color: var(--mid); line-height: 1.75; max-width: 560px; }

/* ── Services grid (home) ── */
.services-section { padding: 0 var(--pad) clamp(80px,10vw,160px); max-width: var(--max-w); margin: 0 auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.services-header__h2 { font-family: var(--ff-display); font-size: clamp(28px, 2.8vw, 46px); font-weight: 300; line-height: 1.1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--ivory-dark); padding: 40px 36px 48px; position: relative; overflow: hidden; transition: background 0.35s; }
.service-card::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background: var(--pink); transition: width 0.4s cubic-bezier(.16,1,.3,1); }
.service-card:hover { background: #ece8de; }
.service-card:hover::after { width: 100%; }
.service-card__num { font-family: var(--ff-display); font-size: 11px; letter-spacing: 0.16em; color: var(--pink); margin-bottom: 28px; display: block; font-style: italic; }
.service-card__title { font-family: var(--ff-display); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 16px; }
.service-card__desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.service-card__list { list-style: none; }
.service-card__list li { font-size: 12px; color: var(--mid); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06); letter-spacing: 0.02em; }
.service-card__list li:last-child { border-bottom: none; }

/* ── Differentiators ── */
.diff-section { background: var(--charcoal); padding: clamp(80px,10vw,160px) var(--pad); }
.diff-inner { max-width: var(--max-w); margin: 0 auto; }
.diff-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: end; }
.diff-heading { font-family: var(--ff-display); font-size: clamp(36px, 4vw, 64px); font-weight: 300; color: var(--ivory); line-height: 1.08; letter-spacing: -0.01em; }
.diff-heading em { font-style: italic; color: var(--pink); }
.diff-sub { font-size: 14px; color: var(--light); line-height: 1.75; align-self: end; }
.diff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }
.diff-item { padding: 36px 28px; border-top: 1px solid rgba(255,255,255,0.08); position: relative; }
.diff-item__num { font-family: var(--ff-display); font-size: 36px; font-weight: 300; color: rgba(255,255,255,0.08); font-style: italic; line-height: 1; margin-bottom: 20px; }
.diff-item__title { font-family: var(--ff-display); font-size: 17px; font-weight: 400; color: var(--ivory); line-height: 1.3; margin-bottom: 10px; }
.diff-item__text { font-size: 12px; color: var(--light); line-height: 1.65; opacity: 0.7; }

/* ── Process ── */
.process-section { padding: clamp(80px,10vw,160px) var(--pad); max-width: var(--max-w); margin: 0 auto; }
.process-header { margin-bottom: 80px; }
.process-header h2 { font-family: var(--ff-display); font-size: clamp(30px, 3.5vw, 56px); font-weight: 300; line-height: 1.1; max-width: 600px; }
.process-header h2 em { font-style: italic; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step { padding: 48px 36px 56px; background: var(--ivory-dark); position: relative; overflow: hidden; }
.process-step__num { font-family: var(--ff-display); font-size: 72px; font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 24px; transition: color 0.35s; }
.process-step:hover .process-step__num { color: var(--pink); }
.process-step__title { font-family: var(--ff-display); font-size: 20px; font-weight: 400; margin-bottom: 14px; line-height: 1.25; }
.process-step__text { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── Pour qui ── */
.pour-qui { padding: clamp(60px,8vw,120px) var(--pad); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pour-qui__img { aspect-ratio: 4/5; overflow: hidden; min-height: 520px; }
.pour-qui__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pour-qui__h2 { font-family: var(--ff-display); font-size: clamp(28px, 3vw, 46px); font-weight: 300; line-height: 1.15; margin-bottom: 28px; }
.pour-qui__h2 em { font-style: italic; }
.pour-qui__intro { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 36px; }
.pour-qui__list { list-style: none; margin-bottom: 40px; }
.pour-qui__list li { font-size: 13px; color: var(--mid); padding: 10px 0; border-bottom: 1px solid var(--ivory-dark); display: flex; align-items: center; gap: 12px; }
.pour-qui__list li::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--pink); flex-shrink:0; }
.zones { font-size: 11px; letter-spacing: 0.06em; color: var(--light); line-height: 1.8; font-style: italic; }

/* ── Final CTA ── */
.final-cta { background: var(--ivory-dark); padding: clamp(80px,12vw,180px) var(--pad); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: 'Redfern'; position: absolute; font-family: var(--ff-display); font-size: 22vw; font-weight: 300; font-style: italic; color: rgba(0,0,0,0.03); left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: -0.02em; }
.final-cta__eyebrow { margin-bottom: 24px; }
.final-cta__h2 { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 80px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; max-width: 720px; margin: 0 auto 28px; }
.final-cta__h2 em { font-style: italic; color: var(--pink); }
.final-cta__sub { font-size: 14px; color: var(--mid); max-width: 400px; margin: 0 auto 48px; line-height: 1.7; }

/* ── Philosophy / About pillars ── */
.philosophy__pillar { padding: 20px 0; border-bottom: 1px solid var(--ivory-dark); display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 300; transition: color 0.2s; }
.philosophy__pillar:hover { color: var(--pink); }
.philosophy__pillar::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

/* ── Service sub items ── */
.service-sub { background: var(--ivory-dark); padding: 36px 40px; position: relative; overflow: hidden; transition: background 0.3s; }
.service-sub:hover { background: #e6e1d5; }
.service-sub::after { content:''; position:absolute; left:0; top:0; width:2px; height:0; background:var(--pink); transition: height 0.4s cubic-bezier(.16,1,.3,1); }
.service-sub:hover::after { height: 100%; }
.service-sub__title { font-family: var(--ff-display); font-size: 20px; font-weight: 400; margin-bottom: 16px; }
.service-sub__list { list-style: none; }
.service-sub__list li { font-size: 13px; color: var(--mid); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.service-sub__list li:last-child { border-bottom: none; }
.process-mini { list-style: none; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 24px; }
.process-mini li { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 12px; }
.process-mini li::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--pink); flex-shrink:0; }

/* ── Tarification ── */
.tarif-card { transition: background 0.3s; }
.tarif-card:hover { background: rgba(255,255,255,0.08) !important; }

/* ── FAQ ── */
.faq-item__trigger { width: 100%; background: none; border: none; padding: 32px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; text-align: left; cursor: none; transition: color 0.2s; }
.faq-item__trigger:hover { color: var(--pink); }
.faq-item__q { font-family: var(--ff-display); font-size: clamp(18px, 2vw, 26px); font-weight: 400; line-height: 1.2; flex: 1; }
.faq-item__icon { width: 36px; height: 36px; border: 1px solid var(--ivory-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; font-weight: 300; color: var(--mid); transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s; }
.faq-item.open .faq-item__icon { background: var(--pink); border-color: var(--pink); color: white; transform: rotate(45deg); }
.faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.5s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-item__answer { max-height: 600px; }
.faq-item__answer-inner { padding: 0 80px 36px 0; font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 700px; }

.faq-contact-link { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); transition: background 0.3s, border-color 0.3s; }
.faq-contact-link:hover { background: rgba(233,13,152,0.1); border-color: var(--pink); }
.faq-contact-link__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }
.faq-contact-link__value { font-family: var(--ff-display); font-size: 18px; color: var(--ivory); }
.faq-contact-link__arrow { color: var(--pink); font-size: 18px; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2px; }
.form-field { position: relative; margin-bottom: 2px; }
.form-field label { position: absolute; top: 18px; left: 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); pointer-events: none; transition: top 0.25s, font-size 0.25s, color 0.25s; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--ivory-dark); border: none;
  padding: 32px 20px 12px; font-family: var(--ff-body); font-size: 15px; font-weight: 300;
  color: var(--charcoal); outline: none; transition: background 0.25s; cursor: none; -webkit-appearance: none;
}
.form-field textarea { resize: none; min-height: 140px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { background: #ece8de; }
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select.has-value + label { top: 10px; font-size: 9px; color: var(--pink); }
.form-field input::placeholder, .form-field textarea::placeholder { color: transparent; }
.form-field--full { grid-column: 1 / -1; }
.form-field--select label { z-index: 1; }
.form-submit { margin-top: 2px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 20px; font-size: 12px; }
.form-note { font-size: 11px; color: var(--light); text-align: center; margin-top: 16px; line-height: 1.6; }

.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--pink-dim); border: 1px solid var(--pink); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 24px; color: var(--pink); }
.form-success__h3 { font-family: var(--ff-display); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.form-success__p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── Zone tags ── */
.zone-tag { font-size: 12px; letter-spacing: 0.06em; color: var(--mid); padding: 7px 14px; background: var(--ivory); border: 1px solid rgba(0,0,0,0.06); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.zone-tag:hover { background: var(--pink-dim); border-color: var(--pink); color: var(--pink); }

/* ── Accessibility: visible keyboard focus ── */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible, .nav__cta:focus-visible {
  outline-offset: 4px;
}

/* ── Skip-to-content link for screen readers ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--charcoal); color: var(--ivory);
  padding: 12px 18px; z-index: 9999;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ── Mobile nav (burger + drawer) ── */
.nav__burger {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative; z-index: 200;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  appearance: none; -webkit-appearance: none;
}
.nav__burger > span {
  display: block; width: 22px; height: 1.5px; background: var(--charcoal);
  position: absolute; left: 50%; transform: translateX(-50%);
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.nav__burger > span:nth-child(1) { top: 16px; }
.nav__burger > span:nth-child(2) { top: 22px; }
.nav__burger > span:nth-child(3) { top: 28px; }
.nav__burger.is-open > span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.nav__burger.is-open > span:nth-child(2) { opacity: 0; }
.nav__burger.is-open > span:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); right: 0; bottom: 0; left: 0; z-index: 150;
  background: var(--ivory);
  padding: 40px var(--pad);
  flex-direction: column; gap: 12px;
  overflow-y: auto;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav__links,
.nav-drawer .nav-drawer__links {
  display: flex; flex-direction: column; gap: 4px; list-style: none;
  padding: 0; margin: 0 0 24px;
}
.nav-drawer .nav__links a,
.nav-drawer .nav-drawer__links a {
  display: block; padding: 16px 0;
  font-family: var(--ff-display); font-size: 28px; font-weight: 300;
  color: var(--charcoal); letter-spacing: -0.01em; text-transform: none;
  border-bottom: 1px solid var(--ivory-dark);
}
.nav-drawer .nav__links a::after,
.nav-drawer .nav-drawer__links a::after { display: none; }
.nav-drawer__cta { margin-top: 24px; align-self: flex-start; }
body.nav-open { overflow: hidden; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .nav > .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero, .page-hero, .contact-wrap, .pour-qui, .intro, .diff-top, .approach-header, .tarification-top, .faq-hero, .faq-callout-inner, .location-strip-inner, .philosophy { grid-template-columns: 1fr !important; gap: 40px !important; }
  .services-grid, .diff-grid, .process-steps, .approach-steps, .tarification-cards, .why-grid, .service-sub-grid, .service-split, .footer-inner { grid-template-columns: 1fr !important; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (min-width: 901px) {
  .nav-drawer { display: none; }
}
