/* ==========================================================================
   Austin AC Repair — site design system
   Light "Texas summer" theme: navy ink, hot-orange action, cool sky surfaces
   ========================================================================== */

:root {
    --ink: #0b2437;
    --ink-soft: #33506b;
    --navy: #0e3a5d;
    --navy-deep: #092942;
    --sky: #eef6fc;
    --sky-deep: #dcedf8;
    --cloud: #f7fbfe;
    --white: #ffffff;
    --line: #d9e6f0;
    --accent: #f2590f;
    --accent-hot: #ff7a2f;
    --accent-soft: #fff0e7;
    --cool: #1c9ad6;
    --cool-soft: #e3f3fb;
    --success: #178a50;
    --success-soft: #e7f6ee;
    --danger: #c9351b;
    --shadow-sm: 0 1px 2px rgba(11, 36, 55, .06), 0 2px 8px rgba(11, 36, 55, .06);
    --shadow-md: 0 2px 6px rgba(11, 36, 55, .07), 0 12px 32px rgba(11, 36, 55, .10);
    --shadow-lg: 0 6px 16px rgba(11, 36, 55, .10), 0 24px 56px rgba(11, 36, 55, .14);
    --radius: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --container: 1200px;
    --header-h: 74px;
}

/* ---- Reset-lite ---------------------------------------------------------- */

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

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

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16.5px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content { flex: 1 0 auto; }

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

h1, h2, h3, h4 {
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 800;
    letter-spacing: -.02em;
    text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1em; }

a { color: var(--cool); }
a:hover { color: var(--accent); }

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 0;
    z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---- Layout helpers ------------------------------------------------------ */

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

section { scroll-margin-top: calc(var(--header-h) + 16px); }

.section { padding: 72px 0; }
.section--sky { background: linear-gradient(180deg, var(--cloud), var(--sky)); }
.section--tight { padding: 48px 0; }

.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 22px; }

/* ---- Buttons ------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 28px;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent-hot), var(--accent));
    color: #fff;
    box-shadow: 0 6px 18px rgba(242, 89, 15, .35);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242, 89, 15, .42); }

.btn-ghost {
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--cool); color: var(--ink); }

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

.btn svg { flex: none; }

/* ---- Top bar + header ---------------------------------------------------- */

.topbar {
    background: var(--navy-deep);
    color: #cfe6f5;
    font-size: .88rem;
    font-weight: 500;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    flex-wrap: wrap;
    padding-top: 4px;
    padding-bottom: 4px;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }
.topbar a:hover { color: var(--accent-hot); }
.topbar-note { display: inline-flex; align-items: center; gap: 8px; }
.topbar-note svg { flex: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--ink);
    margin-right: auto;
}
.logo svg { flex: none; }
.logo-name {
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: -.02em;
    line-height: 1.1;
    display: block;
}
.logo-name span { color: var(--accent); }
.logo-tag {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: .02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: .98rem;
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    transition: background .15s ease;
}
.nav a:hover { background: var(--sky); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--sky); }

.header-cta { display: flex; align-items: center; gap: 16px; }

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    line-height: 1.15;
}
.header-phone:hover { color: var(--ink); }
.header-phone:hover .header-phone-number { color: var(--accent); }
.header-phone-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.header-phone-label { display: block; font-size: .72rem; font-weight: 600; color: var(--ink-soft); }
.header-phone-number { display: block; font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; transition: color .15s ease; }

.header-book { min-height: 46px; padding: 10px 22px; font-size: .95rem; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
    color: var(--ink);
}

@media (max-width: 1020px) {
    .header-book { display: none; }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 16px;
        gap: 2px;
    }
    .nav.is-open { display: flex; }
    .nav a { padding: 13px 14px; font-size: 1.05rem; }
    .header-phone-label { display: none; }
    .topbar-note--extra { display: none; }
}

@media (max-width: 560px) {
    .logo-tag { display: none; }
    .logo-name { font-size: 1.05rem; }
    .logo svg { width: 38px; height: 38px; }
    .header-phone-icon { display: none; }
    .header-phone-number { font-size: .98rem; white-space: nowrap; }
    .topbar-note--hours { display: none; }
    .site-header .wrap { gap: 12px; }
}

/* ---- Hero ---------------------------------------------------------------- */

.hero {
    position: relative;
    background:
        radial-gradient(900px 480px at 88% -10%, rgba(255, 176, 87, .35), transparent 60%),
        radial-gradient(700px 420px at -10% 20%, rgba(28, 154, 214, .16), transparent 55%),
        linear-gradient(180deg, var(--cloud) 0%, var(--sky) 100%);
    overflow: hidden;
}
.hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 48px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 64px;
}
@media (max-width: 920px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 40px; padding-bottom: 48px; }
}

.hero h1 { margin-bottom: .4em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
    font-size: 1.14rem;
    color: var(--ink-soft);
    max-width: 34em;
    margin-bottom: 26px;
}

.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 8px 15px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.hero-points svg { color: var(--success); flex: none; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: .9rem; color: var(--ink-soft); margin-top: 14px; }
.hero-note strong { color: var(--ink); }

.hero-art { margin-top: 26px; }

/* ---- Lead form card ------------------------------------------------------ */

.lead-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(217, 230, 240, .8);
    padding: 30px 28px 26px;
    position: relative;
}
.lead-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--accent-hot), var(--accent) 55%, var(--cool));
}
.lead-card h2, .lead-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.lead-sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }

.lead-form .field-label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink);
}

.lead-input {
    width: 100%;
    min-height: 54px;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--ink);
    background: var(--cloud);
    border: 2px solid var(--line);
    border-radius: 12px;
    transition: border-color .15s ease, background .15s ease;
}
.lead-input:focus { outline: none; border-color: var(--cool); background: var(--white); }
.lead-input::placeholder { color: #8aa4b8; }

.issue-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.issue-chip {
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--ink-soft);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-family: var(--font);
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}
.issue-chip:hover { border-color: var(--cool); color: var(--ink); }
.issue-chip[aria-pressed="true"] {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.lead-form .btn { width: 100%; margin-top: 16px; }
.lead-form .btn[disabled] { opacity: .65; cursor: wait; transform: none; }

.lead-alt {
    text-align: center;
    font-size: .92rem;
    color: var(--ink-soft);
    margin: 14px 0 0;
}
.lead-alt a { font-weight: 800; color: var(--ink); text-decoration: none; }
.lead-alt a:hover { color: var(--accent); }

.lead-privacy {
    text-align: center;
    font-size: .78rem;
    color: #7d95a9;
    margin: 10px 0 0;
}

.form-message { margin-top: 12px; font-size: .95rem; font-weight: 600; }
.form-message.error { color: var(--danger); }

.lead-success { text-align: center; padding: 26px 6px 12px; }
.lead-success svg { color: var(--success); margin-bottom: 12px; }
.lead-success h3 { margin-bottom: 6px; }
.lead-success p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

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

/* ---- Trust band ---------------------------------------------------------- */

.trust-band { background: var(--navy); color: #fff; }
.trust-band .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 10px 28px;
    padding-top: 22px;
    padding-bottom: 22px;
}
.trust-item { display: flex; align-items: center; gap: 13px; padding: 8px 0; }
.trust-item svg { flex: none; color: var(--accent-hot); }
.trust-item strong { display: block; font-size: .98rem; letter-spacing: -.01em; }
.trust-item span { display: block; font-size: .82rem; color: #a8c6dc; }

/* ---- Cards --------------------------------------------------------------- */

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin: 0 0 8px; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.card .card-link { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .92rem; text-decoration: none; color: var(--accent); }
.card .card-link:hover { text-decoration: underline; }

.card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--cool-soft);
    color: var(--cool);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex: none;
}
.card-icon--hot { background: var(--accent-soft); color: var(--accent); }
.card-icon--green { background: var(--success-soft); color: var(--success); }

/* ---- Steps --------------------------------------------------------------- */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 22px;
    counter-reset: step;
}
.step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px 22px;
    box-shadow: var(--shadow-sm);
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: inline-block;
    font-weight: 800;
    font-size: .9rem;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ---- Compare ------------------------------------------------------------- */

.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 22px; }
.compare-col {
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    border: 1px solid var(--line);
    background: var(--white);
}
.compare-col--us {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
}
.compare-col h3 { font-size: 1.2rem; margin-bottom: 18px; }
.compare-col--us h3 { color: #fff; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.compare-col li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.compare-col--us li { color: #dcebf5; }
.compare-col--them li { color: var(--ink-soft); }
.compare-col li svg { flex: none; margin-top: 3px; }
.compare-col--us li svg { color: #5ad08b; }
.compare-col--them li svg { color: #c98a2c; }

/* ---- Chips (brands / areas) ---------------------------------------------- */

.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.chip--muted { background: transparent; border-style: dashed; }

/* ---- FAQ ----------------------------------------------------------------- */

.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 19px 22px;
    font-weight: 700;
    font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "";
    flex: none;
    width: 12px; height: 12px;
    border-right: 2.5px solid var(--accent);
    border-bottom: 2.5px solid var(--accent);
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); font-size: .97rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---- CTA band ------------------------------------------------------------ */

.cta-band {
    background:
        radial-gradient(700px 340px at 12% 120%, rgba(28, 154, 214, .35), transparent 60%),
        radial-gradient(620px 300px at 90% -30%, rgba(255, 122, 47, .28), transparent 55%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 44px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #bcd8ea; font-size: 1.08rem; max-width: 42em; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-hours { margin-top: 18px; font-size: .9rem; color: #9fc2d8; }

@media (max-width: 560px) {
    .cta-band { padding: 40px 22px; }
}

/* ---- Tech / about strip --------------------------------------------------- */

.tech-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 34px;
    box-shadow: var(--shadow-md);
}
.tech-photo {
    width: 116px; height: 116px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--sky-deep);
    box-shadow: var(--shadow-sm);
}
.tech-strip h3 { margin-bottom: 6px; }
.tech-strip p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
@media (max-width: 620px) {
    .tech-strip { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---- Contact page -------------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 22px; align-items: start; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-md);
}
.contact-card h2 { font-size: 1.35rem; }
.contact-rows { display: grid; gap: 16px; margin-top: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row svg { flex: none; color: var(--accent); margin-top: 2px; }
.contact-row strong { display: block; font-size: .98rem; }
.contact-row a { text-decoration: none; font-weight: 700; color: var(--ink); }
.contact-row a:hover { color: var(--accent); }
.contact-row span { color: var(--ink-soft); font-size: .93rem; }

/* ---- Footer -------------------------------------------------------------- */

footer.site-footer {
    background: var(--navy-deep);
    color: #b9d2e2;
    margin-top: 80px;
    font-size: .95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding: 56px 0 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: #b9d2e2; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-about p { margin: 14px 0 0; color: #8fb2c9; font-size: .9rem; max-width: 30em; }
.footer-phone { font-size: 1.3rem; font-weight: 800; color: #fff !important; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    color: #7fa2ba;
}
.footer-bottom a { color: #9fc2d8; }
.footer-bottom a:hover { color: #fff; }

/* ---- Mobile sticky action bar -------------------------------------------- */

.sticky-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 120;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(11, 36, 55, .12);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
}
.sticky-bar .btn { flex: 1; min-height: 50px; font-size: .98rem; padding: 10px 12px; }
@media (max-width: 767px) {
    .sticky-bar { display: flex; }
    body { padding-bottom: 76px; }
}

/* ---- Page hero (secondary pages) ----------------------------------------- */

.page-hero {
    background:
        radial-gradient(700px 380px at 90% -20%, rgba(255, 176, 87, .3), transparent 60%),
        linear-gradient(180deg, var(--cloud) 0%, var(--sky) 100%);
    padding: 52px 0 56px;
    text-align: center;
}
.page-hero h1 { margin-bottom: .35em; }
.page-hero .hero-sub { margin-left: auto; margin-right: auto; }

/* ---- Utilities ------------------------------------------------------------ */

.hidden { display: none; }
.center { text-align: center; }
