/* =========================================================
   VB CHARPENTE Sàrl — feuille de style
   Palette reprise du site d'origine : or #D9AB6E, brun #6F4F36,
   noir, blanc (+ brun du logo #844B24)
   ========================================================= */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("../fonts/plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("../fonts/plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --gold: #D9AB6E;
  --gold-hi: #F2D3A5;
  --gold-lo: #B98A4E;
  --brown: #6F4F36;
  --brown-logo: #844B24;
  --ink: #0F0D0B;
  --ink-2: #17130F;
  --ink-3: #221C16;
  --paper: #F3ECE1;
  --paper-2: #E8DDCC;
  --white: #FFFFFF;

  --ease: cubic-bezier(.65, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --pad: clamp(20px, 4.2vw, 64px);
  --maxw: 1360px;
  --nav-h: 78px;

  --f-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 70px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--ink); }

.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--gold); color: var(--ink); padding: 10px 14px; font-weight: 600; transition: top .2s; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; }
.nowrap { white-space: nowrap; }
.nt { text-transform: none; }
.gold { color: var(--gold); }
.brown { color: var(--brown); }

.label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; opacity: .8; }
.label span { display: inline-grid; place-items: center; min-width: 30px; height: 22px; padding: 0 6px; border: 1px solid currentColor; border-radius: 2px; }

.h-xl, .h-sm, .hero__title, .values li, .svc__name, .big-link, .foot__motto, .step h3, .g-end strong {
  font-family: var(--f-sans);
  font-stretch: 64%;
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.01em;
}
.h-xl { font-size: clamp(2.7rem, 6.2vw, 6.4rem); text-transform: uppercase; }
.h-sm { font-size: clamp(1.4rem, 2.2vw, 2rem); font-stretch: 80%; font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: .01em; }
.sec-intro { max-width: 34ch; font-size: 1.1rem; opacity: .78; }
.sec-head { margin-bottom: clamp(40px, 6vw, 84px); }
.sec-head--split { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }

/* paper grain */
[data-theme="light"] { background-color: var(--paper); color: var(--ink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .43 0 0 0 0 .31 0 0 0 0 .21 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
[data-theme="dark"] { background-color: var(--ink); color: var(--white); }
[data-theme="gold"] { background-color: var(--gold); color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: currentColor;
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  height: 56px; padding: 0 26px;
  font-family: var(--f-mono); font-weight: 500; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg); background: var(--bg);
  border: 1px solid currentColor; border-radius: 2px;
  overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease), border-color .35s;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .35s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--white); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); border-color: var(--gold); }
.btn--gold:hover { color: var(--ink); border-color: var(--white); }
.btn--line { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--line::before { background: var(--gold); }
.btn--line:hover { color: var(--ink); border-color: var(--gold); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
  padding-inline: var(--pad);
  color: var(--white);
  --logo-a: var(--gold); --logo-b: var(--white);
  transition: transform .5s var(--ease), background-color .4s, color .4s, height .4s;
}
.nav::after { content: ""; position: absolute; left: var(--pad); right: var(--pad); bottom: 0; height: 1px; background: currentColor; opacity: 0; transition: opacity .4s; }
.nav.is-scrolled { height: 64px; background: rgba(15,13,11,.82); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); }
.nav.is-scrolled::after { opacity: .12; }
.nav.is-hidden { transform: translateY(-100%); }
.nav[data-on="light"].is-scrolled { background: rgba(243,236,225,.86); color: var(--ink); --logo-a: var(--brown-logo); --logo-b: var(--ink); }
.nav[data-on="gold"].is-scrolled { background: rgba(217,171,110,.9); color: var(--ink); --logo-a: var(--ink); --logo-b: var(--ink); }

.nav__logo { flex: none; display: block; width: 158px; }
.logo { width: 100%; height: auto; overflow: visible; }
.logo .lg-mark, .logo .lg-vb { fill: var(--logo-a); transition: fill .4s; }
.logo .lg-word { fill: var(--logo-b); transition: fill .4s; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a { position: relative; padding: 8px 12px; font-family: var(--f-mono); font-size: .74rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; opacity: .85; transition: opacity .25s; }
.nav__links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__call { display: inline-flex; align-items: center; gap: 10px; height: 42px; padding: 0 16px; border: 1px solid currentColor; border-radius: 2px; font-family: var(--f-mono); font-size: .78rem; font-weight: 500; letter-spacing: .06em; transition: background .3s, color .3s, border-color .3s; }
.nav__call:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.nav__call .dot { width: 7px; height: 7px; border-radius: 50%; background: #7BC67B; box-shadow: 0 0 0 0 rgba(123,198,123,.6); animation: ping 2.4s infinite; }
.nav__call .dot.is-closed { background: var(--gold-lo); animation: none; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(123,198,123,.55); } 70%, 100% { box-shadow: 0 0 0 9px rgba(123,198,123,0); } }
.nav__burger { display: none; width: 46px; height: 46px; margin-left: auto; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 1.6px; background: currentColor; transition: transform .45s var(--ease), top .45s var(--ease); }
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { top: 27px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(30deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(-30deg); }

/* mobile menu */
.menu { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--white); display: flex; flex-direction: column; justify-content: center; padding: 90px var(--pad) 40px; }
.menu[hidden] { display: none; }
.menu__roof { position: absolute; left: var(--pad); right: var(--pad); top: 84px; width: calc(100% - 2 * var(--pad)); height: 70px; fill: none; stroke: var(--gold); stroke-width: 1.2; }
.menu__roof path { stroke-dasharray: 1 2; stroke-dashoffset: 1; }
.menu.is-open .menu__roof path { stroke-dashoffset: 0; transition: stroke-dashoffset .9s var(--ease) .1s; }
.menu nav { display: grid; gap: 4px; margin-top: 40px; }
.menu nav a { display: flex; align-items: baseline; gap: 16px; font-stretch: 64%; font-weight: 800; font-size: clamp(2.4rem, 11vw, 4rem); line-height: 1.05; text-transform: uppercase; opacity: 0; transform: translateY(24px); }
.menu nav a .mono { color: var(--gold); font-size: .72rem; }
.menu.is-open nav a { opacity: 1; transform: none; transition: opacity .5s, transform .6s var(--ease-out); }
.menu.is-open nav a:nth-child(2) { transition-delay: .05s; } .menu.is-open nav a:nth-child(3) { transition-delay: .1s; }
.menu.is-open nav a:nth-child(4) { transition-delay: .15s; } .menu.is-open nav a:nth-child(5) { transition-delay: .2s; }
.menu.is-open nav a:nth-child(6) { transition-delay: .25s; }
.menu__foot { display: grid; gap: 10px; margin-top: auto; padding-top: 30px; color: var(--gold); }

/* folding-rule progress */
.rule { position: fixed; right: 16px; top: 110px; bottom: 34px; width: 12px; z-index: 60; pointer-events: none; color: var(--gold); opacity: 0; transition: opacity .6s, color .4s; }
.rule.is-on { opacity: .75; }
.rule[data-on="light"], .rule[data-on="gold"] { color: var(--brown); }
.rule__track { position: absolute; inset: 0; background:
  repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 50px) right / 12px 100% no-repeat,
  repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 10px) right / 5px 100% no-repeat; opacity: .55; }
.rule__track::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: currentColor; }
.rule__cursor { position: absolute; right: 0; top: 0; width: 22px; height: 1px; background: currentColor; transform: translateY(var(--y, 0px)); }
.rule__cursor span { position: absolute; right: 30px; top: -8px; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .06em; white-space: nowrap; }
.rule__cursor::after { content: ""; position: absolute; right: 22px; top: -4px; border: 4px solid transparent; border-left-color: currentColor; transform: rotate(180deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 1fr); align-content: center;
  padding: calc(var(--nav-h) + 20px) var(--pad) 110px;
  isolation: isolate;
}
.hero__grid { position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image:
    linear-gradient(rgba(217,171,110,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,171,110,.07) 1px, transparent 1px),
    linear-gradient(rgba(217,171,110,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,171,110,.035) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 45%, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse 80% 70% at 60% 45%, #000 30%, transparent 85%);
}
.hero__marks i { position: absolute; width: 22px; height: 22px; border-color: rgba(217,171,110,.55); border-style: solid; border-width: 0; }
.hero__marks i:nth-child(1) { left: calc(var(--pad) - 8px); top: calc(var(--nav-h) + 6px); border-left-width: 1px; border-top-width: 1px; }
.hero__marks i:nth-child(2) { right: calc(var(--pad) - 8px); top: calc(var(--nav-h) + 6px); border-right-width: 1px; border-top-width: 1px; }
.hero__marks i:nth-child(3) { left: calc(var(--pad) - 8px); bottom: 24px; border-left-width: 1px; border-bottom-width: 1px; }
.hero__marks i:nth-child(4) { right: calc(var(--pad) - 8px); bottom: 24px; border-right-width: 1px; border-bottom-width: 1px; }

.hero__text { position: relative; z-index: 3; max-width: min(44vw, 640px); }
.kicker { color: var(--gold); margin-bottom: 26px; display: flex; align-items: center; gap: 14px; }
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero__title { font-size: clamp(3.4rem, 6.6vw, 8rem); line-height: .88; letter-spacing: -.015em; text-transform: uppercase; }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .ln > span { display: inline-block; }
.hero__title b { color: var(--gold); font-weight: inherit; }
.hero__title .ln--gold { color: var(--gold); }
.hero__title .ln--gold b { color: var(--white); }
.hero__sub { margin-top: 28px; max-width: 42ch; font-size: 1.1rem; color: rgba(255,255,255,.72); }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero__drawing {
  position: absolute; z-index: 1;
  right: -1vw; top: 50%;
  width: min(64vw, 1180px);
  transform: translate(0, -44%);
  transform-origin: 50% 50%;
}
.hero.is-moving .hero__drawing { transition: transform 1.3s var(--ease); }

.cartouche { position: absolute; right: var(--pad); bottom: 34px; z-index: 3; width: 360px; font-size: .64rem; color: rgba(217,171,110,.85); border: 1px solid rgba(217,171,110,.45); background: rgba(15,13,11,.6); }
.c-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 10px; border-top: 1px solid rgba(217,171,110,.3); }
.c-row:first-child { border-top: 0; }
.c-row span:last-child, .c-row strong + span { border-left: 1px solid rgba(217,171,110,.3); padding-left: 10px; white-space: nowrap; }
.c-head strong { color: var(--white); font-weight: 500; text-transform: none; }
.scroll-hint { position: absolute; left: calc(var(--pad) + 22px); bottom: 44px; z-index: 3; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.7); font-size: .68rem; }
.scroll-hint i { position: relative; width: 1px; height: 46px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-hint i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--gold); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }
.skip-intro { position: absolute; right: var(--pad); top: calc(var(--nav-h) + 20px); z-index: 4; font-size: .66rem; color: rgba(255,255,255,.5); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.25); opacity: 0; pointer-events: none; transition: opacity .4s; }
.hero.is-intro .skip-intro { opacity: 1; pointer-events: auto; }

/* ---- épure (SVG) ---- */
.epure { width: 100%; height: auto; overflow: visible; }
.epure text { font-family: var(--f-mono); font-weight: 500; font-size: 13px; letter-spacing: .1em; fill: var(--gold); }
.epure .cl { fill: none; stroke: var(--gold); stroke-opacity: .28; stroke-width: 1; stroke-dasharray: 6 6; }
.epure .cm { fill: none; stroke: var(--gold); stroke-opacity: .55; }
.epure .wall { fill: url(#hatch); stroke: var(--gold); stroke-width: 1.2; }
.epure .hatch-l { stroke: var(--gold); stroke-opacity: .45; stroke-width: 1; }
.epure .chev { fill: var(--gold); fill-opacity: .2; stroke: var(--gold); stroke-width: 1.2; }
.epure .tiles { fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linejoin: round; }
.epure .m .fill { fill: var(--gold); }
.epure .m .grain, .epure .m .x { fill: none; stroke: var(--brown); stroke-width: 1.1; stroke-opacity: .75; }
.epure .m .line { fill: none; stroke: var(--gold-hi); stroke-width: 1.5; stroke-linejoin: round; }
.epure .dim { fill: none; stroke: var(--gold); stroke-width: 1; }
.epure .lead { fill: none; stroke: var(--gold); stroke-width: .8; stroke-opacity: .8; }
.epure .dot { fill: var(--gold); }
.epure .plumb-l { stroke: #EDE3D3; stroke-width: 1; }
.epure .plumb-b { fill: var(--gold); stroke: var(--gold-hi); }
.epure .plumb-k { fill: var(--ink); stroke: var(--gold); }
.epure .m, .epure .roof, .epure .labels, .epure .dims { transition: transform .2s linear, opacity .3s; }
.epure .m { cursor: default; }
.epure .m .fill { transition: fill .3s; }
.epure .m.is-hot .fill { fill: var(--gold-hi); }
.epure .lab text, .epure .lab .lead { transition: fill .3s, stroke .3s, opacity .3s; }
.epure .lab.is-hot text { fill: var(--white); }
.epure .lab.is-hot .lead { stroke: var(--white); stroke-opacity: 1; }

/* intro states (only when JS runs) */
html.js .hero [data-intro] { opacity: 0; }
html.js .hero .hero__title .ln > span { opacity: 1; transform: translateY(105%); }
html.js .hero.s5 [data-intro] { opacity: 1; transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); }
html.js .hero.s5 .hero__title .ln > span { transform: none; transition: transform 1.1s var(--ease-out); }
html.js .hero.s5 [data-intro="1"] { transition-delay: .05s; }
html.js .hero.s5 [data-intro="2"] { transition-delay: .12s; }
html.js .hero.s5 [data-intro="3"] { transition-delay: .24s; }
html.js .hero.s5 [data-intro="4"] { transition-delay: .5s; }
html.js .hero.s5 [data-intro="5"] { transition-delay: .62s; }
html.js .hero.s5 [data-intro="6"] { transition-delay: .9s; }
html.js .hero .kicker, html.js .hero .hero__sub, html.js .hero .hero__cta { transform: translateY(18px); }
html.js .hero.s5 .kicker, html.js .hero.s5 .hero__sub, html.js .hero.s5 .hero__cta { transform: none; }

html.js .epure .line, html.js .epure .cl, html.js .epure .dim, html.js .epure .lead, html.js .epure .wall, html.js .epure .chev, html.js .epure .map-border { stroke-dasharray: 1 2; stroke-dashoffset: 1; }
html.js .epure .cl { stroke-dasharray: 1 2; }
html.js .epure .fill, html.js .epure .grain, html.js .epure .x, html.js .epure .tiles, html.js .epure text, html.js .epure .dot, html.js .epure .cm, html.js .epure .plumb { opacity: 0; }
html.js .epure .wall { fill-opacity: 0; }
html.js .epure .chev { fill-opacity: 0; }
html.js .epure .tiles { stroke-dasharray: 1 2; stroke-dashoffset: 1; opacity: 1; }

.hero.s1 .epure .cl { stroke-dashoffset: 0; transition: stroke-dashoffset 1.4s var(--ease) var(--d, 0s); }
.hero.s1 .epure .cm { opacity: 1; transition: opacity .6s .9s; }
.hero.s2 .epure .line { stroke-dashoffset: 0; transition: stroke-dashoffset 1s var(--ease) var(--d, 0s); }
.hero.s2 .epure .wall { stroke-dashoffset: 0; fill-opacity: 1; transition: stroke-dashoffset .9s var(--ease), fill-opacity .8s .6s; }
.hero.s3 .epure .fill { opacity: 1; transition: opacity .9s var(--ease) var(--d, 0s); }
.hero.s3 .epure .grain, .hero.s3 .epure .x { opacity: 1; transition: opacity .8s var(--ease) calc(var(--d, 0s) + .25s); }
.hero.s3 .epure .chev { stroke-dashoffset: 0; fill-opacity: .2; transition: stroke-dashoffset 1s var(--ease), fill-opacity .6s .6s; }
.hero.s3 .epure .tiles { stroke-dashoffset: 0; transition: stroke-dashoffset 1.3s var(--ease) .35s; }
.hero.s4 .epure .dim { stroke-dashoffset: 0; transition: stroke-dashoffset .9s var(--ease) var(--d, 0s); }
.hero.s4 .epure .lead { stroke-dashoffset: 0; transition: stroke-dashoffset .7s var(--ease) var(--d, 0s); }
.hero.s4 .epure text, .hero.s4 .epure .dot { opacity: 1; transition: opacity .6s var(--ease) calc(var(--d, 0s) + .3s); }
.hero.s4 .epure .plumb { opacity: 1; transition: opacity .5s; }

/* =========================================================
   ENTREPRISE
   ========================================================= */
.about { padding: clamp(90px, 12vw, 180px) 0 clamp(80px, 10vw, 150px); }
.about .label { color: var(--brown); opacity: 1; }
.about .h-sm { max-width: 22ch; }
.about__grid { display: grid; grid-template-columns: 1.15fr .8fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.values { display: grid; gap: .1em; font-size: clamp(3rem, 5.3vw, 6.2rem); line-height: .9; }
.values li { position: relative; display: flex; align-items: flex-start; gap: .18em; text-transform: uppercase; padding-bottom: .08em; border-bottom: 1px solid rgba(15,13,11,.14); }
.values li:nth-child(2) { color: var(--brown); padding-left: .3em; }
.values li:nth-child(3) { padding-left: .6em; }
.values li .mono { font-size: .72rem; margin-top: .9em; color: var(--brown); letter-spacing: .1em; }
.about__photo { position: relative; margin-top: clamp(0px, 5vw, 70px); }
.ph { position: relative; overflow: hidden; background: var(--paper-2); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--tall img { height: 116%; margin-top: -8%; will-change: transform; }
.about__photo figcaption { margin-top: 12px; font-size: .66rem; color: var(--brown); text-transform: none; letter-spacing: .04em; }
.about__text { padding-top: clamp(0px, 2vw, 20px); }
.about__text h3 { font-stretch: 80%; font-weight: 700; font-size: clamp(1.5rem, 2.1vw, 2rem); line-height: 1.1; margin-bottom: 22px; }
.about__text p + p { margin-top: 16px; }
.about__text p { color: rgba(15,13,11,.8); }
.for { margin-top: 30px !important; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--ink) !important; font-size: .68rem; }
.for span { padding: 6px 10px; border: 1px solid rgba(15,13,11,.3); border-radius: 40px; }

.cotes { margin-top: clamp(70px, 9vw, 130px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.cote__line { position: relative; height: 22px; }
.cote__line::before, .cote__line::after { content: ""; position: absolute; top: 0; width: 1px; height: 22px; background: var(--ink); }
.cote__line::before { left: 0; } .cote__line::after { right: 0; }
.cote__line i { position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--ink); transform: scaleX(0); transition: transform 1.2s var(--ease) .2s; }
.cote__line i::before, .cote__line i::after { content: ""; position: absolute; top: -4px; width: 9px; height: 9px; border-left: 1px solid var(--ink); transform: rotate(45deg); }
.cote__line i::before { left: -4px; } .cote__line i::after { right: -4px; }
.cotes.is-in .cote__line i { transform: scaleX(1); }
.cote p { display: flex; align-items: baseline; gap: 14px; margin-top: 16px; }
.cote strong { font-stretch: 64%; font-weight: 800; font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.cote span { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brown); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { position: relative; padding: clamp(90px, 12vw, 170px) 0; }
.services .label { color: var(--gold); opacity: 1; }
.services .h-xl { max-width: 13ch; }
.services .sec-intro { color: rgba(255,255,255,.7); opacity: 1; }
.svc { counter-reset: s; border-bottom: 1px solid rgba(217,171,110,.25); }
.svc__row {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: 70px 76px minmax(0, 1fr) minmax(0, .9fr); gap: 0 24px; align-items: center;
  padding: clamp(22px, 2.6vw, 34px) 16px;
  border-top: 1px solid rgba(217,171,110,.25);
  transition: color .4s var(--ease);
}
.svc__row::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); }
.svc__num { color: var(--gold); transition: color .4s; }
.svc__ico { width: 56px; height: 56px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
.svc__ico path, .svc__ico rect, .svc__ico circle { stroke-dasharray: 1 2; stroke-dashoffset: 1; transition: stroke-dashoffset 1.2s var(--ease) .25s; }
.svc__row.is-in .svc__ico path, .svc__row.is-in .svc__ico rect, .svc__row.is-in .svc__ico circle { stroke-dashoffset: 0; }
html:not(.js) .svc__ico * { stroke-dashoffset: 0 !important; }
.svc__name { font-size: clamp(2.2rem, 4.6vw, 4.6rem); text-transform: uppercase; transition: transform .5s var(--ease); }
.svc__name .tag { display: inline-block; vertical-align: middle; font-size: .7rem; padding: 4px 8px; border: 1px solid currentColor; border-radius: 30px; margin-left: 10px; transform: translateY(-.35em); }
.svc__desc { color: rgba(255,255,255,.72); max-width: 44ch; transition: color .4s; }
@media (hover: hover) and (pointer: fine) {
  .svc__row:hover { color: var(--ink); }
  .svc__row:hover::before { transform: scaleY(1); }
  .svc__row:hover .svc__num { color: var(--ink); }
  .svc__row:hover .svc__ico { stroke: var(--ink); }
  .svc__row:hover .svc__desc { color: rgba(15,13,11,.85); }
  .svc__row:hover .svc__name { transform: translateX(10px); }
}
.svc__note { margin-top: 36px; max-width: 60ch; color: rgba(255,255,255,.75); display: flex; gap: 14px; }
.svc__note .mono { color: var(--gold); font-size: 1rem; }
.svc__float { position: fixed; left: 0; top: 0; z-index: 50; width: 260px; aspect-ratio: 4 / 5; pointer-events: none; overflow: hidden; opacity: 0; transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(var(--r, 0deg)) scale(.85); transition: opacity .35s, transform .35s var(--ease-out); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); border: 6px solid var(--ink); }
.svc__float.is-on { opacity: 1; transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(var(--r, 0deg)) scale(1); }
.svc__float img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   MÉTHODE
   ========================================================= */
.method { padding: clamp(90px, 12vw, 170px) 0 clamp(90px, 10vw, 150px); overflow: hidden; }
.method .label { opacity: 1; }
.method .ink-soft { opacity: .45; }
.method__stage { position: relative; height: clamp(520px, 44vw, 640px); }
.method__rafter { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.method__rafter path { fill: none; stroke-linecap: square; }
.r-base { stroke: rgba(15,13,11,.16); stroke-width: 16; }
.r-draw { stroke: var(--ink); stroke-width: 16; stroke-dasharray: 1 2; stroke-dashoffset: calc(1 - var(--p, 0)); }
.steps { position: absolute; inset: 0; }
.step { --f: calc(.22 + var(--i) * .24); position: absolute; right: calc((1 - var(--f)) * 100% + 0px); bottom: calc(3.4% + var(--f) * 66.6% + 34px); width: min(21%, 270px); padding: 0 18px 18px 0; opacity: .35; transform: translateY(14px); transition: opacity .6s, transform .8s var(--ease-out); }
.step::before { content: ""; position: absolute; right: 0; bottom: -34px; width: 1px; height: 70px; background: var(--ink); }
.step::after { content: ""; position: absolute; right: -6px; bottom: -40px; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); border: 1.5px solid var(--ink); }
.step.is-on { opacity: 1; transform: none; }
.step.is-on::after { background: var(--ink); }
.step__n { display: inline-block; font-size: .7rem; padding: 3px 8px; border: 1px solid var(--ink); border-radius: 2px; margin-bottom: 14px; }
.step h3 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); text-transform: uppercase; margin-bottom: 10px; }
.step p { font-size: .98rem; line-height: 1.5; color: rgba(15,13,11,.8); }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery { position: relative; }
.gallery__pin { position: relative; padding: clamp(90px, 11vw, 150px) 0 70px; overflow: hidden; }
.gallery__head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: clamp(40px, 5vw, 70px); }
.gallery .label { color: var(--gold); opacity: 1; }
.gallery .sec-intro { color: rgba(255,255,255,.7); opacity: 1; }
.gallery__track { display: flex; gap: clamp(16px, 2vw, 28px); padding-inline: var(--pad); align-items: flex-end; will-change: transform; }
.g-item { flex: none; }
.g-item .ph { background: var(--ink-3); }
.g-item .ph img { position: absolute; inset: 0; }
.g-item--l .ph { height: min(29vw, 44vh); aspect-ratio: 4 / 3; }
.g-item--p .ph { height: min(34vw, 52vh); aspect-ratio: 4 / 5; }
.g-item .ph img { transform: scale(1.12); transition: transform 1.2s var(--ease-out); }
.g-item:hover .ph img { transform: scale(1.04); }
.g-item figcaption { display: flex; gap: 12px; margin-top: 14px; font-size: .68rem; color: rgba(255,255,255,.7); }
.g-item figcaption b { color: var(--gold); font-weight: 500; }
.g-end { flex: none; height: min(34vw, 52vh); aspect-ratio: 4 / 5; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; padding: 30px; border: 1px solid rgba(217,171,110,.45); color: var(--gold); transition: background .4s, color .4s; margin-right: var(--pad); }
.g-end strong { font-size: clamp(2rem, 3vw, 3rem); text-transform: uppercase; color: var(--white); transition: color .4s; }
.g-end svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.g-end:hover { background: var(--gold); color: var(--ink); }
.g-end:hover strong { color: var(--ink); }
html:not(.js) .gallery__track { overflow-x: auto; }
.gallery__bar { margin: 40px var(--pad) 0; height: 1px; background: rgba(217,171,110,.25); }
.gallery__bar i { display: block; height: 100%; background: var(--gold); transform-origin: left; transform: scaleX(var(--p, 0)); }

/* desktop: horizontal scroll pinned */
@media (min-width: 861px) {
  .gallery.is-pinned { height: var(--gh, 300vh); }
  .gallery.is-pinned .gallery__pin { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-block: 90px 40px; }
}

/* =========================================================
   ZONE
   ========================================================= */
.zone { padding: clamp(90px, 11vw, 160px) 0; overflow: hidden; }
.zone__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 4vw, 70px); align-items: center; }
.zone .label { color: var(--brown); opacity: 1; }
.zone .h-xl em { font-style: normal; color: var(--brown); display: block; }
.zone__text p { margin-top: 26px; max-width: 42ch; color: rgba(15,13,11,.8); }
.cantons { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; font-size: .68rem; }
.cantons li { padding: 7px 12px; border: 1px solid rgba(15,13,11,.3); border-radius: 40px; cursor: default; transition: background .3s, color .3s, border-color .3s; }
.cantons li.is-hot { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.map { width: 100%; height: auto; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, #000 72%, transparent 99%); mask-image: linear-gradient(90deg, #000 72%, transparent 99%); }
.map-rest { fill: rgba(15,13,11,.035); stroke: rgba(15,13,11,.25); stroke-width: .8; }
.map .canton { fill: var(--gold); fill-opacity: .42; stroke: var(--brown); stroke-width: 1; transition: fill-opacity .35s, fill .35s; }
.map .canton.is-hot { fill-opacity: .9; }
.map .canton[data-code="FR"] { fill-opacity: .75; }
.map-lakes { fill: var(--paper); stroke: rgba(111,79,54,.5); stroke-width: .7; }
.map-border { fill: none; stroke: var(--ink); stroke-width: 1.6; }
.map-codes text { font-family: var(--f-sans); font-stretch: 64%; font-weight: 800; font-size: 44px; fill: var(--ink); fill-opacity: .16; pointer-events: none; }
.map .cordeau { stroke: var(--brown); stroke-width: 1.2; stroke-dasharray: 1 2; stroke-dashoffset: 1; }
.map-cities circle { fill: var(--paper); stroke: var(--ink); stroke-width: 1.4; }
.map-cities text { font-family: var(--f-mono); font-weight: 500; font-size: 12px; letter-spacing: .04em; fill: var(--ink); paint-order: stroke; stroke: var(--paper); stroke-width: 4px; stroke-linejoin: round; }
.map-cities .city { opacity: 0; transition: opacity .5s var(--ease) var(--d, 0s); }
.map-hq .hq-dot { fill: var(--ink); stroke: var(--gold); stroke-width: 3; }
.map-hq .pulse { fill: none; stroke: var(--ink); stroke-width: 1.2; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s var(--ease-out) infinite; }
.map-hq .p2 { animation-delay: 1.3s; }
@keyframes pulse { from { transform: scale(.6); opacity: .9; } to { transform: scale(3.4); opacity: 0; } }
.map-hq .hq-t { font-family: var(--f-mono); font-weight: 500; font-size: 13px; letter-spacing: .08em; fill: var(--ink); paint-order: stroke; stroke: var(--paper); stroke-width: 5px; }
.zone__map.is-in .cordeau { stroke-dashoffset: 0; transition: stroke-dashoffset 1s var(--ease) var(--d, 0s); }
.zone__map.is-in .city { opacity: 1; }
html:not(.js) .map .cordeau { stroke-dashoffset: 0; }
html:not(.js) .map-cities .city { opacity: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: clamp(90px, 12vw, 170px) 0 clamp(80px, 10vw, 140px); background-image: linear-gradient(rgba(217,171,110,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(217,171,110,.05) 1px, transparent 1px); background-size: 120px 120px; }
.contact .label { color: var(--gold); opacity: 1; }
.contact .h-xl { max-width: 16ch; }
.contact .sec-intro { margin-top: 26px; color: rgba(255,255,255,.72); opacity: 1; max-width: 48ch; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.big-link { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 18px 0; font-size: clamp(2.2rem, 4.2vw, 4rem); border-bottom: 1px solid rgba(217,171,110,.25); transition: color .3s; }
.big-link .mono { color: var(--gold); font-size: .68rem; }
.big-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.big-link:hover { color: var(--gold); }
.big-link:hover::after { transform: scaleX(1); transform-origin: left; }
.big-link--mail { font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-stretch: 75%; word-break: break-word; }
.lbl { color: var(--gold); font-size: .68rem; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.addr { margin-top: 40px; }
.addr p:not(.lbl) { color: rgba(255,255,255,.85); }
.link-arrow { display: inline-block; margin-top: 10px; color: var(--gold); font-size: .72rem; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.hours { margin-top: 36px; }
.hours table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.hours th, .hours td { text-align: left; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.12); font-weight: 400; vertical-align: top; }
.hours th { color: rgba(255,255,255,.65); padding-right: 16px; white-space: nowrap; }
.hours td { color: rgba(255,255,255,.9); }
.hours td i { font-style: normal; color: var(--gold); padding: 0 4px; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px; border-radius: 30px; background: rgba(255,255,255,.06); color: var(--white); letter-spacing: .06em; }
.status:empty { display: none; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7BC67B; }
.status.is-closed::before { background: #C77C5A; }

.form { position: relative; padding: clamp(24px, 3vw, 44px); border: 1px solid rgba(217,171,110,.35); background: rgba(23,19,15,.75); }
.form::before { content: "FORMULAIRE — F.01"; position: absolute; top: -9px; left: 20px; padding: 0 8px; background: var(--ink); font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; color: var(--gold); }
.form__title { font-stretch: 64%; font-weight: 800; font-size: 2rem; text-transform: uppercase; margin-bottom: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.f { position: relative; display: block; margin-top: 14px; }
.f input, .f textarea { width: 100%; padding: 22px 0 10px; font: inherit; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: none; transition: border-color .3s; resize: vertical; }
.f textarea { min-height: 110px; }
.f span { position: absolute; left: 0; top: 22px; color: rgba(255,255,255,.6); pointer-events: none; transform-origin: left top; transition: transform .3s var(--ease), color .3s; }
.f input:focus, .f textarea:focus { border-color: var(--gold); }
.f input:focus + span, .f input:not(:placeholder-shown) + span, .f textarea:focus + span, .f textarea:not(:placeholder-shown) + span { transform: translateY(-20px) scale(.72); color: var(--gold); }
.f.is-err input { border-color: #E07A5F; }
.f.is-err span { color: #E07A5F; }
.chips { border: 0; margin: 26px 0 6px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { color: var(--gold); font-size: .66rem; margin-bottom: 12px; padding: 0; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips span { display: inline-block; padding: 8px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 40px; font-size: .88rem; transition: background .25s, color .25s, border-color .25s; }
.chips label:hover span { border-color: var(--gold); }
.chips input:checked + span { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.form__foot { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.req { font-size: .64rem; color: rgba(255,255,255,.55); }
.form__msg { margin-top: 16px; min-height: 1.4em; font-size: .95rem; color: var(--gold-hi); }
.form__msg.is-err { color: #E07A5F; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot { background: var(--ink-2); padding: clamp(60px, 8vw, 110px) 0 28px; border-top: 1px solid rgba(217,171,110,.2); }
.foot__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.foot__motto { font-size: clamp(2rem, 4vw, 3.6rem); text-transform: uppercase; color: var(--gold); }
.foot__up { color: rgba(255,255,255,.75); font-size: .7rem; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.foot__up:hover { color: var(--gold); }
.foot__cols { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; font-size: .95rem; color: rgba(255,255,255,.75); }
.foot__cols a:hover { color: var(--gold); }
.foot__logo { margin-top: clamp(50px, 7vw, 100px); --logo-a: var(--gold); --logo-b: rgba(255,255,255,.9); }
.foot__logo .logo { width: 100%; max-width: 820px; }
.foot__legal { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .64rem; color: rgba(255,255,255,.5); }

/* call button (mobile) */
.call-fab { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 80; display: none; align-items: center; gap: 10px; height: 54px; padding: 0 20px 0 16px; border-radius: 40px; background: var(--gold); color: var(--ink); font-family: var(--f-mono); font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 12px 30px -8px rgba(0,0,0,.5); border: 1.5px solid var(--ink); transform: translateY(120px); transition: transform .5s var(--ease-out); }
.call-fab svg { width: 20px; height: 20px; fill: currentColor; }
.call-fab.is-on { transform: none; }

/* =========================================================
   REVEAL
   ========================================================= */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--rd, 0s); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }
html.js .values li[data-reveal] { opacity: 1; transform: none; }
.values li { overflow: hidden; }
.values .v { display: inline-block; }
html.js .values li .v, html.js .values li .mono { transform: translateY(110%); transition: transform 1.1s var(--ease-out) var(--rd, 0s); }
html.js .values li.is-in .v, html.js .values li.is-in .mono { transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .nav__links a { padding: 8px 8px; font-size: .68rem; }
  .nav__links a::after { left: 8px; right: 8px; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .values { grid-column: 1 / -1; }
  .about__photo { margin-top: 0; }
  .cartouche { width: 300px; }
}
@media (max-width: 1100px) { .rule { display: none; } }
@media (min-width: 861px) and (max-width: 1100px) {
  .hero__drawing { width: 64vw; right: -7vw; }
  .epure .lab.opt, .epure .dim-v { display: none; }
  .hero__text { max-width: 50vw; }
  .cartouche .c-row:last-child { display: none; }
}
@media (max-width: 980px) {
  .nav__links, .nav__call { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav__logo { width: 132px; }
  .hero { align-content: start; padding-top: calc(var(--nav-h) + 16px); padding-bottom: 96px; }
  .hero__drawing { position: relative; right: auto; top: auto; width: calc(100% + 2 * var(--pad) - 12px); margin: 8px calc(-1 * var(--pad) + 6px) 18px; transform: none; }
  .epure .dim-v { display: none; }
  .skip-intro { top: auto; bottom: 30px; }
  .epure .lab.opt { display: none; }
  .epure text { font-size: 22px; }
  .epure .labels text { font-size: 20px; }
  .epure .m .line { stroke-width: 2.2; }
  .epure .cl, .epure .dim, .epure .lead { stroke-width: 1.6; }
  .hero__text { max-width: none; }
  .hero__title { font-size: clamp(3rem, 15vw, 5.4rem); }
  .kicker { margin-bottom: 18px; font-size: .64rem; }
  .hero__sub { margin-top: 20px; font-size: 1rem; }
  .hero__cta { margin-top: 26px; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .cartouche { display: none; }
  .scroll-hint { bottom: 26px; }
  .hero__marks i:nth-child(3), .hero__marks i:nth-child(4) { bottom: 14px; }
  .sec-head--split, .gallery__head { grid-template-columns: 1fr; gap: 22px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 520px; }
  .cotes { grid-template-columns: 1fr; gap: 34px; }
  .svc__row { grid-template-columns: 44px minmax(0, 1fr) 48px; grid-template-areas: "n name ico" "n desc desc"; gap: 10px 12px; padding: 24px 0; align-items: start; }
  .svc__num { grid-area: n; padding-top: 10px; }
  .svc__name { grid-area: name; font-size: clamp(2rem, 9vw, 3rem); }
  .svc__ico { grid-area: ico; width: 46px; height: 46px; }
  .svc__desc { grid-area: desc; font-size: .98rem; }
  .svc__float { display: none; }
  .method__stage { height: auto; padding-left: 34px; }
  .method__rafter { display: none; }
  .steps { position: relative; display: grid; gap: 44px; }
  .steps::before { content: ""; position: absolute; left: -28px; top: 6px; bottom: 6px; width: 6px; background: rgba(15,13,11,.2); }
  .steps::after { content: ""; position: absolute; left: -28px; top: 6px; width: 6px; height: calc((100% - 12px) * var(--p, 0)); background: var(--ink); }
  .step { position: relative; left: auto; bottom: auto; width: auto; padding-bottom: 0; }
  .step::before { display: none; }
  .step::after { left: -32px; right: auto; top: 6px; bottom: auto; }
  .step { right: auto; padding: 0; }
  .gallery__pin { padding-bottom: 50px; }
  .gallery__track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px; }
  .gallery__track::-webkit-scrollbar { display: none; }
  .g-item, .g-end { scroll-snap-align: center; }
  .g-item--l .ph { width: 82vw; height: auto; }
  .g-item--p .ph { width: 64vw; height: auto; }
  .g-end { width: 64vw; height: auto; }
  .zone__grid { grid-template-columns: 1fr; }
  .zone__map { order: 2; margin-inline: -8px; }
  .map-codes text { font-size: 44px; }
  .map-cities text, .map-hq .hq-t { font-size: 17px; }
  .map-cities .city:nth-child(n+8) { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .call-fab { display: inline-flex; }
  .foot { padding-bottom: 96px; }
}
@media (max-width: 520px) {
  .foot__cols { grid-template-columns: 1fr; }
  .for { font-size: .62rem; }
  .big-link { font-size: clamp(2rem, 10.5vw, 2.8rem); }
  .hours tr { display: grid; }
  .hours th { padding-bottom: 0; }
  .hours td { border-top: 0; padding-top: 4px; white-space: nowrap; }
}

/* reduced motion: show everything, no choreography */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
}
