/* Pike County Truck & Tractor Repair — styles
   ----------------------------------------------------------
   Design direction: heavy-duty industrial shop signage.
   Charcoal/steel base, dominant diesel-orange, safety-yellow
   hazard accents. Oswald (stamped display) + Barlow (body).
   Built to look complete without photos; photo slots ready.
*/

/* ---- Self-hosted fonts (latin subset) ---- */
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/oswald-600.woff2") format("woff2");
}
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/oswald-700.woff2") format("woff2");
}
@font-face {
    font-family: "Barlow";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/barlow-400.woff2") format("woff2");
}
@font-face {
    font-family: "Barlow";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/barlow-600.woff2") format("woff2");
}
@font-face {
    font-family: "Barlow";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/barlow-700.woff2") format("woff2");
}

:root {
    /* Brand — swap these when Ben's real logo colors arrive */
    --brand-orange: #C96A24;
    --brand-orange-hover: #DD7E33;
    --brand-yellow: #F5B82E;

    /* Color tokens */
    --bg: #14161A;
    --bg-2: #101216;
    --surface: #1E2127;
    --surface-2: #272B33;
    --text: #F4F5F6;
    --text-dim: #B6BCC5;
    --text-muted: #868D98;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.20);
    --accent: var(--brand-orange);
    --accent-hover: var(--brand-orange-hover);
    --accent-2: var(--brand-yellow);
    --on-accent: #1C0E04;
    --success: #4FB477;
    --danger: #E2493F;

    /* Type */
    --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
    --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout & radius */
    --content-max: 1180px;
    --content-narrow: 760px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-pill: 999px;

    /* Effects */
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 16px 34px -18px rgba(0, 0, 0, 0.7);
    --shadow-lift: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 26px 50px -20px rgba(0, 0, 0, 0.8);
    --ring-focus: 0 0 0 3px rgba(201, 106, 36, 0.55);
    --callbar-h: 60px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 90% 50% at 50% -10%, rgba(201, 106, 36, 0.08), transparent 60%);
    background-repeat: no-repeat;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent-hover); }

:focus-visible { outline: none; box-shadow: var(--ring-focus); border-radius: var(--radius-sm); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }

/* ---- Layout primitives ---- */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--content-narrow); }

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.nowrap { white-space: nowrap; }

/* ---- Eyebrows / section heads (stamped part-number look) ---- */
.eyebrow {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-display); font-weight: 600;
    font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 var(--space-3);
}
.eyebrow::before {
    content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
.eyebrow--muted { color: var(--text-muted); }
.eyebrow--muted::before { background: var(--text-muted); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.section-title {
    font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem);
    line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase;
    margin: 0; color: var(--text); text-wrap: balance;
}
.section-intro {
    color: var(--text-dim); font-size: 1.075rem; max-width: 60ch; margin: var(--space-4) 0 0;
}
.section-head--center .section-intro { margin-inline: auto; }

/* ---- Hazard stripe motif (the signature accent) ---- */
.hazard {
    height: 8px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--brand-yellow) 0, var(--brand-yellow) 16px,
        #15171c 16px, #15171c 32px
    );
    border-block: 1px solid rgba(0, 0, 0, 0.4);
}
.hazard--thin { height: 5px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
    font-family: var(--font-display); font-weight: 700;
    font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
    line-height: 1; padding: 0.95rem 1.5rem; border-radius: var(--radius-md);
    border: 2px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn svg { width: 1.15em; height: 1.15em; }

.btn--call {
    background: var(--accent); color: var(--on-accent);
    box-shadow: 0 10px 24px -12px rgba(201, 106, 36, 0.9);
}
.btn--call:hover { background: var(--accent-hover); color: var(--on-accent); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(201, 106, 36, 0.95); }

.btn--ghost {
    background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn--ghost:hover { color: var(--text); border-color: var(--accent); transform: translateY(-2px); }

.btn--lg { font-size: 1.125rem; padding: 1.1rem 1.9rem; }
.btn--block { width: 100%; }

/* ---- Sticky nav ---- */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(16, 18, 22, 0.82);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
    height: 64px; width: 100%; max-width: var(--content-max);
    margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem);
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.nav__brand:hover { color: var(--text); }
.nav__icon { width: 38px; height: 38px; border-radius: 9px; display: block; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark b {
    font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
    letter-spacing: 0.02em; text-transform: uppercase; color: var(--text);
}
.nav__wordmark span {
    font-family: var(--font-display); font-weight: 600; font-size: 0.66rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
    color: var(--text-dim); font-family: var(--font-display); font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.03em; text-transform: uppercase;
    transition: color 0.15s ease;
}
.nav__link:hover { color: var(--text); }
.nav__call {
    display: inline-flex; align-items: center; gap: var(--space-2);
    background: var(--accent); color: var(--on-accent);
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.03em; text-transform: uppercase;
    padding: 0.6rem 1.05rem; border-radius: var(--radius-md);
    transition: background-color 0.15s ease, transform 0.12s ease;
}
.nav__call:hover { background: var(--accent-hover); color: var(--on-accent); transform: translateY(-1px); }
.nav__call svg { width: 1.05em; height: 1.05em; }
.nav__call b { font-weight: 700; }

@media (max-width: 860px) {
    .nav__links .nav__link { display: none; }
}
@media (max-width: 380px) {
    .nav__call b { display: none; }
}

/* ---- Hero ---- */
.hero {
    padding-top: clamp(2.75rem, 6vw, 5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 70% 55% at 80% 0%, rgba(201, 106, 36, 0.16), transparent 62%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.hero__inner { position: relative; }
.hero__eyebrow { color: var(--accent); }
.hero__title {
    font-size: clamp(2.5rem, 1.3rem + 6vw, 5rem);
    line-height: 0.98; letter-spacing: 0.005em; text-transform: uppercase;
    margin: 0 0 var(--space-5); max-width: 16ch; text-wrap: balance; color: var(--text);
}
.hero__title em { color: var(--accent); font-style: normal; }
.hero__sub {
    font-size: clamp(1.075rem, 1rem + 0.6vw, 1.3rem);
    color: var(--text-dim); max-width: 52ch; margin: 0 0 var(--space-8); line-height: 1.55;
}
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero__note {
    margin: var(--space-6) 0 0; color: var(--text-muted); font-size: 0.95rem;
    display: flex; align-items: center; gap: var(--space-2);
}
.hero__note svg { width: 1.05em; height: 1.05em; color: var(--accent-2); flex: none; }

/* Quick facts bar below hero */
.factbar { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.factbar__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4); padding-block: var(--space-5);
}
.fact { display: flex; align-items: center; gap: var(--space-3); }
.fact__icon {
    flex: none; width: 40px; height: 40px; border-radius: var(--radius-md);
    display: grid; place-items: center; background: rgba(201, 106, 36, 0.14); color: var(--accent);
}
.fact__icon svg { width: 20px; height: 20px; }
.fact__k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); font-size: 1.02rem; line-height: 1.1; }
.fact__v { color: var(--text-muted); font-size: 0.875rem; }
.fact__k a { color: var(--text); }
.fact__k a:hover { color: var(--accent); }
@media (max-width: 720px) {
    .factbar__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---- Trust strip ---- */
.trust { background: var(--surface); border-block: 1px solid var(--border); }
.trust__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); text-align: center;
}
.trust__num {
    font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1; color: var(--accent); margin: 0 0 var(--space-2);
}
.trust__label {
    font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin: 0;
}
@media (max-width: 760px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); } }

/* ---- Why-choose strip ---- */
.why { background: var(--surface); border-block: 1px solid var(--border); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 2.5rem); }
.why__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center; background: rgba(201, 106, 36, 0.13); color: var(--accent); margin-bottom: var(--space-4); }
.why__icon svg { width: 24px; height: 24px; }
.why__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.1rem; margin: 0 0 var(--space-2); color: var(--text); }
.why__text { color: var(--text-dim); font-size: 0.95rem; margin: 0; }
@media (max-width: 860px) { .why__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); } }
@media (max-width: 440px) { .why__grid { grid-template-columns: 1fr; } }

/* ---- Service cards ---- */
.services__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5);
}
.service-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--border);
    border-left: 4px solid var(--accent); border-radius: var(--radius-md);
    padding: var(--space-6); box-shadow: var(--shadow-card);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
a.service-card { color: var(--text); }
a.service-card:hover {
    transform: translateY(-4px); background: var(--surface-2);
    border-left-color: var(--accent-hover); box-shadow: var(--shadow-lift);
}
.service-card__icon {
    width: 48px; height: 48px; border-radius: var(--radius-md); margin-bottom: var(--space-4);
    display: grid; place-items: center; background: rgba(201, 106, 36, 0.13); color: var(--accent);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title {
    font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.01em;
    margin: 0 0 var(--space-2); line-height: 1.1; color: var(--text);
}
.service-card__body { color: var(--text-dim); font-size: 0.975rem; margin: 0; flex: 1; }
.service-card__more {
    margin-top: var(--space-4); font-family: var(--font-display); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
    display: inline-flex; align-items: center; gap: 6px;
}
a.service-card:hover .service-card__more { color: var(--accent-hover); gap: 10px; }

/* ---- Callout band (roadside / CTA) ---- */
.band {
    background:
        radial-gradient(ellipse 60% 120% at 100% 50%, rgba(201, 106, 36, 0.18), transparent 60%),
        var(--bg-2);
    border-block: 1px solid var(--border);
}
.band__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-8); flex-wrap: wrap;
}
.band__copy { max-width: 46ch; }
.band__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); text-transform: uppercase; line-height: 1.05; margin: 0 0 var(--space-3); }
.band__title em { color: var(--accent); font-style: normal; }
.band__text { color: var(--text-dim); margin: 0; font-size: 1.05rem; }
.band__actions { display: flex; flex-direction: column; gap: var(--space-3); }

/* ---- Service area ---- */
.area__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: var(--space-3); margin: var(--space-2) 0 0; padding: 0; list-style: none; }
.chips li {
    font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim);
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
}
.area__note { color: var(--text-muted); font-size: 0.95rem; margin-top: var(--space-5); }
@media (max-width: 760px) { .area__grid { grid-template-columns: 1fr; } }

/* ---- Hours ---- */
.hours { display: grid; gap: var(--space-2); margin: var(--space-4) 0 0; padding: 0; list-style: none; max-width: 420px; }
.hours li {
    display: flex; justify-content: space-between; gap: var(--space-4);
    padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--text-dim);
}
.hours li:last-child { border-bottom: none; }
.hours b { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text); }
.hours .hours__emph { color: var(--accent); }

/* ---- Quote form ---- */
.quote { background: var(--surface); border-block: 1px solid var(--border); }
.quote__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.quote__aside p { color: var(--text-dim); }
.quote__or { color: var(--text-muted); font-size: 0.95rem; margin-top: var(--space-6); }

.form {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-card);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-4); }
.field label {
    font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim);
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--text);
    background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-md);
    padding: 0.8rem 0.9rem; width: 100%; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring-focus); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23868D98' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }

/* honeypot — hidden from humans */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__submit { margin-top: var(--space-2); }
.form__hint { color: var(--text-muted); font-size: 0.85rem; margin: var(--space-3) 0 0; }
.form__status { margin: var(--space-4) 0 0; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); font-size: 0.97rem; display: none; }
.form__status.is-ok { display: block; background: rgba(79, 180, 119, 0.14); border: 1px solid rgba(79, 180, 119, 0.5); color: #b6f0cd; }
.form__status.is-err { display: block; background: rgba(226, 73, 63, 0.14); border: 1px solid rgba(226, 73, 63, 0.5); color: #f7c2bd; }

@media (max-width: 760px) {
    .quote__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: var(--space-16) var(--space-8); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); margin-bottom: var(--space-4); }
.footer__brand:hover { color: var(--text); }
.footer__icon { width: 40px; height: 40px; border-radius: 9px; }
.footer__name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; line-height: 1.1; }
.footer__tagline { color: var(--text-dim); font-size: 0.95rem; max-width: 36ch; margin: 0 0 var(--space-5); }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 var(--space-4); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.footer__col a, .footer__col span { color: var(--text-dim); font-size: 0.97rem; }
.footer__col a:hover { color: var(--accent); }
.footer__contact b { color: var(--text); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; }
.footer__legal {
    margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brandcol { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Mobile sticky call bar ---- */
.callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: none;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(16, 18, 22, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
}
.callbar .btn { width: 100%; }
@media (max-width: 860px) {
    .callbar { display: block; }
    body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom)); }
}

/* ---- Breadcrumbs ---- */
.crumbs { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 var(--space-5); }
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--accent); }

/* ---- Page hero (interior pages) ---- */
.page-hero {
    background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 106, 36, 0.12), transparent 60%), linear-gradient(180deg, var(--bg-2), var(--bg));
    border-bottom: 1px solid var(--border);
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-hero__title { font-size: clamp(2.1rem, 1.4rem + 3.5vw, 3.6rem); line-height: 1; text-transform: uppercase; margin: 0 0 var(--space-4); max-width: 20ch; text-wrap: balance; }
.page-hero__sub { color: var(--text-dim); font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem); max-width: 56ch; margin: 0; }

/* ---- Prose / content ---- */
.prose { color: var(--text-dim); }
.prose p { margin: 0 0 var(--space-4); line-height: 1.7; }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); text-transform: uppercase; color: var(--text); margin: var(--space-12) 0 var(--space-4); letter-spacing: 0.01em; }
.prose h3 { font-size: 1.25rem; text-transform: uppercase; color: var(--text); margin: var(--space-8) 0 var(--space-3); }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul.checks { list-style: none; padding: 0; margin: var(--space-4) 0; display: grid; gap: var(--space-3); }
.prose ul.checks li { position: relative; padding-left: 1.9rem; color: var(--text-dim); }
.prose ul.checks li::before {
    content: ""; position: absolute; left: 0; top: 0.36em; width: 16px; height: 16px;
    background: var(--accent); border-radius: 3px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201, 106, 36, 0.45); }
.prose a:hover { color: var(--accent-hover); text-decoration-color: var(--accent-hover); }

/* Two-column layout for interior pages */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.layout__main { min-width: 0; }
.sidecard {
    background: var(--surface); border: 1px solid var(--border); border-top: 4px solid var(--accent);
    border-radius: var(--radius-md); padding: var(--space-6); box-shadow: var(--shadow-card);
    position: sticky; top: 84px;
}
.sidecard h3 { font-size: 1.15rem; text-transform: uppercase; margin: 0 0 var(--space-2); }
.sidecard p { color: var(--text-dim); font-size: 0.95rem; margin: 0 0 var(--space-4); }
.sidecard .btn { width: 100%; margin-bottom: var(--space-3); }
.sidecard__phone { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text); letter-spacing: 0.01em; }
.sidecard__phone a { color: var(--text); }
.sidecard__phone a:hover { color: var(--accent); }
@media (max-width: 860px) { .layout { grid-template-columns: 1fr; } .sidecard { position: static; } }

/* Related services list */
.related { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); }
.related a {
    font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.45rem 1rem;
}
.related a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- 404 ---- */
.notfound { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: var(--space-8); text-align: center; }
.notfound__code { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 14vw, 8rem); color: var(--accent); margin: 0; line-height: 1; }
.notfound__title { font-size: clamp(1.5rem, 4vw, 2.2rem); text-transform: uppercase; margin: var(--space-3) 0 var(--space-3); }
.notfound__body { color: var(--text-dim); max-width: 44ch; margin: 0 auto var(--space-8); }

/* ---- Round 2: real-logo placards + Turnstile ---- */
:root { --brand-cream: #D0DCD1; }
.nav__inner { height: 72px; }
.nav__brand { gap: 0; }
.brand-plate { display: inline-flex; align-items: center; background: var(--brand-cream); border: 1px solid rgba(0, 0, 0, 0.28); border-radius: var(--radius-md); padding: 5px 9px; box-shadow: 0 6px 16px -9px rgba(0, 0, 0, 0.7); }
.brand-plate img { display: block; width: auto; }
.brand-plate--nav img { height: 44px; }
.brand-plate--footer img { height: 104px; }
@media (max-width: 520px) { .brand-plate--nav img { height: 36px; } }
.sidecard { top: 90px; }
section[id] { scroll-margin-top: 88px; }
.cf-turnstile { margin: var(--space-2) 0 var(--space-4); }
.hero__lead { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem); line-height: 1.15; color: var(--text); max-width: 32ch; margin: 0 0 var(--space-5); }
