/* Jack's Custom Restoration
   Flat dark shell, square edges, hairline rules. One fixed shop green accent.
   Barlow throughout, sentence case. */

:root {
    --ink: #0d0f0e;
    --ink-2: #141716;
    --ink-3: #1b1f1d;
    --line: #262b28;
    --line-2: #363c38;
    --paper: #f2f3f1;
    --muted: #9ba39d;
    --muted-2: #6f7873;
    --accent: #0a7a45;
    --accent-hover: #0d9153;
    --accent-text: #3ec27d;

    --max: 1160px;
    --gutter: clamp(1.25rem, 5vw, 2.5rem);
    --step: clamp(4rem, 8vw, 7rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }

body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: 'Barlow', -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
    margin: 0 0 0.6em;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.015em;
    overflow-wrap: break-word;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container-wide { max-width: 1360px; }

.label {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    color: var(--muted);
    max-width: 60ch;
}

.muted { color: var(--muted); }

/* Barlow's space glyph is narrow enough that "(250) 380-8173" reads as one run,
   so the number gets its own spacing and never wraps */
.tel { white-space: nowrap; word-spacing: 0.18em; font-variant-numeric: tabular-nums; }

/* the space in front of an inline number gets swallowed too, so nudge it */
span.tel { padding-left: 0.12em; }

:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 2px; }

.skip-link {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 200;
    padding: 0.7rem 1.1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-right: auto;
    text-decoration: none;
    min-width: 0;
}

/* the mark is fine line art off the shop door, so it needs a bit of size
   before the hair stripes resolve */
.brand-mark { width: 46px; height: auto; flex: none; }

.brand span {
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }

.site-nav a {
    font-size: 0.95rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--paper); border-bottom-color: var(--accent); }

.site-nav .nav-phone { display: none; }

.nav-toggle {
    display: none;
    flex: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-2);
    background: none;
    color: var(--paper);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span { width: 17px; height: 1.5px; background: currentColor; }

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.5rem;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline { border-color: #59615b; color: var(--paper); background: rgba(13, 15, 14, 0.35); }
.btn-outline:hover { border-color: var(--paper); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.link-arrow {
    display: inline-block;
    color: var(--accent-text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.link-arrow:hover { color: var(--paper); }

/* ---------- reveal ---------- */

/* starts faint rather than invisible, so a section sitting just below the fold
   still reads as content instead of an empty page */
.js .reveal {
    opacity: 0.28;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.07s; }
.reveal-2 { transition-delay: 0.14s; }

/* a group never fades itself, it only times the children in one after another */
.js .reveal-group.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.js .reveal-group > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease) calc(var(--i, 0) * 70ms),
                transform 0.6s var(--ease) calc(var(--i, 0) * 70ms);
}

.js .reveal-group.is-visible > * { opacity: 1; transform: none; }

/* on a phone these fire while you are still scrolling past them, which reads as
   flicker more than anything. below 900 they just sit finished. */
@media (max-width: 900px) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    .js .reveal-group > * { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    border-bottom: 1px solid var(--line);
    --hero-h: clamp(360px, 58vw, 640px);
}

.hero-media { position: relative; height: var(--hero-h); }

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 1.1s var(--ease);
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(90% 75% at 50% 55%, rgba(13, 15, 14, 0.62) 0%, rgba(13, 15, 14, 0.4) 45%, rgba(13, 15, 14, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 15, 14, 0.55), transparent 32%, transparent 60%, rgba(13, 15, 14, 0.6));
}

.hero-inner {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    /* optical centring, sits a touch above true middle */
    padding-bottom: clamp(1.5rem, 5vw, 4.5rem);
}

.hero-copy {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
    text-shadow: 0 1px 20px rgba(13, 15, 14, 0.75), 0 1px 3px rgba(13, 15, 14, 0.5);
}

.hero-copy .btn-row { justify-content: center; }

.hero h1 { margin-bottom: 0.5rem; }

.hero p { color: #dfe3e0; font-size: clamp(1.02rem, 1.5vw, 1.15rem); margin-bottom: 1.75rem; }

.hero-tag {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.3rem 0.7rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.8s var(--ease);
}

.btn-hero { background: var(--accent); }
.btn-hero:hover { filter: brightness(1.22); }

.hero-dots {
    position: absolute;
    z-index: 4;
    right: clamp(1.25rem, 5vw, 2.5rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
    display: flex;
    gap: 0.5rem;
}

.hero-dots button {
    width: 34px;
    height: 24px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    display: grid;
    align-items: center;
}

.hero-dots span {
    display: block;
    height: 3px;
    background: rgba(242, 243, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-dots span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-dots button[aria-selected="true"] span::after {
    animation: heroDot var(--hero-hold, 6s) linear forwards;
}

/* .is-idle goes on while the hero is scrolled off screen. freeze the progress
   bar so it isn't running down against a timer that is stopped. */
.hero.is-idle .hero-dots button[aria-selected="true"] span::after {
    animation-play-state: paused;
}

.hero-dots button:hover span { background: rgba(242, 243, 241, 0.55); }

@keyframes heroDot { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- facts bar ---------- */

.facts { border-bottom: 1px solid var(--line); background: var(--ink-2); }

.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.fact { padding: 1.5rem 0; }

.fact + .fact { padding-left: 1.75rem; border-left: 1px solid var(--line); }

.fact dt { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }

.fact dd { margin: 0.35rem 0 0; font-size: 1.05rem; font-weight: 500; }

.fact dd a { text-decoration: none; }
.fact dd a:hover { color: var(--accent-text); }

/* ---------- sections ---------- */

.section { padding-block: var(--step); }
.section-tight { padding-block: clamp(3rem, 5vw, 4.25rem); }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section + .section { border-top: 1px solid var(--line); }
.section-alt + .section { border-top: 0; }

.section-head { max-width: 58ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }

/* ---------- split ---------- */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.split figure { margin: 0; }

.split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- service rows ---------- */

.rows { border-top: 1px solid var(--line); }

.row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
    padding-block: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.row:nth-child(even) .row-media { order: -1; }

.row figure { margin: 0; }

.row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.row h2 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); }

.row .lead { margin-bottom: 1.25rem; }

/* ---------- cards ---------- */

/* fixed column counts rather than auto-fit, so a group of six never ends on a
   half empty row */
.cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }

@media (min-width: 620px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .cards { grid-template-columns: repeat(3, 1fr); }
    .cards-2 { grid-template-columns: repeat(2, 1fr); }
}

.card { background: var(--ink); padding: clamp(1.5rem, 3vw, 2rem); }

.section-alt .card { background: var(--ink-2); }

.card h3 { margin-bottom: 0.5rem; }

.card p { color: var(--muted); font-size: 0.98rem; }

.card-link { text-decoration: none; display: block; transition: background 0.15s var(--ease); }
.card-link:hover { background: var(--ink-3); }

/* ---------- services grid ---------- */

/* the first block people land on after the hero, so the cards carry a bit more
   weight than the plain .card set: index number, sweeping accent rule on hover,
   and a staggered entrance driven off the grid's own reveal */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media (min-width: 620px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* seven cards leaves two dead cells on the last row, so the ask card takes the
   whole width instead of hanging off the left */
.svc-grid > .svc-ask:nth-child(7) { grid-column: 1 / -1; }

/* container only exists to time the children, it never fades itself */
.js .svc-grid.reveal { opacity: 1; transform: none; transition: none; }

.svc {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ink-2);
    padding: clamp(1.6rem, 3vw, 2.1rem);
    padding-bottom: clamp(2.6rem, 4vw, 3.2rem);
    overflow: hidden;
    transition: background 0.3s var(--ease);
}

.js .svc {
    opacity: 0;
    transform: translateY(20px);
    transition: background 0.3s var(--ease),
                opacity 0.6s var(--ease) calc(var(--i, 0) * 70ms),
                transform 0.6s var(--ease) calc(var(--i, 0) * 70ms);
}

.js .svc-grid.is-visible .svc { opacity: 1; transform: none; }

/* accent rule that wipes in from the left */
.svc::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: var(--accent-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.svc:hover, .svc:focus-visible { background: var(--ink-3); }
.svc:hover::before, .svc:focus-visible::before { transform: scaleX(1); }

.svc-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--muted-2);
    margin-bottom: 0.9rem;
    transition: color 0.3s var(--ease);
}

.svc:hover .svc-num, .svc:focus-visible .svc-num { color: var(--accent-text); }

.svc h3 {
    margin: 0 0 0.5rem;
    font-size: 1.12rem;
    transition: transform 0.35s var(--ease);
}

.svc p { color: var(--muted); font-size: 0.98rem; margin: 0; }

.svc:hover h3, .svc:focus-visible h3 { transform: translateX(4px); }

/* arrow parked off the bottom edge until hover */
.svc-go {
    position: absolute;
    left: clamp(1.6rem, 3vw, 2.1rem);
    bottom: clamp(1.1rem, 2vw, 1.4rem);
    width: 26px;
    height: 8px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.svc-go::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 100%;
    height: 1px;
    background: var(--accent-text);
}

.svc-go::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--accent-text);
    border-right: 1px solid var(--accent-text);
    transform: rotate(45deg);
}

.svc:hover .svc-go, .svc:focus-visible .svc-go { opacity: 1; transform: none; }

.svc-ask { background: var(--ink); }
.svc-ask .svc-num { letter-spacing: 0; }

/* ---------- lists ---------- */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }

.ticks li { position: relative; padding-left: 1.5rem; color: var(--muted); }

.ticks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.two-col { columns: 2; column-gap: 2rem; }
.two-col li { break-inside: avoid; }

/* ---------- gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.gallery figure { position: relative; margin: 0; background: var(--ink); }

.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.gallery figcaption { padding: 1rem 1.15rem 1.25rem; font-size: 0.95rem; font-weight: 600; }

.gallery figcaption small { display: block; font-weight: 400; color: var(--muted); font-size: 0.88rem; margin-top: 0.1rem; }

.gallery-slot { background: var(--ink-2); }

.slot-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    aspect-ratio: 4 / 3;
    border-bottom: 1px dashed var(--line-2);
    color: var(--muted);
    text-align: center;
    padding: 1rem;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.slot-mark { font-size: 2rem; line-height: 1; font-weight: 300; color: var(--accent-text); }

.slot-line { font-size: 0.95rem; letter-spacing: 0.02em; }

.slot-link {
    position: absolute;
    inset: 0;
    font-size: 0;
    color: transparent;
}

.gallery-slot:hover .slot-media,
.gallery-slot:focus-within .slot-media { color: var(--paper); background: var(--ink-3); }

.image-button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: none;
    cursor: zoom-in;
    font-size: 0;
    color: transparent;
}

/* ---------- service area corridor ---------- */

.corridor-outer { position: relative; }

/* on a phone the line is wider than the screen, so it scrolls inside its own
   panel and the edges fade to say so */
.corridor-outer::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 56px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--ink-2));
    opacity: 1;
    transition: opacity 0.3s var(--ease);
}

.corridor-outer.is-end::after { opacity: 0; }

.corridor-wrap {
    border: 1px solid var(--line);
    background: var(--ink);
    padding: clamp(1rem, 2.5vw, 1.75rem) clamp(0.5rem, 2vw, 1.5rem);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.section-alt .corridor-wrap { background: var(--ink-3); }

.corridor { display: block; width: 100%; min-width: 720px; height: auto; }

.cor-road {
    stroke: var(--line-2);
    stroke-width: 2;
    stroke-dasharray: 932;
    stroke-dashoffset: 932;
}

.is-visible .cor-road { animation: corRoad 1.1s var(--ease) forwards; }

@keyframes corRoad { to { stroke-dashoffset: 0; } }

.cor-tick { stroke: var(--line-2); stroke-width: 1; opacity: 0; }
.cor-dot { fill: var(--accent-text); opacity: 0; }

.cor-name { fill: var(--paper); font-size: 15px; font-weight: 600; opacity: 0; }
.cor-time { fill: var(--muted-2); font-size: 12.5px; letter-spacing: 0.08em; opacity: 0; }

.is-visible .cor-tick,
.is-visible .cor-dot,
.is-visible .cor-name,
.is-visible .cor-time {
    animation: corIn 0.5s var(--ease) forwards;
    animation-delay: calc(0.45s + var(--i) * 0.08s);
}

@keyframes corIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.cor-hub { fill: var(--accent-text); }
.cor-pulse { fill: none; stroke: var(--accent-text); stroke-width: 1.5; opacity: 0; }

.is-visible .cor-pulse { animation: corPulse 2.6s ease-out infinite; animation-delay: 1.1s; }

/* the global reduced motion rule only clamps animation-duration, which turns an
   infinite loop into a strobe. kill the name so the ring just sits still */
@media (prefers-reduced-motion: reduce) {
    .is-visible .cor-pulse { animation: none !important; opacity: 0; }
}

@keyframes corPulse {
    0% { r: 8; opacity: 0.75; }
    70% { r: 26; opacity: 0; }
    100% { r: 26; opacity: 0; }
}

.cor-shop { opacity: 0; }
.is-visible .cor-shop { animation: corIn 0.55s var(--ease) 0.25s forwards; }

.cor-here { fill: var(--paper); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.cor-heresub { fill: var(--accent-text); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

.cor-edge { fill: var(--muted-2); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

.corridor-note { margin-top: 1.25rem; color: var(--muted-2); font-size: 0.92rem; }

.corridor-hint { display: none; margin-top: 0.75rem; font-size: 0.82rem; color: var(--muted-2); letter-spacing: 0.04em; }

@media (max-width: 900px) {
    .corridor-hint { display: block; }
    .corridor-outer::after { background: linear-gradient(90deg, transparent, var(--ink-3)); }
}

/* ---------- reviews marquee ---------- */
/* the track scrolls itself with a raf loop and can be dragged. cards are cloned
   in js until the row is wider than the viewport, so two reviews still loop */

.reviews-section { background: var(--ink); overflow: hidden; }

.reviews-wrap {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    padding-inline: var(--gutter);
}

.reviews-wrap.is-dragging { cursor: grabbing; }

.reviews-wrap::before,
.reviews-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(2rem, 8vw, 6rem);
    z-index: 2;
    pointer-events: none;
}

.reviews-wrap::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.reviews-wrap::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.reviews-track { display: flex; gap: 1px; width: max-content; will-change: transform; }

.review-card {
    flex: 0 0 min(360px, 82vw);
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
}

.review-stars { color: var(--accent-text); font-size: 0.8rem; letter-spacing: 0.18em; margin-bottom: 1.1rem; }
.review-stars .star-off { color: var(--line-2); }

.review-card p {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--paper);
    flex: 1;
}

.review-author { display: flex; align-items: center; gap: 0.8rem; }

.review-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-3);
    border: 1px solid var(--line-2);
    color: var(--accent-text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.review-author strong { display: block; font-size: 0.92rem; font-weight: 600; }
.review-author span { font-size: 0.8rem; color: var(--muted-2); }

/* ---------- quotes ---------- */

.quote { border-left: 2px solid var(--accent); padding-left: 1.5rem; }

.quote blockquote { margin: 0 0 0.9rem; font-size: 1.05rem; }

.quote cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- faq and other disclosures ---------- */
/* the panel is a grid row animating 0fr to 1fr, which gets a real height
   transition without measuring anything in js */

.faq { border-top: 1px solid var(--line); max-width: 74ch; }

.faq details {
    position: relative;
    border-bottom: 1px solid var(--line);
    transition: background 0.25s var(--ease);
}

.faq details:hover { background: rgba(242, 243, 241, 0.02); }

/* accent bar that grows down the row while it is open */
.faq details::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.faq details[open]::before,
.faq details.is-opening::before { transform: scaleY(1); }

.faq details.is-closing::before { transform: scaleY(0); }

.faq summary {
    position: relative;
    list-style: none;
    padding: 1.15rem 2.75rem 1.15rem 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.2s var(--ease), padding-left 0.35s var(--ease);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary:hover { color: var(--accent-text); }

.faq details[open] > summary { color: var(--accent-text); }

.faq summary::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid var(--accent-text);
    border-bottom: 2px solid var(--accent-text);
    transform: rotate(45deg);
    transition: transform 0.4s var(--ease), margin-top 0.4s var(--ease);
}

.faq details[open] > summary::after { margin-top: -2px; transform: rotate(225deg); }

.faq .faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s var(--ease), opacity 0.32s var(--ease);
    opacity: 0;
}

.faq details[open] .faq-panel,
.faq details.is-opening .faq-panel { grid-template-rows: 1fr; opacity: 1; }

.faq details.is-closing .faq-panel { grid-template-rows: 0fr; opacity: 0; }

.faq .faq-panel > div { overflow: hidden; min-height: 0; }

.faq .faq-panel p {
    color: var(--muted);
    padding: 0 0.5rem 1.25rem;
    transform: translateY(-6px);
    transition: transform 0.42s var(--ease);
}

.faq details[open] .faq-panel p,
.faq details.is-opening .faq-panel p { transform: none; }

/* no js: details still opens, it just snaps */
html:not(.js) .faq .faq-panel { grid-template-rows: 1fr; opacity: 1; }

/* ---------- forms ---------- */

.form { display: grid; gap: 1rem; }

.form-panel { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(1.5rem, 3vw, 2rem); }

.section-alt .form-panel { background: var(--ink-3); }

.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.field { display: grid; gap: 0.35rem; }

.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    background: var(--ink);
    border: 1px solid var(--line-2);
    color: var(--paper);
    font-family: inherit;
    font-size: 1rem;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-text); }

.form-note { font-size: 0.86rem; color: var(--muted-2); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-list { margin: 0; display: grid; gap: 1.25rem; }

.contact-list div { display: grid; gap: 0.15rem; }

.contact-list dt { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); }

.contact-list dd { margin: 0; font-size: 1.15rem; line-height: 1.4; }

.contact-list dd a { text-decoration: none; }
.contact-list dd a:hover { color: var(--accent-text); }

/* ---------- page head ---------- */

.page-head { padding-block: clamp(2.75rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line); }

.page-head h1 { max-width: 20ch; }

.crumbs { font-size: 0.85rem; color: var(--muted-2); padding-top: 1.5rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--paper); }
.crumbs span { margin-inline: 0.45rem; }

/* ---------- cta strip ---------- */

.cta { background: var(--ink-2); border-top: 1px solid var(--line); }

.cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-inner h2 { margin: 0 0 0.35rem; }
.cta-inner p { color: var(--muted); margin: 0; }

/* ---------- prose ---------- */

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.15rem; display: grid; gap: 0.45rem; margin: 0 0 1.3em; }
.prose strong { color: var(--paper); font-weight: 600; }
.prose a { color: var(--accent-text); }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem; }

.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); }

.footer-grid h4 { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.9rem; }

.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }

.footer-list a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.footer-list a:hover { color: var(--paper); }

.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 32ch; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.1rem; }

.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); }
.footer-social a:hover { border-color: var(--paper); color: var(--paper); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    font-size: 0.85rem;
    color: var(--muted-2);
}

.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--paper); }

/* ---------- lightbox ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2.5rem);
    background: rgba(6, 8, 7, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}

.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox.is-closing { opacity: 0; }
body.lightbox-active { overflow: hidden; }

.lightbox-backdrop { position: absolute; inset: 0; border: 0; background: none; cursor: zoom-out; }

.lightbox-panel { position: relative; width: 100%; max-width: 1080px; display: grid; gap: 0.85rem; }

.lightbox-image-wrap { border: 1px solid var(--line-2); touch-action: pan-y; }

.lightbox-image-wrap img { width: 100%; max-height: 74vh; object-fit: contain; background: var(--ink); }

.lightbox-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: 0.9rem; }

.lightbox-nav { display: flex; align-items: center; gap: 0.5rem; }

.lightbox-nav button, .lightbox-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-2);
    background: none;
    color: var(--paper);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-nav button:hover, .lightbox-close:hover { border-color: var(--paper); }
.lightbox-nav button.is-disabled { opacity: 0.35; cursor: default; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
    .facts-grid { grid-template-columns: 1fr 1fr; }
    .fact:nth-child(odd) { padding-left: 0; border-left: 0; }
    .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
    .gallery { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 var(--gutter) 1rem;
        background: var(--ink);
        border-bottom: 1px solid var(--line);
    }

    .site-header.nav-open .site-nav { display: flex; }

    .site-nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .site-nav a.is-active { border-bottom-color: var(--line); color: var(--paper); }
    .site-nav .nav-phone { display: block; color: var(--accent-text); }

    .nav-cta { display: none; }

    /* copy sits on the photo here too, centred the same as desktop, with room
       under it for the dots */
    .hero { --hero-h: clamp(530px, 122vw, 680px); }
    .hero-inner { padding-bottom: 3.25rem; }

    .hero-media::after {
        background:
            linear-gradient(180deg, rgba(13, 15, 14, 0.5) 0%, rgba(13, 15, 14, 0.15) 30%, rgba(13, 15, 14, 0.62) 72%, rgba(13, 15, 14, 0.88) 100%);
    }

    .hero-copy { max-width: none; }

    /* the tag sits top centre on a phone, so the dots stay out of its way
       down at the bottom */
    .hero-dots {
        top: auto;
        bottom: clamp(0.9rem, 4vw, 1.4rem);
        right: 50%;
        transform: translateX(50%);
    }

    .split, .contact-grid { grid-template-columns: 1fr; }
    .split figure { order: -1; }

    .row { grid-template-columns: 1fr; }
    .row:nth-child(even) .row-media { order: 0; }
    .row-media { order: -1; }
}

@media (max-width: 620px) {
    .facts-grid { grid-template-columns: 1fr; }
    .fact { padding-left: 0; border-left: 0; }
    .fact + .fact { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
    .gallery { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .two-col { columns: 1; }
    .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .js .reveal { opacity: 1; transform: none; }
    .js .reveal-group > * { opacity: 1; transform: none; }
    .js .svc { opacity: 1; transform: none; }
    .svc::before { display: none; }
}

@media print {
    .site-header, .site-footer, .cta, .lightbox { display: none !important; }
    body { background: #fff; color: #000; }
}

/* ============================================================
   v2 layer
   Everything on the page reads centred now, top to bottom, on
   desktop and phone. Plus the new blocks: counters, the moving
   band, the flow steps, the service blocks, the about timeline
   and the contact cards.
   ============================================================ */

/* ---------- centring pass ---------- */

.crumbs { text-align: center; }

.page-head { text-align: center; }
.page-head h1 { max-width: 22ch; margin-inline: auto; }
.page-head .lead { margin-inline: auto; }
.page-head .btn-row { justify-content: center; }

.section-head { text-align: center; margin-inline: auto; }
.section-head .lead { margin-inline: auto; }

.split-text { text-align: center; }
.row > div:not(.row-media) { text-align: center; }

.prose { margin-inline: auto; text-align: center; }
.prose ul { padding-left: 0; list-style: none; }

.quote { border-left: 0; border-top: 2px solid var(--accent); padding: 1.5rem 0 0; text-align: center; max-width: 60ch; margin-inline: auto; }

/* the bullet drops out of the margin and sits inline, so a centred line
   still keeps its mark attached to the text */
.ticks { justify-items: center; }
.ticks li { padding-left: 0; text-align: center; }
.ticks li::before { position: static; display: inline-block; margin-right: 0.55rem; vertical-align: 0.06em; }

.contact-list { text-align: center; }
.field label { text-align: center; }

.gallery figcaption { text-align: center; }

.cta-inner { flex-direction: column; text-align: center; align-items: center; justify-content: center; }
.cta-inner .btn-row { justify-content: center; }

.faq { margin-inline: auto; }
.faq summary { text-align: center; padding-inline: 2.75rem; }
.faq summary::after { right: 1rem; }
.faq details::before { left: 0; }
.faq .faq-panel p { text-align: center; padding-inline: clamp(0.5rem, 4vw, 2.75rem); }

.svc { text-align: center; }
.svc-go { left: 50%; transform: translate(-50%, 6px); }
.svc:hover .svc-go, .svc:focus-visible .svc-go { transform: translate(-50%, 0); }
.svc:hover h3, .svc:focus-visible h3 { transform: translateY(-2px); }

.footer-grid { text-align: center; }
.footer-brand .brand { justify-content: center; }
.footer-brand p { margin-inline: auto; }
.footer-social { justify-content: center; }
.footer-bottom { justify-content: center; text-align: center; }

@media (min-width: 861px) {
    /* the header stays a real bar, so the nav is centred between the mark
       and the button rather than shoved against the CTA */
    .header-inner { position: relative; }
    .brand { margin-right: 0; }
    .site-nav { margin-inline: auto; }
}

/* ---------- scroll progress ---------- */

.scroll-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--accent-text);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 3;
}

/* ---------- hero motion ---------- */

.hero-slide img { transform: scale(1.06); transition: transform 1.2s var(--ease); }

.hero-slide.is-active img { animation: heroDrift 11s ease-out forwards; }

@keyframes heroDrift {
    from { transform: scale(1.02); }
    to { transform: scale(1.12); }
}

.hero-tag {
    position: relative;
    overflow: hidden;
}

/* thin line that keeps crossing the tag, enough to say the page is alive */
.hero-tag::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    left: -50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: tagSweep 4.5s linear infinite;
}

@keyframes tagSweep { to { left: 120%; } }

.btn-hero { position: relative; overflow: hidden; }

.btn-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn-hero:hover::after { transform: translateX(100%); }

/* scroll cue under the hero copy */
.hero-cue {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: clamp(0.9rem, 3vw, 1.6rem);
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(242, 243, 241, 0.72);
    text-decoration: none;
}

.hero-cue span { display: block; width: 1px; height: 30px; background: rgba(242, 243, 241, 0.3); position: relative; overflow: hidden; }

.hero-cue span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-text);
    animation: cueRun 2.2s var(--ease) infinite;
}

@keyframes cueRun {
    0% { transform: translateY(-100%); }
    60%, 100% { transform: translateY(100%); }
}

.hero-cue:hover { color: var(--paper); }

@media (max-width: 860px) { .hero-cue { display: none; } }

/* ---------- counters ---------- */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.stat { background: var(--ink-2); padding: clamp(1.5rem, 3.5vw, 2.4rem) 1rem; text-align: center; }

.stat-num {
    display: block;
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
}

.stat-num em { font-style: normal; color: var(--accent-text); }

.stat-label {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- moving band ---------- */

.band {
    overflow: hidden;
    background: var(--ink-2);
    border-block: 1px solid var(--line);
    padding-block: 0.95rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.band-track {
    display: flex;
    width: max-content;
    gap: 2.4rem;
    animation: bandRun 38s linear infinite;
}

.band-track span {
    display: inline-flex;
    align-items: center;
    gap: 2.4rem;
    font-size: clamp(0.92rem, 2.4vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.band-track span::after { content: ''; width: 6px; height: 6px; background: var(--accent); flex: none; }

@keyframes bandRun { to { transform: translateX(-50%); } }

/* ---------- flow steps ---------- */

.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.flow-3 { grid-template-columns: repeat(3, 1fr); }

/* three across leaves wide cells, so hold the copy to a readable measure
   instead of letting it run the whole width */
.flow-3 .flow-step { padding-inline: clamp(1.25rem, 2.5vw, 2.25rem); }
.flow-3 .flow-step h3, .flow-3 .flow-step p { max-width: 32ch; margin-left: auto; margin-right: auto; }

.flow-step { position: relative; background: var(--ink); padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.4rem) clamp(1.8rem, 3vw, 2.2rem); text-align: center; }

.section-alt .flow-step { background: var(--ink-2); }

.flow-dot {
    width: 34px;
    height: 34px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-2);
    color: var(--accent-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.flow-step:hover .flow-dot { border-color: var(--accent-text); background: rgba(10, 122, 69, 0.14); }

.flow-step h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.flow-step p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* the line that draws itself through the row as the block comes in */
.flow-wrap { position: relative; }

.flow-rule {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(clamp(1.5rem, 3vw, 2rem) + 17px);
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s var(--ease);
    opacity: 0.45;
}

.flow-wrap.is-visible .flow-rule { transform: scaleX(1); }

@media (max-width: 900px) {
    .flow { grid-template-columns: 1fr 1fr; }
    .flow-3 { grid-template-columns: 1fr; }
    .flow-rule { display: none; }
}

@media (max-width: 520px) { .flow, .flow-3 { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
    .flow-3 .flow-step { padding: 2rem 1.5rem 2.2rem; }
    .flow-3 .flow-step h3, .flow-3 .flow-step p { max-width: 34ch; margin-left: auto; margin-right: auto; }
}

/* ---------- service blocks ---------- */

.svc-jump {
    position: sticky;
    top: 74px;
    z-index: 40;
    background: rgba(13, 15, 14, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.svc-jump-inner {
    display: flex;
    gap: 0.5rem;
    /* safe centring, so a row wider than the screen still starts at its left
       edge instead of clipping the first chip */
    justify-content: center;
    justify-content: safe center;
    overflow-x: auto;
    padding-block: 0.8rem;
    scrollbar-width: none;
}

.svc-jump-inner::-webkit-scrollbar { display: none; }

.svc-jump a {
    flex: none;
    padding: 0.5rem 0.95rem;
    border: 1px solid var(--line-2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.svc-jump a:hover, .svc-jump a.is-current { color: var(--paper); border-color: var(--accent-text); background: rgba(10, 122, 69, 0.12); }

.svc-block {
    position: relative;
    border-bottom: 1px solid var(--line);
    padding-block: clamp(3rem, 6vw, 5rem);
    scroll-margin-top: 140px;
    overflow: hidden;
}

.svc-block:nth-child(even) { background: var(--ink-2); }

/* the number sits behind the block as a watermark instead of another label */
.svc-mark {
    position: absolute;
    top: clamp(-0.75rem, 1vw, 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(7rem, 22vw, 15rem);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: rgba(242, 243, 241, 0.032);
    pointer-events: none;
    user-select: none;
}

.svc-block > .container { position: relative; z-index: 1; }

.svc-head { text-align: center; max-width: 62ch; margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem); }
.svc-head h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 0.5rem; }
.svc-head .lead { margin-inline: auto; }

.svc-shot { position: relative; width: 100%; max-width: 780px; margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem); }

.svc-shot img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(0.92);
    transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

.svc-shot:hover img { filter: saturate(1.05); transform: scale(1.012); }

/* photo wipes up from under a cover panel when the block comes into view */
.svc-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.85s var(--ease);
}

.js .reveal.is-visible .svc-shot::after,
.js .svc-shot.is-visible::after { transform: scaleY(0); }

@media (max-width: 720px) { .svc-shot { max-width: 100%; } .svc-shot img { aspect-ratio: 3 / 2; } }

.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

.chips li {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line-2);
    background: var(--ink);
    color: var(--muted);
    font-size: 0.9rem;
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.section-alt .chips li, .svc-block:nth-child(even) .chips li { background: var(--ink-3); }

.chips li:hover { border-color: var(--accent-text); color: var(--paper); transform: translateY(-2px); }

.js .chips li { opacity: 0; transform: translateY(10px); transition: opacity 0.45s var(--ease) calc(var(--i, 0) * 55ms), transform 0.45s var(--ease) calc(var(--i, 0) * 55ms), border-color 0.25s var(--ease), color 0.25s var(--ease); }
.js .chips.is-visible li, .js .is-visible .chips li { opacity: 1; transform: none; }

.svc-foot { margin-top: clamp(1.5rem, 3vw, 2rem); text-align: center; }

/* ---------- price / stage panel ---------- */

.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.panel { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.2rem); text-align: center; }
.section-alt .panel { background: var(--ink-2); }
.panel h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.panel p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.panel-key { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 0.9rem; }

@media (max-width: 900px) { .panels { grid-template-columns: 1fr; } }

/* ---------- about timeline ---------- */

.timeline { position: relative; max-width: 46rem; margin-inline: auto; padding-top: 0.5rem; }

.tl-item { position: relative; text-align: center; padding: 0 0 clamp(2rem, 4vw, 3rem); }
.tl-item:last-child { padding-bottom: 0; }

/* connector only lives in the gap between two entries, so the line never
   runs through the middle of a paragraph */
.tl-item + .tl-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(-1 * clamp(2rem, 4vw, 3rem));
    width: 1px;
    height: clamp(2rem, 4vw, 3rem);
    background: var(--line-2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease) calc(var(--i, 0) * 0.12s);
}

.timeline.is-visible .tl-item + .tl-item::after { transform: scaleY(1); }

.tl-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0.55rem;
    width: 9px;
    height: 9px;
    margin-left: -4.5px;
    background: var(--accent-text);
    transform: scale(0);
    transition: transform 0.4s var(--ease) calc(0.25s + var(--i, 0) * 0.12s);
}

.timeline.is-visible .tl-item::before { transform: scale(1); }

.tl-year { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 1.35rem; padding-top: 1.55rem; }
.tl-item h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.tl-item p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

.js .tl-item > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease) calc(0.2s + var(--i, 0) * 0.12s), transform 0.5s var(--ease) calc(0.2s + var(--i, 0) * 0.12s);
}

.timeline.is-visible .tl-item > * { opacity: 1; transform: none; }

/* ---------- owner card ---------- */

.owner { max-width: 60rem; margin-inline: auto; text-align: center; }

.owner-photo { position: relative; width: min(320px, 70vw); margin: 0 auto 1.6rem; }

.owner-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.owner-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent);
    transform: translate(12px, 12px);
    pointer-events: none;
    transition: transform 0.5s var(--ease);
}

.owner-photo:hover::after { transform: translate(6px, 6px); }

.owner-name { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.15rem; }
.owner-role { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 1.2rem; }
.owner p { color: var(--muted); max-width: 58ch; margin-inline: auto; }

/* ---------- contact reach cards ---------- */

.reach { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.reach-card {
    background: var(--ink-2);
    padding: clamp(1.5rem, 3vw, 2rem) 1.15rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    transition: background 0.28s var(--ease);
}

.reach-card:hover { background: var(--ink-3); }

.reach-card::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: var(--accent-text);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.reach-card:hover::before { transform: scaleX(1); }

.reach-icon { width: 40px; height: 40px; margin: 0 auto 1rem; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--accent-text); transition: border-color 0.28s var(--ease); }
.reach-card:hover .reach-icon { border-color: var(--accent-text); }
.reach-icon svg { width: 18px; height: 18px; fill: currentColor; }

.reach-card h3 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 0.5rem; }
.reach-value { font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
.reach-note { display: block; margin-top: 0.35rem; font-size: 0.86rem; color: var(--muted-2); font-weight: 400; }

@media (min-width: 901px) {
    .reach {
        margin-block: 2.5rem 1rem;
        margin-inline: max(var(--gutter), (100% - var(--max)) / 2);
    }
    .reach-card { padding: 3rem 2rem; }
    .reach-icon { margin-bottom: 1.25rem; }
}

@media (max-width: 900px) { .reach { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .reach { grid-template-columns: 1fr; } }

.form-panel { max-width: 46rem; margin-inline: auto; }
.form-panel .btn { justify-self: center; min-width: 220px; }
.form-note { text-align: center; }

/* ---------- checklist ---------- */

.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 46rem; margin-inline: auto; }

.checks li { background: var(--ink); padding: 1rem 1.25rem; text-align: center; color: var(--muted); font-size: 0.97rem; }
.section-alt .checks li { background: var(--ink-2); }
.checks li strong { color: var(--paper); font-weight: 600; }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active img,
    .hero-tag::after,
    .hero-cue span::after,
    .band-track { animation: none !important; }
    .band-track { transform: none !important; }
    .js .chips li { opacity: 1; transform: none; }
    .js .tl-item > * { opacity: 1; transform: none; }
    .tl-item + .tl-item::after { transform: scaleY(1); }
    .js .svc-shot::after { transform: scaleY(0); }
    .flow-rule { transform: scaleX(1); }
}

/* no js: nothing stays hidden behind a cover panel it can never remove */
html:not(.js) .svc-shot::after { transform: scaleY(0); }
html:not(.js) .chips li { opacity: 1; transform: none; }
html:not(.js) .tl-item > * { opacity: 1; transform: none; }
html:not(.js) .tl-item + .tl-item::after { transform: scaleY(1); }
html:not(.js) .flow-rule { transform: scaleX(1); }

/* ============================================================
   pricing page
   Same flat panels and hairline rules as everywhere else. The
   only new motion is the damage map moving its pin, driven off
   the shared reveal observer.
   ============================================================ */

.price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.06em;
    font-size: clamp(2.1rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
}

.price em { font-style: normal; color: var(--accent-text); font-size: 0.62em; }
.price small { font-size: 0.34em; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-left: 0.35em; }
.price[hidden] { display: none; }
.price-word { font-size: clamp(1.3rem, 3vw, 1.75rem); letter-spacing: -0.02em; color: var(--muted); }

.extra p.price { color: var(--paper); font-size: clamp(2.1rem, 5vw, 3rem); }
.extra p.price-word { color: var(--muted); font-size: clamp(1.3rem, 3vw, 1.75rem); }

.fineprint { max-width: 54rem; margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0; text-align: center; color: var(--muted-2); font-size: 0.9rem; display: grid; gap: 0.4rem; }
.fineprint strong { color: var(--muted); font-weight: 600; }

/* ---------- damage map ---------- */

.map-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }

.map-picker { display: grid; gap: 1.5rem; }
.map-set h3 { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.85rem; }

.map-opts { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }

.map-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: var(--ink-2);
    border: 0;
    padding: 0.9rem 1.15rem;
    color: var(--muted);
    font: inherit;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.map-opt::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: var(--accent-text);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease);
}

.map-opt:hover { background: var(--ink-3); color: var(--paper); }
.map-opt[aria-pressed="true"] { background: var(--ink-3); color: var(--paper); }
.map-opt[aria-pressed="true"]::before { transform: scaleY(1); }

.map-opt b { font-weight: 500; }
.map-opt span { flex: none; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--muted-2); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.map-opt[aria-pressed="true"] span, .map-opt:hover span { color: var(--accent-text); }

.map-stage { position: sticky; top: 6rem; border: 1px solid var(--line); background: var(--ink-2); padding: clamp(1.25rem, 3vw, 2rem); }

.map-svg { display: block; width: 100%; height: auto; }

.car-line { fill: none; stroke: var(--line-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.car-glass { fill: none; stroke: var(--line-2); stroke-width: 1.5; opacity: 0.75; }
.car-wheel { fill: none; stroke: var(--line-2); stroke-width: 2; }
.car-hub { fill: none; stroke: var(--line-2); stroke-width: 1.5; opacity: 0.6; }
.car-ground { stroke: var(--line); stroke-width: 1; }

.car-zone { fill: var(--accent); opacity: 0; transition: opacity 0.45s var(--ease); }
[data-zone].is-hot .car-zone { opacity: 0.16; }

.car-zone-edge { fill: none; stroke: var(--accent-text); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: 0; transition: opacity 0.45s var(--ease); }
[data-zone].is-hot .car-zone-edge { opacity: 0.85; }

.car-pin { transition: transform 0.6s var(--ease); }
.car-pin circle { fill: var(--accent-text); }
.car-pin .pin-ring { fill: none; stroke: var(--accent-text); stroke-width: 1.5; opacity: 0; }
.map-stage.is-live .car-pin .pin-ring { animation: pinPulse 2.4s ease-out infinite; }

@keyframes pinPulse {
    0% { r: 6; opacity: 0.8; }
    100% { r: 22; opacity: 0; }
}

.map-readout { border-top: 1px solid var(--line); margin-top: clamp(1.25rem, 3vw, 1.75rem); padding-top: clamp(1.25rem, 3vw, 1.75rem); text-align: center; }
.map-readout .label { margin-bottom: 0.6rem; }
.map-readout h3 { font-size: 1.15rem; margin-bottom: 0.75rem; min-height: 1.3em; }
.map-note { color: var(--muted); font-size: 0.94rem; margin: 0.9rem 0 0; min-height: 2.8em; }

/* ---------- extras band ---------- */

.extras { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 60rem; margin-inline: auto; }
.extra { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.2rem); text-align: center; }
.section-alt .extra { background: var(--ink-2); }
.extra h3 { font-size: 1.02rem; margin-bottom: 0.6rem; }
.extra p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.extra .price { margin-bottom: 0.6rem; }

/* three up, so a third card is not left sitting in an empty cell */
.extras-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
    .map-grid { grid-template-columns: 1fr; }
    .map-stage { position: static; order: -1; }
}

@media (max-width: 620px) {
    .extras, .extras-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .map-stage.is-live .car-pin .pin-ring { animation: none; }
    .car-pin { transition: none; }
}



/* ---------- what we do note (home) ---------- */

/* the seven card grid on the home page was too much furniture for a block that
   just needs to say "full autobody shop, here is the range". short note in the
   section head, the range as tags, then push people to the services page. */
.svc-note {
    max-width: 64ch;
    margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
    text-align: center;
}

.svc-tags {
    list-style: none;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.svc-tags a {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--line);
    background: var(--ink-2);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.svc-tags a:hover, .svc-tags a:focus-visible {
    color: var(--paper);
    border-color: var(--accent-text);
    background: var(--ink-3);
}

.svc-note .btn-row { justify-content: center; }
