/* ==========================================================================
   Abately — styles.css
   Editorial, data-credible, restrained. Navy + crimson + peach + restrained gold.
   No glassmorphism, no heavy gradients.
   ========================================================================== */

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

html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

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

a {
    color: inherit;
}

/* ---------- Tokens ---------- */
:root {
    /* Brand from logo */
    --ink:        #1F3A52;          /* deep navy — wordmark */
    --ink-soft:   #2E4862;
    --ink-deep:   #14283A;
    --crimson:    #D33240;          /* logo mark accent */
    --peach:      #E8B59A;          /* logo mark warm */
    --gold:       #F2B42D;          /* highlight from Gamma */
    --gold-deep:  #C99214;

    /* Neutrals */
    --paper:      #FBF8F3;          /* page background — warm off-white */
    --paper-2:    #F4EFE6;          /* card surface */
    --paper-3:    #ECE5D8;          /* deeper paper for sections */
    --rule:       #DCD3C2;          /* hairlines */
    --muted:      #6A6F77;          /* secondary text */
    --muted-soft: #9A9FA7;

    /* Type */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container:    1180px;
    --container-narrow: 920px;
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  40px;
    --space-xl:  64px;
    --space-2xl: 96px;
    --space-3xl: 128px;

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

    --shadow-sm: 0 1px 2px rgba(20, 40, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(20, 40, 58, 0.08);
    --shadow-lg: 0 12px 36px rgba(20, 40, 58, 0.10);

    --duration: 240ms;
    --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle paper texture using stacked grids — references the logo background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(31, 58, 82, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    opacity: 0.55;
}

a {
    color: var(--ink);
    text-decoration: none;
    transition: color var(--duration) var(--easing);
}

a:hover,
a:focus-visible {
    color: var(--crimson);
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.display {
    font-size: clamp(2.4rem, 4.6vw + 0.5rem, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.section-title {
    font-size: clamp(1.85rem, 2.6vw + 0.7rem, 2.85rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
    max-width: 26ch;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

p {
    color: var(--ink-soft);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--crimson);
    margin-bottom: var(--space-sm);
}

.lede,
.section-lede {
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 62ch;
}

.section-lede {
    margin-bottom: var(--space-xl);
}

.prose p + p {
    margin-top: var(--space-md);
}

.prose strong {
    color: var(--ink-deep);
}

.gold-accent,
.gold-accent strong {
    color: var(--gold-deep);
}

.ink-accent {
    color: var(--ink);
}

.text-link {
    color: var(--crimson);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    font-weight: 500;
}

.text-link:hover {
    color: var(--ink);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-paper {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.four-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-xl);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: saturate(120%);
    -webkit-backdrop-filter: saturate(120%);
    border-bottom: 1px solid var(--rule);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: 14px;
    padding-bottom: 14px;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo:hover {
    color: inherit;
}

.header-logo-image {
    height: 36px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink);
}

.header-nav a {
    position: relative;
    padding: 4px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--crimson);
    transition: right var(--duration) var(--easing);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
    right: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform var(--duration) var(--easing),
                background-color var(--duration) var(--easing),
                color var(--duration) var(--easing),
                border-color var(--duration) var(--easing),
                box-shadow var(--duration) var(--easing);
    line-height: 1.2;
    white-space: nowrap;
}

.btn-small {
    padding: 9px 16px;
    font-size: 0.88rem;
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--ink-deep);
    border-color: var(--ink-deep);
    color: var(--paper);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--paper-2);
    border-color: var(--ink);
}

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.95;
}

.btn-disabled:hover,
.btn-disabled:focus-visible {
    transform: none;
    box-shadow: none;
}

.btn .badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--gold);
    color: var(--ink-deep);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    margin-left: 4px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0 var(--space-2xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero_aerial.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(251, 248, 243, 0.97) 0%, rgba(251, 248, 243, 0.92) 45%, rgba(251, 248, 243, 0.5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero-content .lede {
    margin-top: var(--space-md);
}

/* ---------- The Problem ---------- */
.stats-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 24px);
    pointer-events: none;
}

.stats-card-eyebrow {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: var(--space-md);
    position: relative;
}

.stat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-figure {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw + 0.5rem, 4.6rem);
    font-weight: 500;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--paper);
    font-weight: 500;
}

.stat-detail {
    color: rgba(251, 248, 243, 0.78);
    font-size: 0.95rem;
    max-width: 36ch;
}

.stat-rule {
    border: none;
    border-top: 1px solid rgba(251, 248, 243, 0.18);
    margin: var(--space-lg) 0;
}

/* ---------- Approach (How Different) ---------- */
.approach-grid {
    margin-bottom: var(--space-xl);
}

.approach-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: var(--space-lg);
    transition: transform var(--duration) var(--easing),
                box-shadow var(--duration) var(--easing),
                border-color var(--duration) var(--easing);
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--ink-soft);
}

.approach-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--crimson);
    margin-bottom: var(--space-md);
    border: 1px solid var(--rule);
}

.callout {
    border-left: 3px solid var(--gold);
    background: var(--paper-2);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.6;
}

.callout p {
    color: var(--ink);
}

/* ---------- Under the Hood ---------- */
.uth-card {
    border-top: 2px solid var(--ink);
    padding-top: var(--space-md);
}

.uth-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

/* ---------- Coverage ---------- */
.counties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.county-card {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: var(--space-lg);
    transition: transform var(--duration) var(--easing),
                border-color var(--duration) var(--easing);
    position: relative;
    overflow: hidden;
}

.county-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--crimson);
}

.county-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink-soft);
}

.county-card h3 {
    font-size: 1.2rem;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.coverage-note {
    margin: var(--space-xl) 0 var(--space-2xl);
    text-align: center;
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.audience-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.audience-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-3);
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--easing);
}

.audience-card:hover .audience-image img {
    transform: scale(1.04);
}

.audience-body {
    padding: var(--space-lg);
}

.audience-body h3 {
    font-size: 1.3rem;
}

/* ---------- About ---------- */
.about-grid {
    align-items: stretch;
}

.about-side {
    background: var(--paper);
    border-left: 3px solid var(--crimson);
    padding: var(--space-xl);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}

.about-side blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.35;
    color: var(--ink-deep);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cred-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--rule);
    padding-top: var(--space-md);
}

.cred-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.cred-figure {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
}

.cred-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ---------- Final CTA ---------- */
.section-cta {
    color: var(--paper);
    overflow: hidden;
    background: var(--ink-deep);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/street_neighborhood.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 40, 58, 0.4), rgba(20, 40, 58, 0.85));
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.section-cta .eyebrow {
    color: var(--gold);
}

.section-cta .section-title,
.section-cta h2 {
    color: var(--paper);
    max-width: 22ch;
}

.section-cta .section-lede {
    color: rgba(251, 248, 243, 0.85);
    margin-bottom: var(--space-md);
}

.section-cta .btn-primary {
    background: var(--paper);
    color: var(--ink-deep);
    border-color: var(--paper);
}

.section-cta .btn-primary:hover,
.section-cta .btn-primary:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink-deep);
}

.section-cta .btn-secondary {
    color: var(--paper);
    border-color: var(--paper);
}

.section-cta .btn-secondary:hover,
.section-cta .btn-secondary:focus-visible {
    background: var(--paper);
    color: var(--ink-deep);
}

.cta-content {
    max-width: 720px;
}

.trust-grid {
    margin-top: var(--space-2xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-grid li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: var(--space-md);
    border-top: 2px solid var(--gold);
}

.trust-figure {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--paper);
    line-height: 1.25;
}

.trust-label {
    font-size: 0.92rem;
    color: rgba(251, 248, 243, 0.78);
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    padding: var(--space-2xl) 0 var(--space-lg);
    color: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    color: var(--muted);
    margin-bottom: var(--space-sm);
    max-width: 40ch;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-copy {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: var(--space-md);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.footer-list a {
    color: var(--muted);
}

.footer-list a:hover {
    color: var(--crimson);
}

.footer-muted {
    color: var(--muted-soft);
    font-style: italic;
}

.footer-disclaimer {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.55;
    border-left: 2px solid var(--rule);
    padding-left: var(--space-sm);
}

.version-info {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--rule);
    font-size: 0.78rem;
    color: var(--muted-soft);
    font-family: 'SFMono-Regular', Menlo, Consolas, 'Courier New', monospace;
    text-align: center;
}

/* ---------- Legal / Policy pages ---------- */
.policy-page {
    background: var(--paper);
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.policy-header {
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--rule);
}

.policy-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.policy-header .last-updated {
    font-size: 0.9rem;
    color: var(--muted);
}

.policy-section {
    margin-bottom: var(--space-xl);
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 2px solid var(--ink);
    padding-top: var(--space-md);
}

.policy-section h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.policy-section p,
.policy-section li {
    color: var(--ink-soft);
    line-height: 1.65;
}

.policy-section p {
    margin-bottom: var(--space-sm);
}

.policy-section ul,
.policy-section ol {
    margin: var(--space-sm) 0 var(--space-md);
    padding-left: var(--space-md);
}

.policy-section li {
    margin-bottom: 8px;
    list-style-type: disc;
    list-style-position: outside;
}

.policy-section ol li {
    list-style-type: decimal;
}

.policy-section strong {
    color: var(--ink-deep);
    font-weight: 600;
}

.policy-section a {
    color: var(--crimson);
    border-bottom: 1px solid currentColor;
}

.highlight-box {
    background: var(--paper-2);
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box p {
    color: var(--ink);
}

.highlight-box strong {
    color: var(--ink-deep);
}

.contact-box {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-box h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.contact-box p {
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.policy-footer {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--rule);
}

.policy-footer a {
    color: var(--crimson);
    font-weight: 500;
}

@media (max-width: 640px) {
    .policy-container {
        padding: 0 18px;
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms var(--easing), transform 700ms var(--easing);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .two-col,
    .audience-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .three-col {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .four-col {
        grid-template-columns: 1fr;
    }

    .counties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .container {
        padding: 0 18px;
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }

    .stats-card,
    .about-side {
        padding: var(--space-lg);
    }

    .counties-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .header-logo-image {
        height: 30px;
    }

    .btn-small {
        padding: 8px 12px;
    }
}
