/* =============================================================================
   USA Doors LLC - Stylesheet
   -----------------------------------------------------------------------------
   Design system
     - Palette : patriotic navy / red / sky-blue on near-white (matches the
       brand colours from the previous site).
     - Type    : Teko (condensed display) for headings, Roboto for body.
     - Layout  : mobile-first, single 1200px container, generous spacing.
     - Motion  : 150-300ms transitions, transform/opacity only, and fully
                 disabled under prefers-reduced-motion.
   Table of contents
     1. Design tokens (custom properties)
     2. Reset & base
     3. Typography
     4. Layout helpers
     5. Buttons
     6. Header (top bar + navbar, sticky)
     7. Hero & page hero
     8. Trust strip / stats
     9. Cards, values
    10. CTA band
    11. About & contact
    12. Forms & alerts
    13. Footer
    14. Reveal-on-scroll & reduced motion
   ========================================================================== */

/* 1. Design tokens ---------------------------------------------------------- */
:root {
    --navy:        #262569;
    --navy-dark:   #1a1a47;
    --red:         #e92534;
    --red-dark:    #c81e2b;
    --blue:        #2f74c0;
    --sky:         #62bfe6;

    --bg:          #f5f6f8;
    --surface:     #ffffff;
    --ink:         #1b1e2b;
    --muted:       #5b6172;
    --line:        #e6e8ef;
    --white:       #ffffff;

    --font-display: "Teko", "Arial Narrow", sans-serif;
    --font-body:    "Roboto", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

    --container: 1200px;
    --gutter: 20px;

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 2px rgba(15, 18, 40, .06), 0 2px 6px rgba(15, 18, 40, .05);
    --shadow:    0 6px 18px rgba(15, 18, 40, .10);
    --shadow-lg: 0 18px 40px rgba(15, 18, 40, .16);

    --t: 220ms cubic-bezier(.2, .7, .3, 1);

    --z-header: 50;
}

/* 2. Reset & base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--red); }

ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; cursor: pointer; }

:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: 12px; top: -60px;
    z-index: 100;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: top var(--t);
}
.skip-link:focus { top: 12px; color: #fff; }

.icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* 3. Typography ------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .5px;
    color: var(--ink);
    margin: 0 0 .4em;
    text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: .3px; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 .6rem;
}
/* Darker red for eyebrows on light section backgrounds (AA contrast). The hero
   keeps the brand red on navy; page-hero overrides to sky. */
.section .eyebrow { color: var(--red-dark); }

/* 4. Layout helpers --------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--alt { background: var(--surface); }
.section--navy { background: var(--navy); color: #eef0ff; }
.section--center { text-align: center; }

.section__head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section__title { margin: 0 0 .5rem; }
.section--navy .section__title { color: #fff; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin: 0; }
.section--navy .section__lead { color: #c4c7ee; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.section--center .btn-group { justify-content: center; }

/* 5. Buttons ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 13px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--navy);
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
    will-change: transform;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); }
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost { background: transparent; border-color: currentColor; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #eef0ff; color: var(--navy); }

.btn--lg { font-size: 1.3rem; padding: 16px 34px; }

/* 6. Header ----------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--surface);
    box-shadow: 0 1px 0 var(--line);
    transition: box-shadow var(--t);
}
.site-header.is-stuck { box-shadow: var(--shadow); }

/* Utility bar - always-visible license + phone */
.topbar { background: var(--navy); color: #d7d9f5; font-size: .82rem; }
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    padding-top: 6px; padding-bottom: 6px;
}
.topbar__license { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 500; letter-spacing: .3px; }
.topbar__license .icon { width: 16px; height: 16px; color: var(--sky); }
.topbar__phone { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; letter-spacing: .3px; }
.topbar__phone .icon { width: 16px; height: 16px; color: var(--sky); }
.topbar__phone:hover { color: var(--sky); }

/* Main navbar */
.navbar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    padding-top: 7px; padding-bottom: 7px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: 1 1 auto; min-width: 0; }
.brand__logo { width: auto; height: 60px; }
.brand__tagline {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.15;
    letter-spacing: .4px;
    color: var(--navy);
    padding-left: 14px;
    border-left: 3px solid var(--red);
}

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
}
.nav__link:hover { color: var(--red); background: var(--bg); }
.nav__link.is-active { color: var(--red); }
.nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 2px;
    height: 3px; border-radius: 3px;
    background: var(--red);
}
.nav__cta { margin-left: 8px; }
.nav__cta .btn { font-size: 1.05rem; padding: 10px 20px; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    padding: 0;
    background: transparent;
    border: 0;
}
.nav-toggle__bar { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: transform var(--t), opacity var(--t); margin: 0 auto; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) 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(-8px) rotate(-45deg); }

/* 7. Hero ------------------------------------------------------------------- */
.hero {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2f2e74 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(circle at 88% 8%, rgba(98, 191, 230, .22), transparent 42%);
    pointer-events: none;
}
.hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
    padding-top: clamp(44px, 8vw, 90px); padding-bottom: clamp(44px, 8vw, 90px);
}
.hero__content { max-width: 620px; }
.hero__title { color: #fff; margin: 0 0 1rem; text-shadow: 0 2px 18px rgba(0, 0, 0, .2); }
.hero__title em { color: var(--sky); font-style: normal; display: block; }
.hero__text { font-size: 1.2rem; color: #d9dcff; max-width: 52ch; margin: 0 0 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 1.8rem; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #eef0ff; }
.hero__trust .icon { width: 18px; height: 18px; color: var(--sky); }
.hero__figure { position: relative; }
.hero__figure img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid rgba(255, 255, 255, .1);
}
.hero__figure::after {
    content: "";
    position: absolute; right: -12px; bottom: -12px;
    width: 72px; height: 72px;
    border-right: 5px solid var(--red);
    border-bottom: 5px solid var(--red);
    border-bottom-right-radius: var(--radius-lg);
}
@media (min-width: 900px) {
    .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
}

@media (max-width: 899.98px) {
    /* On phones and tablets show the photo as a crisp wide crop (not a tall
       square) and let the call-to-action buttons fill the width. */
    .hero__inner { gap: 28px; }
    .hero__figure img { aspect-ratio: 16 / 10; object-fit: cover; }
    .hero__figure::after { display: none; }
    .hero .btn-group .btn { flex: 1 1 auto; justify-content: center; }
}

/* Compact hero for inner pages */
.page-hero { position: relative; background: var(--navy); color: #fff; padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 64px); isolation: isolate; }
.page-hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16;
    background: radial-gradient(circle at 85% -10%, var(--sky), transparent 45%);
}
.page-hero .eyebrow { color: var(--sky); }
.page-hero h1 { color: #fff; }
.page-hero__lead { font-size: 1.15rem; color: #c9ccf2; max-width: 60ch; margin: .4rem 0 0; }

/* 8. Trust strip & stats ---------------------------------------------------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 18px; padding-top: 26px; padding-bottom: 26px; }
.trust__item { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.trust__item .icon { width: 30px; height: 30px; color: var(--red); }
.trust__item strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .3px; display: block; line-height: 1; color: var(--navy); }
.trust__item span { color: var(--muted); font-size: .92rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat { text-align: center; padding: 18px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 4rem); line-height: 1; color: #fff; }
.section--navy .stat__num { color: var(--sky); }
.stat__label { text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; font-weight: 700; color: #c4c7ee; }

/* 9. Cards, values ---------------------------------------------------------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 26px; }
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title { margin: 0 0 .4rem; color: var(--navy); }
.card__text { color: var(--muted); margin: 0 0 1rem; }
.card__link { margin-top: auto; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: 1.05rem; color: var(--red-dark); display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: "\2192"; transition: transform var(--t); }
.card:hover .card__link::after { transform: translateX(4px); }

.value-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.value { display: flex; align-items: flex-start; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.value .icon { width: 24px; height: 24px; color: var(--red); margin-top: 2px; }
.value strong { display: block; color: var(--navy); font-size: 1.05rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li a, .tag-list li span {
    display: inline-block; padding: 8px 14px; border-radius: 999px;
    background: var(--bg); border: 1px solid var(--line); color: var(--navy);
    font-weight: 500; font-size: .92rem; transition: background var(--t), color var(--t), border-color var(--t);
}
.tag-list li a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* 10. CTA band -------------------------------------------------------------- */
.cta-band { background: var(--red); color: #fff; padding: clamp(40px, 6vw, 64px) 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { margin: .3rem 0 0; color: #fff; font-size: 1.1rem; }
.cta-band .btn--light { flex: 0 0 auto; }

/* 11. About & contact ------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about__body p { color: var(--muted); }
.about__body p strong { color: var(--ink); }

.contact { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.contact__info { display: grid; gap: 14px; }
.contact__info .info-row { display: flex; align-items: flex-start; gap: 12px; }
.contact__info .icon { color: var(--red); width: 22px; height: 22px; margin-top: 3px; }
.contact__info strong { display: block; color: var(--navy); font-family: var(--font-display); letter-spacing: .3px; font-size: 1.15rem; }
.contact__info a { color: var(--muted); }
.contact__info a:hover { color: var(--red); }
/* OpenStreetMap embed: clip OSM's busy built-in attribution bar by making the
   iframe taller than its clipping container, then show a clean credit below. */
.map-frame { position: relative; margin-top: 8px; height: 300px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }
.map-attr { margin-top: 6px; font-size: .78rem; color: var(--muted); }
.map-attr a { color: var(--muted); }
.map-attr a:hover { color: var(--red); }

/* Legal / long-form text pages (e.g. Privacy Policy) */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { margin: 2rem 0 .6rem; font-size: clamp(1.4rem, 2.4vw, 1.7rem); }
.legal ul { padding-left: 1.2rem; list-style: disc; margin: 0 0 1rem; }
.legal li { margin-bottom: .4rem; color: var(--muted); }
.legal p { color: var(--muted); }
.legal strong { color: var(--ink); }

/* 12. Forms & alerts -------------------------------------------------------- */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label { font-weight: 500; font-size: .92rem; color: var(--ink); }
.field__label .req { color: var(--red); }
.field__input, .field__textarea {
    font: inherit; color: var(--ink); background: var(--bg);
    border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: 12px 14px; width: 100%; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field__textarea { min-height: 140px; resize: vertical; }
.field__input:focus, .field__textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(38, 37, 105, .12); }
.field--error .field__input, .field--error .field__textarea { border-color: var(--red); }
.field__error { color: var(--red-dark); font-size: .85rem; font-weight: 500; }

/* Honeypot - visually hidden, off-screen; bots fill it, humans never see it. */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.cf-turnstile { margin: 4px 0 6px; }

.alert { border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px; font-weight: 500; border: 1.5px solid transparent; }
.alert--success { background: #e8f7ee; color: #176b3a; border-color: #b7e3c6; }
.alert--error { background: #fdeaec; color: #9c1c27; border-color: #f4c2c7; }

/* 13. Footer ---------------------------------------------------------------- */
.site-footer { background: var(--navy-dark); color: #b9bce0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }
.site-footer__logo { height: 50px; width: auto; background: #fff; padding: 8px 12px; border-radius: var(--radius-sm); }
.site-footer__tagline { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .4px; color: #fff; margin: 16px 0 8px; font-size: 1.1rem; line-height: 1.2; }
.site-footer__license { color: var(--sky); font-weight: 500; margin: 0; }
.site-footer__title { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 1.3rem; letter-spacing: .5px; margin: 0 0 14px; }
.site-footer__links li + li, .site-footer__contact li + li { margin-top: 10px; }
.site-footer__links a { color: #b9bce0; }
.site-footer__links a:hover { color: #fff; }
.site-footer__contact li { display: flex; align-items: center; gap: 10px; }
.site-footer__contact .icon { color: var(--sky); width: 18px; height: 18px; }
.site-footer__contact a { color: #b9bce0; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__bbb { display: inline-block; margin-top: 18px; }
.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; font-size: .85rem; color: #9094c6; }
.site-footer__bar-inner p { margin: 0; }
.site-footer__bar-inner a { color: #c9ccf2; }
.site-footer__bar-inner a:hover { color: #fff; }

/* 14. Reveal-on-scroll & reduced motion ------------------------------------- */
/* Content is visible by default; the scroll animation only applies once JS
   adds .js-anim to the document, so a JS failure never hides content. */
.js-anim .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.is-visible { opacity: 1; transform: none; }

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

/* =============================================================================
   Responsive - mobile-first; the rules below scale UP from small screens.
   ========================================================================== */

/* >= 600px : two-column grids start to appear */
@media (min-width: 600px) {
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .form__row--2 { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr 1fr; }
}

/* >= 768px : tablet layouts */
@media (min-width: 768px) {
    .cards--3 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(4, 1fr); }
    .about { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1.3fr 1fr; }
    .site-footer__grid { grid-template-columns: 2fr 1fr 1.4fr; }
}

/* >= 980px : full desktop navigation + 3-up cards */
@media (min-width: 980px) {
    .cards--3 { grid-template-columns: repeat(3, 1fr); }
    .trust__grid { grid-template-columns: repeat(4, 1fr); padding-top: 30px; padding-bottom: 30px; }
}

/* --- Mobile navigation (below 980px) -------------------------------------- */
@media (max-width: 979.98px) {
    .nav-toggle { display: flex; }
    .nav {
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: var(--surface);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        max-height: 0; overflow: hidden;
        visibility: hidden; /* keep collapsed links out of the tab order */
        transition: max-height var(--t), visibility 0s linear var(--t);
    }
    .nav.is-open { max-height: 80vh; overflow-y: auto; -webkit-overflow-scrolling: touch; visibility: visible; transition: max-height var(--t), visibility 0s; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 18px; }
    .nav__link { font-size: 1.5rem; padding: 12px 6px; border-bottom: 1px solid var(--line); }
    .nav__link.is-active::after { display: none; }
    .nav__cta { margin: 14px 0 0; }
    .nav__cta .btn { width: 100%; justify-content: center; font-size: 1.3rem; padding: 14px; }
    /* Keep the tagline beside the logo (same layout as desktop), just smaller so it fits next to the menu button. */
    .brand__tagline { font-size: .72rem; padding-left: 10px; letter-spacing: .3px; }
}

/* Keep the tagline visible on very small screens by showing it under the logo */
@media (max-width: 600px) {
    .brand__logo { height: 42px; }
    .topbar { font-size: .74rem; }
    .topbar__license span { white-space: nowrap; }
    .hero__text { font-size: 1.05rem; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
