/* =========================================================================
   JUPI DEV — Système éditorial technique (Swiss / brutaliste)
   Encre chaude · vermillon · Bricolage Grotesque + mono · filets · grille
   ========================================================================= */

:root {
  --ink: #0c0a09;
  --ink-2: #100d0b;
  --ink-3: #15110e;
  --bone: #ece7de;
  --bone-dim: #b9b3a8;
  --muted: #8a847a;
  --faint: #5d574f;
  --line: rgba(236, 231, 222, .14);
  --line-2: rgba(236, 231, 222, .26);
  --verm: #ff4d2e;
  --verm-2: #ff6a4d;

  --maxw: 1240px;
  --pad: 32px;

  --ff-disp: "Bricolage Grotesque", Georgia, serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--bone);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--verm); color: #fff; }

/* ---------- Animated background layers ---------- */
.fx { position: fixed; inset: 0; z-index: -3; pointer-events: none; }
.fx-aurora { overflow: hidden; }
.fx-aurora::before, .fx-aurora::after {
  content: ""; position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 46, .22), transparent 62%);
  filter: blur(40px); will-change: transform;
}
.fx-aurora::before { top: -22vw; left: 52vw; animation: drift1 24s ease-in-out infinite; }
.fx-aurora::after { bottom: -26vw; left: -12vw; width: 52vw; height: 52vw; background: radial-gradient(circle, rgba(255, 106, 77, .14), transparent 62%); animation: drift2 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8vw, 10vh) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(10vw, -8vh) scale(1.1); } }

.fx-grid {
  z-index: -2; opacity: .5;
  background-image:
    linear-gradient(rgba(236,231,222,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,231,222,.045) 1px, transparent 1px);
  background-size: 72px 72px; animation: gridmove 40s linear infinite;
  -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, #000 35%, transparent 85%);
          mask-image: radial-gradient(130% 90% at 50% 0%, #000 35%, transparent 85%);
}
@keyframes gridmove { to { background-position: 72px 72px; } }

.fx-grain {
  z-index: -1; opacity: .05; mix-blend-mode: screen;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(3) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 33%{transform:translate(-4px,3px)} 66%{transform:translate(3px,-4px)} 100%{transform:translate(0,0)} }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-disp); font-weight: 700; line-height: .98;
  letter-spacing: -.025em; font-optical-sizing: auto;
}
.mono { font-family: var(--ff-mono); }
.kicker {
  font-family: var(--ff-mono); font-size: .8rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker .n { color: var(--verm); }
.verm { color: var(--verm); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); width: 100%; }
.section { padding: 120px 0; position: relative; }
.rule { height: 1px; background: var(--line); border: 0; }
.sec-head { display: grid; grid-template-columns: auto 1fr; gap: 16px 40px; align-items: end; margin-bottom: 64px; }
.sec-head .kicker { grid-column: 1; align-self: start; padding-top: 14px; }
.sec-head h2 { grid-column: 2; font-size: clamp(2rem, 5vw, 3.6rem); max-width: 16ch; }
.sec-head .intro { grid-column: 2; color: var(--bone-dim); max-width: 56ch; margin-top: 18px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-mono);
  font-size: .85rem; font-weight: 500; letter-spacing: .02em; text-transform: uppercase;
  padding: 15px 22px; border: 1px solid var(--verm); transition: .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--verm); color: #1a0a06; }
.btn-primary:hover { background: var(--verm-2); border-color: var(--verm-2); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--bone); }
.btn .ar { transition: transform .2s ease; }
.btn:hover .ar { transform: translateX(4px); }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: .25s ease; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(12, 10, 9, .86); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--ff-disp); font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; display: inline-flex; align-items: center; }
.brand .slash { color: var(--verm); margin: 0 1px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-family: var(--ff-mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; color: var(--bone-dim); transition: .18s; position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--verm); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.burger { display: none; width: 44px; height: 40px; border: 1px solid var(--line-2); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 18px; height: 2px; background: var(--bone); }

/* ---------- Hero ---------- */
.hero { padding: 132px 0 0; }
.hero-top { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.hero-top .loc { font-family: var(--ff-mono); font-size: .8rem; color: var(--muted); }
.hero-main { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; padding: 48px 0; align-items: center; }
.hero h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 800; }
.hero h1 .dot { color: var(--verm); }
.hero h1 .ul { box-shadow: inset 0 -.08em 0 var(--verm); }
.hero-side { align-self: stretch; }
.hero-img { position: relative; height: 100%; min-height: 320px; border: 1px solid var(--line); overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img .tag { position: absolute; left: 0; bottom: 0; font-family: var(--ff-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--bone); background: rgba(12,10,9,.7); padding: 8px 12px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-foot { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: 36px 0; border-top: 1px solid var(--line); }
.hero-lead { font-size: 1.25rem; color: var(--bone-dim); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ticker */
.ticker { border-block: 1px solid var(--line); overflow: hidden; }
.ticker-track { display: flex; gap: 0; white-space: nowrap; font-family: var(--ff-mono); text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; animation: ticker 30s linear infinite; }
.ticker-track span { padding: 16px 28px; color: var(--bone-dim); }
.ticker-track span::before { content: "—"; color: var(--verm); margin-right: 24px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* stats row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 34px var(--pad); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .v { font-family: var(--ff-disp); font-weight: 700; font-size: 2.6rem; letter-spacing: -.03em; }
.stat .v em { font-style: normal; color: var(--verm); }
.stat .k { font-family: var(--ff-mono); font-size: .78rem; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- Services — table list ---------- */
.svc { border-top: 1px solid var(--line-2); }
.svc-group {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--bone-dim); padding: 30px 0 14px; border-bottom: 1px solid var(--line);
}
.svc-group:first-child { padding-top: 8px; }
.svc-group .n { color: var(--verm); border: 1px solid var(--verm); width: 26px; height: 26px; display: inline-grid; place-items: center; }
.svc-group::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.svc-row {
  display: grid; grid-template-columns: 64px 1fr 1.1fr; gap: 24px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--line); transition: .2s ease; position: relative;
}
.svc-row::before { content: ""; position: absolute; left: -100%; top: 0; bottom: 0; width: 0; background: var(--verm); transition: width .2s ease; }
.svc-row:hover { padding-left: 22px; }
.svc-row:hover::before { left: 0; width: 4px; }
.svc-row .num { font-family: var(--ff-mono); color: var(--verm); font-size: .9rem; padding-top: 6px; }
.svc-row h3 { font-size: 1.7rem; font-weight: 700; }
.svc-row .body { color: var(--bone-dim); }
.svc-row .body .tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 14px; }
.svc-row .tags span { font-family: var(--ff-mono); font-size: .74rem; text-transform: uppercase; color: var(--muted); letter-spacing: .03em; }
.svc-row .tags span::before { content: "/ "; color: var(--verm); }

/* ---------- Work ---------- */
.work-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.work-item:nth-child(even) .work-media { order: 2; }
.work-media { border: 1px solid var(--line); overflow: hidden; aspect-ratio: 16/10; }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.work-item:hover .work-media img { transform: scale(1.04); }
.work-meta .kicker { margin-bottom: 18px; }
.work-meta h3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
.work-meta p { color: var(--bone-dim); margin-top: 14px; max-width: 42ch; }
.work-meta .idx { font-family: var(--ff-mono); color: var(--faint); font-size: .8rem; margin-top: 22px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-2); }
.step { padding: 40px 28px 48px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; padding-right: 0; }
.step .num { font-family: var(--ff-mono); color: var(--verm); font-size: .85rem; }
.step h3 { font-size: 1.5rem; font-weight: 700; margin: 26px 0 12px; }
.step p { color: var(--bone-dim); font-size: .98rem; }

/* ---------- Stack ---------- */
.stack { font-family: var(--ff-disp); font-weight: 600; font-size: clamp(1.6rem, 4.6vw, 3.4rem); line-height: 1.18; letter-spacing: -.02em; color: var(--bone); }
.stack b { font-weight: 600; }
.stack .sep { color: var(--verm); font-family: var(--ff-mono); font-weight: 400; padding: 0 .25em; }
.stack .off { color: var(--faint); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-2); }
.quote { padding: 48px 40px 48px 0; border-bottom: 1px solid var(--line); }
.quote:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 40px; }
.quote:nth-child(even) { padding-left: 40px; }
.quote .mark { font-family: var(--ff-disp); font-size: 3.4rem; line-height: .6; color: var(--verm); }
.quote blockquote { font-family: var(--ff-disp); font-weight: 600; font-size: 1.35rem; line-height: 1.3; letter-spacing: -.015em; margin: 18px 0 24px; }
.quote .by { font-family: var(--ff-mono); font-size: .8rem; text-transform: uppercase; color: var(--muted); }
.quote .by b { color: var(--bone); font-weight: 500; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-media { border: 1px solid var(--line); overflow: hidden; aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 700; margin: 18px 0 22px; }
.about p.lead { color: var(--bone-dim); font-size: 1.1rem; }
.about-list { margin-top: 30px; border-top: 1px solid var(--line); }
.about-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.about-list .m { color: var(--verm); font-family: var(--ff-mono); }
.about-list b { font-family: var(--ff-disp); font-weight: 700; font-size: 1.15rem; display: block; margin-bottom: 4px; }
.about-list span.t { color: var(--muted); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; }
.contact h2 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
.contact h2 .dot { color: var(--verm); }
.form { margin-top: 40px; }
.field { border-bottom: 1px solid var(--line-2); padding: 14px 0; transition: border-color .2s; }
.field:focus-within { border-bottom-color: var(--verm); }
.field label { display: block; font-family: var(--ff-mono); font-size: .72rem; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; letter-spacing: .04em; }
.field input, .field textarea { width: 100%; background: transparent; border: 0; color: var(--bone); font-family: var(--ff-body); font-size: 1.1rem; }
.field input:focus, .field textarea:focus { outline: none; }
.field textarea { resize: vertical; min-height: 90px; }
.form .btn { margin-top: 30px; }
.form-note { font-family: var(--ff-mono); font-size: .74rem; color: var(--faint); margin-top: 18px; }
.form-note a { color: var(--verm); }

.coords { border-top: 1px solid var(--line-2); }
.coord { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.coord .k { font-family: var(--ff-mono); font-size: .76rem; text-transform: uppercase; color: var(--muted); }
.coord .v { font-family: var(--ff-disp); font-weight: 600; font-size: 1.2rem; }
.coord a:hover { color: var(--verm); }

/* ---------- CTA ---------- */
.cta { border-top: 1px solid var(--verm); border-bottom: 1px solid var(--verm); padding: 80px 0; }
.cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); font-weight: 800; }
.cta h2 .dot { color: var(--verm); }

/* ---------- Footer ---------- */
.footer { padding: 72px 0 36px; }
.footer-word { font-family: var(--ff-disp); font-weight: 800; font-size: clamp(3rem, 14vw, 11rem); line-height: .9; letter-spacing: -.04em; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.footer-word .slash { color: var(--verm); }
.footer-cols { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 32px; padding: 44px 0; }
.footer-cols p { color: var(--muted); max-width: 34ch; font-size: .95rem; }
.footer-cols h4 { font-family: var(--ff-mono); font-size: .74rem; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; letter-spacing: .04em; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a { color: var(--bone-dim); font-size: .95rem; }
.footer-cols a:hover { color: var(--verm); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); font-family: var(--ff-mono); font-size: .76rem; color: var(--faint); text-transform: uppercase; letter-spacing: .03em; }

/* ---------- Cookie ---------- */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--ink-2); border-top: 1px solid var(--line-2); transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.cookie.show { transform: none; }
.cookie .wrap { display: flex; align-items: center; gap: 24px; padding: 18px var(--pad); flex-wrap: wrap; }
.cookie p { flex: 1; min-width: 240px; font-family: var(--ff-mono); font-size: .82rem; color: var(--bone-dim); }
.cookie p a { color: var(--verm); }
.cookie .acts { display: flex; gap: 12px; }
.cookie .btn { padding: 11px 18px; }

/* ---------- Legal ---------- */
.legal { padding: 140px 0 80px; }
.legal .wrap { max-width: 820px; }
.legal .kicker { margin-bottom: 18px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; margin-bottom: 10px; }
.legal .updated { font-family: var(--ff-mono); font-size: .8rem; color: var(--faint); text-transform: uppercase; margin-bottom: 44px; }
.legal h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 14px; }
.legal h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; }
.legal p, .legal li { color: var(--bone-dim); margin-bottom: 12px; }
.legal ul { padding-left: 0; }
.legal ul li { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.legal ul li::before { content: "—"; color: var(--verm); font-family: var(--ff-mono); }
.legal a { color: var(--verm); }
.legal a:hover { text-decoration: underline; }
.back { display: inline-flex; gap: 8px; font-family: var(--ff-mono); font-size: .8rem; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.back:hover { color: var(--verm); }

/* ---------- Hero headline — masked line reveal ---------- */
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .02em; }
.hero h1 .line i { display: block; font-style: normal; transform: translateY(112%); animation: lineUp 1s cubic-bezier(.16,1,.3,1) both; }
.hero h1 .line:nth-child(1) i { animation-delay: .08s; }
.hero h1 .line:nth-child(2) i { animation-delay: .20s; }
.hero h1 .line:nth-child(3) i { animation-delay: .32s; }
@keyframes lineUp { to { transform: none; } }
.hero h1 .ul { position: relative; }
.hero h1 .ul::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .07em; background: var(--verm); transform: scaleX(0); transform-origin: left; animation: drawLine .7s cubic-bezier(.16,1,.3,1) 1s forwards; }
@keyframes drawLine { to { transform: scaleX(1); } }
.hero h1 .ul { box-shadow: none; }

/* ---------- Parallax band ---------- */
.band { position: relative; height: 420px; overflow: hidden; border-block: 1px solid var(--line); display: flex; align-items: center; }
.band-img { position: absolute; inset: -18% 0; width: 100%; height: 136%; object-fit: cover; will-change: transform; opacity: .55; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 8%, transparent 55%, rgba(12,10,9,.5)); }
.band .wrap { position: relative; z-index: 2; }
.band-stat { font-family: var(--ff-disp); font-weight: 800; font-size: clamp(2.4rem, 7vw, 6rem); letter-spacing: -.03em; line-height: .95; max-width: 18ch; }
.band-stat em { font-style: normal; color: var(--verm); }
.band-kicker { margin-bottom: 22px; }

/* ---------- Gallery marquee ---------- */
.gallery { overflow: hidden; border-bottom: 1px solid var(--line); }
.gallery-track { display: flex; gap: 18px; width: max-content; padding: 18px 0; animation: gallop 45s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
.gallery-track figure { position: relative; width: 320px; flex: none; border: 1px solid var(--line); overflow: hidden; }
.gallery-track img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s ease; }
.gallery-track figure:hover img { transform: scale(1.06); }
.gallery-track figcaption { position: absolute; left: 0; bottom: 0; font-family: var(--ff-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--bone); background: rgba(12,10,9,.72); padding: 6px 10px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
@keyframes gallop { to { transform: translateX(-50%); } }

/* ---------- Parallax helper ---------- */
[data-parallax] { will-change: transform; }

/* ---------- CTA with image ---------- */
.cta { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 130% at 50% 50%, transparent, var(--ink) 92%); }
.cta .wrap { position: relative; z-index: 2; }

/* magnetic */
.magnetic { transition: transform .25s cubic-bezier(.2,.8,.2,1), background .18s, border-color .18s; }

/* ---------- Reveal (subtle, Swiss-calm) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .07s; } .js .reveal.d2 { transition-delay: .14s; } .js .reveal.d3 { transition-delay: .21s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-side { min-height: 300px; }
  .hero-foot { grid-template-columns: 1fr; }
  .about, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-item { grid-template-columns: 1fr; gap: 28px; }
  .work-item:nth-child(even) .work-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  :root { --pad: 20px; }
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--line-2); padding: 8px var(--pad) 20px; }
  .nav-links.open a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .sec-head { grid-template-columns: 1fr; gap: 12px; }
  .sec-head .kicker, .sec-head h2, .sec-head .intro { grid-column: 1; }
  .svc-row { grid-template-columns: 40px 1fr; }
  .svc-row .body { grid-column: 1 / -1; margin-top: 6px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .quotes { grid-template-columns: 1fr; }
  .quote, .quote:nth-child(odd) { border-right: 0; padding: 36px 0; }
  .quote:nth-child(even) { padding-left: 0; }
  .steps, .footer-cols { grid-template-columns: 1fr; }
  .coord { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .gallery-track { animation: none; }
  .hero h1 .line i { transform: none !important; }
  .hero h1 .ul::after { transform: scaleX(1) !important; }
  .band-img, [data-parallax] { transform: none !important; }
}
