/* ==========================================================================
   TroughDrain.ca — Design System
   Tokens align with /_internal/strategy/design-philosophy.md
   ========================================================================== */

:root {
    /* Colors — navy + orange (CTA only) + blue (links) */
    --c-primary: #0E2A47;
    --c-primary-dark: #091B30;
    --c-accent: #E85A1F;
    --c-accent-hover: #C94A15;
    --c-link: #1F77E0;
    --c-link-hover: #1660B8;
    --c-surface: #FFFFFF;
    --c-surface-alt: #F5F7FA;
    --c-text: #0E1726;
    --c-text-soft: #475467;
    --c-text-inverse: #FFFFFF;
    --c-border: #E2E8F0;
    --c-border-strong: #CBD5E1;
    --c-success: #1A8754;
    --c-warn: #D97706;
    --c-error: #C8332B;

    /* Spacing scale (8px base) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 16px;
    --s-4: 24px;
    --s-5: 32px;
    --s-6: 48px;
    --s-7: 64px;
    --s-8: 96px;
    --s-9: 128px;

    /* Type */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

    /* Layout */
    --container-max: 1200px;
    --container-px: 48px;

    /* Radii */
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 12px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.04);
    --shadow-md: 0 4px 12px rgba(14, 23, 38, 0.06);

    /* Motion */
    --t-fast: 120ms ease-out;
    --t-med: 220ms ease-out;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 64px; /* room for mobile call CTA */
}

@media (min-width: 768px) {
    body { padding-bottom: 0; font-size: 17px; }
}

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

a {
    color: var(--c-link);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color var(--t-fast);
}

a:hover { color: var(--c-link-hover); }

p { margin: 0 0 var(--s-3); }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
    margin: 0 0 var(--s-3);
    letter-spacing: -0.01em;
}

h1 { font-size: 32px; line-height: 1.15; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

@media (min-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
    h3 { font-size: 22px; }
}

ul, ol { padding-left: 1.25rem; margin: 0 0 var(--s-3); }
li { margin-bottom: var(--s-1); }

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-primary);
    color: var(--c-text-inverse);
    padding: var(--s-2) var(--s-3);
    z-index: 999;
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container { padding-left: var(--container-px); padding-right: var(--container-px); }
}

.section { padding: var(--s-7) 0; }
@media (min-width: 768px) { .section { padding: var(--s-8) 0; } }

.section--alt { background: var(--c-surface-alt); }
.section--dark { background: var(--c-primary); color: var(--c-text-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-text-inverse); }
.section--dark a { color: #9DC2FF; }

.lede { font-size: 1.125rem; color: var(--c-text-soft); max-width: 65ch; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 14px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border: 1.5px solid transparent;
    border-radius: var(--r-md);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
    min-height: 48px;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--c-accent);
    color: var(--c-text-inverse);
    border-color: var(--c-accent);
}
.btn-primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: var(--c-text-inverse); }

.btn-secondary {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn-secondary:hover { background: var(--c-primary); color: var(--c-text-inverse); }

.btn-ghost {
    background: transparent;
    color: var(--c-text-inverse);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--c-text-inverse); color: var(--c-text-inverse); }

.btn-sm { padding: 10px 16px; font-size: 14px; min-height: 40px; }
.btn-lg { padding: 16px 28px; font-size: 17px; min-height: 56px; }

.btn-icon { display: inline-flex; }

.btn-phone { padding: 10px 18px; }
.btn-phone__label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.btn-phone__cta { font-size: 11px; font-weight: 500; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-phone__num { font-size: 16px; font-weight: 700; }

.dual-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-4); }
.dual-cta--inline { margin-top: var(--s-3); }

/* ==========================================================================
   Header / nav
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding-top: var(--s-2);
    padding-bottom: var(--s-2);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    text-decoration: none;
    color: var(--c-primary);
    font-weight: 700;
    flex-shrink: 0;
}
.site-logo:hover { color: var(--c-primary); }

.site-logo__img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
}

.site-footer .site-logo__img { height: 56px; }

/* Dark footer: the logo artwork is designed for light backgrounds — invert it */
.site-logo--inverse .site-logo__img { filter: brightness(0) invert(1); }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    cursor: pointer;
    padding: 10px;
}
.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-surface);
    overflow-y: auto;
    padding: var(--s-4);
    border-top: 1px solid var(--c-border);
}
.primary-nav.is-open { display: block; }

.primary-nav__list { list-style: none; padding: 0; margin: 0; }
.primary-nav__item { margin: 0; border-bottom: 1px solid var(--c-border); }
.primary-nav__link {
    display: block;
    padding: var(--s-3) 0;
    color: var(--c-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}
.primary-nav__link:hover { color: var(--c-link); }

.header-cta { margin-left: auto; flex-shrink: 0; }
.header-cta .btn-phone {
    display: inline-flex;
    padding: 8px 12px;
    min-height: 42px;
    gap: 8px;
}
.header-cta .btn-phone__cta { font-size: 10px; }
.header-cta .btn-phone__num { font-size: 14px; }
@media (max-width: 380px) {
    .header-cta .btn-phone__label { display: none; }
    .header-cta .btn-phone { padding: 8px 10px; }
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: block;
        position: static;
        background: transparent;
        padding: 0;
        overflow: visible;
        border: 0;
        margin-left: var(--s-5);
    }
    .primary-nav__list { display: flex; gap: var(--s-2); }
    .primary-nav__item { border: 0; position: relative; }
    .primary-nav__link { padding: var(--s-2) var(--s-3); font-size: 15px; border-radius: var(--r-md); }
    .primary-nav__link:hover { background: var(--c-surface-alt); color: var(--c-primary); }
    .header-cta { margin-left: 0; }
    .header-cta .btn-phone { display: none; }
}

/* Mega menu */
.mega { display: none; }
@media (min-width: 1024px) {
    .has-mega:hover .mega,
    .has-mega:focus-within .mega {
        display: grid;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 600px;
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--s-5);
        padding: var(--s-5);
        background: var(--c-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-md);
    }
    /* Two-column variant (e.g. Service Areas — one list + CTA). */
    .has-mega:hover .mega:has(> .mega__col--cta:nth-child(2)),
    .has-mega:focus-within .mega:has(> .mega__col--cta:nth-child(2)) {
        grid-template-columns: 1fr 1fr;
        min-width: 480px;
    }
    /* Invisible bridge that covers the 8px gap between the trigger and the
       mega panel so the cursor can cross without losing :hover. */
    .has-mega:hover .mega::before,
    .has-mega:focus-within .mega::before {
        content: "";
        position: absolute;
        inset: -10px 0 auto 0;
        height: 10px;
    }
    .mega__heading { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-text-soft); margin-bottom: var(--s-2); font-weight: 600; }
    .mega__list { list-style: none; padding: 0; margin: 0; }
    .mega__list li { margin: 0; }
    .mega__list a {
        display: block;
        padding: var(--s-1) 0;
        color: var(--c-text);
        text-decoration: none;
        font-size: 14px;
    }
    .mega__list a:hover { color: var(--c-link); }
    .mega__col--cta { background: var(--c-surface-alt); margin: calc(var(--s-5) * -1); padding: var(--s-5); border-radius: 0 var(--r-lg) var(--r-lg) 0; display: flex; flex-direction: column; justify-content: center; gap: var(--s-3); }
    .mega__lede { font-size: 14px; color: var(--c-text-soft); margin: 0; }
}

/* On mobile, mega = inline list under parent */
@media (max-width: 1023px) {
    .mega { display: block; padding-left: var(--s-3); padding-bottom: var(--s-3); }
    .mega__col { margin-bottom: var(--s-3); }
    .mega__heading { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-text-soft); margin: var(--s-2) 0; font-weight: 600; }
    .mega__list { list-style: none; padding: 0; margin: 0; }
    .mega__list a { display: block; padding: 6px 0; color: var(--c-text); text-decoration: none; font-size: 15px; }
    .mega__col--cta { display: none; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
    background: var(--c-surface-alt);
    border-bottom: 1px solid var(--c-border);
    padding: var(--s-3) 0;
}
.trust-bar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3) var(--s-5);
    align-items: center;
    justify-content: center;
}
.trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 14px;
    color: var(--c-text);
    margin: 0;
}
.trust-bar__icon { color: var(--c-accent); flex-shrink: 0; }
.trust-bar__sub { color: var(--c-text-soft); font-weight: 400; }

@media (max-width: 600px) {
    .trust-bar__item--region { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: var(--c-text-inverse);
    padding: var(--s-7) 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding: var(--s-8) 0; }
}

.hero__inner {
    display: grid;
    gap: var(--s-5);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__inner { grid-template-columns: 1.1fr 1fr; gap: var(--s-7); }
}

.hero__eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text-inverse);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: var(--s-3);
}

.hero__title {
    color: var(--c-text-inverse);
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: var(--s-3);
}
@media (min-width: 768px) { .hero__title { font-size: 52px; } }

.hero__lede {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 56ch;
    margin-bottom: var(--s-4);
}

.hero__media {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
    padding: var(--s-5);
}

/* ==========================================================================
   Cards / grid
   ========================================================================== */

.card-grid {
    display: grid;
    gap: var(--s-4);
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-4);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
}

.card:hover {
    border-color: var(--c-border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card__title { color: var(--c-primary); font-size: 18px; margin: 0; }
.card__desc { color: var(--c-text-soft); font-size: 15px; margin: 0; }
.card__more { color: var(--c-link); font-size: 14px; font-weight: 600; margin-top: auto; padding-top: var(--s-2); }
.card__more::after { content: " →"; }

.card--app .card__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-soft);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section__head { text-align: center; margin-bottom: var(--s-6); max-width: 60ch; margin-left: auto; margin-right: auto; }
.section__eyebrow { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-accent); margin-bottom: var(--s-2); }
.section__title { margin: 0 0 var(--s-3); }
.section__lede { color: var(--c-text-soft); margin: 0; }

/* Process steps */
.process { display: grid; gap: var(--s-4); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .process { grid-template-columns: repeat(4, 1fr); } }

.process__step { padding: var(--s-4); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); position: relative; }
.process__step::before {
    counter-increment: step;
    content: counter(step);
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: var(--c-accent);
    color: var(--c-text-inverse);
    border-radius: 100px;
    font-weight: 700;
    margin-bottom: var(--s-3);
}
.process__step h3 { font-size: 18px; margin-bottom: var(--s-2); }
.process__step p { color: var(--c-text-soft); font-size: 15px; margin: 0; }

/* City list */
.city-list {
    display: grid;
    gap: var(--s-2) var(--s-3);
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
}
@media (min-width: 600px) { .city-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .city-list { grid-template-columns: repeat(4, 1fr); } }

.city-list li { margin: 0; }
.city-list a { display: block; padding: var(--s-2) 0; text-decoration: none; color: var(--c-text); font-weight: 500; border-bottom: 1px solid var(--c-border); }
.city-list a:hover { color: var(--c-link); }

/* ==========================================================================
   CTA strip
   ========================================================================== */

.cta-strip {
    background: var(--c-primary);
    color: var(--c-text-inverse);
    padding: var(--s-7) 0;
}
.cta-strip__inner {
    display: grid;
    gap: var(--s-4);
    align-items: center;
}
@media (min-width: 800px) {
    .cta-strip__inner { grid-template-columns: 1.5fr 1fr; gap: var(--s-6); }
}
.cta-strip__title { color: var(--c-text-inverse); margin: 0 0 var(--s-2); font-size: 28px; }
.cta-strip__lede { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (min-width: 800px) { .cta-strip__actions { justify-content: flex-end; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.site-footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--c-text-inverse); text-decoration: underline; }

.site-footer__inner {
    display: grid;
    gap: var(--s-5);
    grid-template-columns: 1fr;
    padding-top: var(--s-7);
    padding-bottom: var(--s-6);
}

@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

.site-footer__brand p { margin: var(--s-3) 0; }

.site-footer__nap { font-style: normal; line-height: 1.7; margin: var(--s-3) 0; color: rgba(255, 255, 255, 0.85); }
.site-footer__nap strong { color: var(--c-text-inverse); }

.site-footer__credentials { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.site-footer__cred { display: inline-block; padding: 4px 10px; background: rgba(255, 255, 255, 0.06); border-radius: 100px; font-size: 12px; color: rgba(255, 255, 255, 0.85); }
.site-footer__cred-num { color: rgba(255, 255, 255, 0.6); }

.site-footer__heading { color: var(--c-text-inverse); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 var(--s-3); font-weight: 600; }
.site-footer__heading--sub { margin-top: var(--s-4); }
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: var(--s-1); }

.site-footer__region { margin-bottom: var(--s-1); }
.site-footer__region summary { cursor: pointer; padding: 0; margin-bottom: var(--s-1); color: rgba(255, 255, 255, 0.8); font-weight: inherit; list-style: none; }
.site-footer__region summary:hover { color: var(--c-text-inverse); }
.site-footer__region summary::-webkit-details-marker { display: none; }
.site-footer__region summary::marker { content: ''; }
.site-footer__region[open] .site-footer__list { padding-top: var(--s-1); padding-left: 0; }

.site-footer__legal { background: rgba(0, 0, 0, 0.2); padding: var(--s-3) 0; }
.site-footer__legal-inner { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; align-items: center; font-size: 13px; }
.site-footer__legal p { margin: 0; }
.site-footer__legal-links { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--s-3); }

/* ==========================================================================
   Mobile call CTA (sticky bottom on mobile only)
   ========================================================================== */

.mobile-call-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    background: var(--c-accent);
    color: var(--c-text-inverse);
    padding: 14px var(--s-4);
    border-radius: var(--r-md);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(232, 90, 31, 0.35);
    min-height: 52px;
}
.mobile-call-cta:hover { color: var(--c-text-inverse); background: var(--c-accent-hover); }

@media (min-width: 768px) {
    .mobile-call-cta { display: none; }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-form {
    display: grid;
    gap: var(--s-3);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-5);
}

.form-grid {
    display: grid;
    gap: var(--s-3);
    grid-template-columns: 1fr;
}
@media (min-width: 500px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-label { font-size: 14px; font-weight: 500; color: var(--c-text); }
.form-req { color: var(--c-error); }

.form-input {
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
    font-family: inherit;
    color: var(--c-text);
    background: var(--c-surface);
    border: 1px solid var(--c-border-strong);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    width: 100%;
}
.form-input:focus { outline: none; border-color: var(--c-link); box-shadow: 0 0 0 3px rgba(31, 119, 224, 0.15); }
.form-textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 96px; }

.form-actions { display: flex; flex-direction: column; gap: var(--s-2); align-items: flex-start; margin-top: var(--s-2); }
.form-fineprint { font-size: 13px; color: var(--c-text-soft); margin: 0; }

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

/* ==========================================================================
   Utility
   ========================================================================== */

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}
