/* ============================================================================
   SOAR Initiative — design system
   Brand extracted from the original site: teal-forward palette, Roboto / Roboto
   Slab / Montserrat. Edit the tokens in :root to restyle the whole site.
   ========================================================================== */

:root {
    /* Brand colours */
    --teal:        #008080;
    --teal-light:  #22b3a4;
    --teal-dark:   #006666;
    --ink:         #002626;   /* near-black teal for text */
    --blue:        #254099;   /* secondary accent */

    /* Neutrals */
    --bg:          #ffffff;
    --bg-muted:    #f4f7f7;
    --border:      #e2e8e8;
    --text:        #243534;
    --text-muted:  #5c6b6b;
    --white:       #ffffff;

    /* Typography */
    --font-body:    'Roboto', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', 'Roboto Slab', Georgia, serif;

    /* Scale */
    --container: 1160px;
    --radius:    10px;
    --radius-sm: 6px;
    --shadow:    0 6px 24px rgba(0, 38, 38, .08);
    --shadow-lg: 0 18px 48px rgba(0, 38, 38, .14);
    --gap:       clamp(1.5rem, 4vw, 3rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; cursor: url('/assets/img/cursor-logo.png') 16 16, auto; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a, button, .btn, .card, .nav-toggle, .site-nav__link, .partner-logo,
input[type="submit"], select, .card-grid a, .project-card__image a,
.site-footer a, .social-links a { cursor: url('/assets/img/cursor-logo.png') 16 16, pointer; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 .6em;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }

.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
    padding: .6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; font-family: var(--font-heading); font-weight: 600;
    font-size: .95rem; letter-spacing: .01em; padding: .8rem 1.6rem;
    border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--light { background: #fff; color: var(--teal-dark); }
.btn--light:hover { background: var(--bg-muted); color: var(--teal-dark); }
.btn-row, .btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }

/* ---------- Hotline bar ---------- */
.hotline-bar {
    background: var(--teal-dark);
    color: #fff;
    font-size: .85rem;
    padding: .35rem 0;
    position: relative;
    z-index: 101;
}
.hotline-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
}
.hotline-bar__icon {
    font-size: 1rem;
}
.hotline-bar__text {
    color: rgba(255,255,255,.92);
}
.hotline-bar__number {
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}
.hotline-bar__number:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
    transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 30px rgba(0,38,38,.1); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.site-header__brand img { width: 150px; }
.site-nav__list { list-style: none; display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; }
.site-nav__item { position: relative; }
.site-nav__link {
    display: inline-block; padding: .6rem .9rem; color: var(--ink); font-weight: 500;
    font-size: .95rem; border-radius: var(--radius-sm);
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--teal); background: var(--bg-muted); }
.site-nav__link.btn--primary { color: #fff; }
.site-nav__link.btn--primary:hover { color: #fff; }

.site-nav__submenu {
    list-style: none; margin: 0; padding: .4rem; position: absolute; top: 100%; left: 0;
    min-width: 230px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.site-nav__item.has-children:hover .site-nav__submenu,
.site-nav__item.has-children:focus-within .site-nav__submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__submenu a { display: block; padding: .55rem .8rem; border-radius: var(--radius-sm); color: var(--text); font-size: .92rem; }
.site-nav__submenu a:hover { background: var(--bg-muted); color: var(--teal); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .5rem;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 3px;
    background: var(--ink);
    border-radius: 3px;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1),
                opacity .2s ease,
                background .2s ease;
    transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--muted { background: var(--bg-muted); }
.section--narrow .container { max-width: 760px; }
.section__eyebrow { color: var(--teal); font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: .4rem; }
.section__heading { margin-bottom: .8rem; }
.section__intro { color: var(--text-muted); font-size: 1.1rem; max-width: 720px; margin: 0 auto 2.5rem; }

.prose { font-size: 1.05rem; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .4rem; }
.prose a { text-decoration: underline; }

/* ---------- Hero ---------- */
.hero { background: var(--bg-muted); padding: clamp(3.5rem, 9vw, 7rem) 0; }
.hero--image { color: #fff; background-size: cover; background-position: center; }
.hero--image .hero__title, .hero--image .hero__subtitle { color: #fff; }
.hero--center { text-align: center; }
.hero--center .hero__inner { margin: 0 auto; }
.hero__inner { max-width: 760px; }
.hero__eyebrow { color: var(--teal); font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; }
.hero--image .hero__eyebrow { color: var(--teal-light); }
.hero__title { margin-bottom: .5rem; }
.hero__subtitle { font-size: 1.2rem; color: var(--text-muted); }
.hero--image .hero__subtitle { color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero--center .hero__actions { justify-content: center; }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }
.two-col--reverse .two-col__media { order: -1; }
.two-col__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- Card grid ---------- */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
    color: var(--text); display: block;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__avatar {
    aspect-ratio: 1 / 1; width: 100%; max-width: 120px; margin: 1.5rem auto 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    color: #fff; font-size: 2.4rem; font-weight: 700; font-family: var(--font-heading);
    border-radius: 50%; user-select: none;
}
.card__body { padding: 1.4rem; }
.card__title { margin-bottom: .4rem; }
.card__text { color: var(--text-muted); margin: 0; font-size: .97rem; }

/* ---------- Project cards (with progress bars) ---------- */
.project-card .card__body { padding-top: .8rem; }
.project-card__logo {
    padding: 1rem 1.4rem .2rem; display: flex; align-items: center;
}
.project-card__logo img { max-height: 36px; width: auto; }
.project-card__image { display: block; overflow: hidden; }
.project-card__image img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover;
    transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.project-card:hover .project-card__image img { transform: scale(1.08); }
.project-card__status {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: .8rem; font-size: .85rem;
}
.project-card__label { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.project-card__percent { color: var(--teal); font-weight: 700; }
.progress-bar {
    width: 100%; height: 8px; background: var(--border); border-radius: 4px;
    margin-top: .4rem; overflow: hidden;
}
.progress-bar__fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, var(--teal-light), var(--teal));
    transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}
[data-stagger].is-visible .progress-bar__fill {
    /* animated width is set inline; the transition handles the rest */
}

/* ---------- Partners grid ---------- */
.partners-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem; align-items: center; justify-items: center;
}
.partner-logo {
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; background: #fff; border-radius: var(--radius-sm);
    border: 1px solid var(--border); width: 100%; min-height: 80px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.partner-logo:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow); }
.partner-logo img { max-height: 60px; width: auto; filter: grayscale(.3); opacity: .8; transition: filter .3s, opacity .3s; }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ---------- Stats grid ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.stat {
    display: grid;
    gap: .3rem;
    padding: 1.5rem;
}
.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--teal);
    line-height: 1.1;
}
.stat__label {
    font-size: .95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- CTA ---------- */
.cta { background: linear-gradient(120deg, var(--teal), var(--teal-dark)); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta h2 { color: #fff; margin: 0 0 .3em; }
.cta p { color: rgba(255,255,255,.9); margin: 0; }
.cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.2rem; }
.form__field { display: grid; gap: .4rem; }
.form__field label { font-weight: 600; font-family: var(--font-heading); font-size: .95rem; color: var(--ink); }
.form__field .req { color: #d9534f; }
.form input, .form textarea {
    width: 100%; padding: .8rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font: inherit; color: var(--text); background: #fff;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,128,128,.15); }
.form__field--error input, .form__field--error textarea { border-color: #d9534f; }
.form__error { color: #c0392b; font-size: .85rem; margin: 0; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.alert--success { background: #e6f4ea; color: #1e7e34; border: 1px solid #b7e0c2; }
.alert--error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfdcdc; margin-top: auto; }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--gap); padding: 3.5rem 1.25rem; }
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer img { filter: brightness(0) invert(1); opacity: .92; margin-bottom: 1rem; }
.site-footer p { color: #9fb3b3; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: #cfdcdc; }
.site-footer a:hover { color: var(--teal-light); }
.site-footer__connect .btn { margin-top: 1.2rem; }
.site-footer__newsletter p { font-size: .9rem; margin-bottom: .8rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input[type="email"] {
    flex: 1; min-width: 0; padding: .6rem .8rem; border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm); background: rgba(255,255,255,.1); color: #fff;
    font: inherit; font-size: .88rem;
}
.newsletter-form input[type="email"]::placeholder { color: #8ca3a3; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--teal-light); }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 1.2rem 1.25rem; }
.site-footer__bar p { margin: 0; font-size: .88rem; color: #8ca3a3; text-align: center; }
.site-footer__reg { color: var(--teal-light); font-weight: 600; }

/* ============================================================================
   Animations system
   ========================================================================== */

/* ── Keyframes ── */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(.88); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,128,128,.4); }
    50%      { box-shadow: 0 0 0 12px rgba(0,128,128,0); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ── Reveal classes (set by IntersectionObserver) ── */

.anim-hidden {
    opacity: 0;
    will-change: opacity, transform;
}

.anim-fade-in-up     { animation: fadeInUp .7s cubic-bezier(.22,.61,.36,1) forwards; }
.anim-fade-in-down   { animation: fadeInDown .6s ease-out forwards; }
.anim-fade-in-left   { animation: fadeInLeft .7s cubic-bezier(.22,.61,.36,1) forwards; }
.anim-fade-in-right  { animation: fadeInRight .7s cubic-bezier(.22,.61,.36,1) forwards; }
.anim-scale-in       { animation: scaleIn .6s cubic-bezier(.22,.61,.36,1) forwards; }
.anim-slide-down     { animation: slideDown .5s ease-out forwards; }

/* Stagger helpers — delay is set via inline style (--delay: Xs) */
.anim-stagger-child  { animation: fadeInUp .6s cubic-bezier(.22,.61,.36,1) both; }

/* ── Page entrance (main content fade-in) ── */
.page-entrance {
    animation: fadeInUp .5s cubic-bezier(.22,.61,.36,1);
}

/* ── Per-section entrance ── */

.hero__inner > * {
    opacity: 0;
    animation: fadeInUp .7s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__inner > .hero__eyebrow { animation-delay: .1s; }
.hero__inner > .hero__title   { animation-delay: .25s; }
.hero__inner > .hero__subtitle{ animation-delay: .4s; }
.hero__inner > .hero__actions { animation-delay: .55s; }

/* ── Hover effects ── */

.btn {
    position: relative;
    overflow: hidden;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1),
                background .2s ease,
                color .2s ease,
                border-color .2s ease,
                box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn--primary:hover { box-shadow: 0 8px 28px rgba(0,128,128,.3); }
.btn--outline:hover { box-shadow: 0 8px 28px rgba(0,128,128,.15); }

/* Ripple on click */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,.25) 10%, transparent 10%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0;
    transition: background-size .5s, opacity .4s;
    opacity: 0;
    pointer-events: none;
}
.btn:active::after {
    background-size: 1000%;
    opacity: 1;
    transition: none;
}

.card {
    transition: transform .3s cubic-bezier(.34,1.56,.64,1),
                box-shadow .3s ease;
}
a.card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.card__media img {
    transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.card:hover .card__media img {
    transform: scale(1.08);
}

/* Nav link hover underline */
.site-nav__link {
    position: relative;
    transition: color .2s ease, background .2s ease;
}
.site-nav__link::after {
    content: '';
    position: absolute;
    left: .9rem; right: .9rem; bottom: .2rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

/* Social icon hover */
.site-footer a[href*="facebook"]:hover,
.site-footer a[href*="twitter"]:hover,
.site-footer a[href*="instagram"]:hover {
    display: inline-block;
    animation: float 1s ease-in-out infinite;
}

/* CTA subtle gradient shift */
.cta {
    background-size: 200% 200%;
    animation: shimmer 6s ease-in-out infinite;
}

/* Section reveal (applied via data-animate) */
[data-animate].is-visible .anim-stagger-child:nth-child(1) { animation-delay: 0s; }
[data-animate].is-visible .anim-stagger-child:nth-child(2) { animation-delay: .12s; }
[data-animate].is-visible .anim-stagger-child:nth-child(3) { animation-delay: .24s; }
[data-animate].is-visible .anim-stagger-child:nth-child(4) { animation-delay: .36s; }
[data-animate].is-visible .anim-stagger-child:nth-child(5) { animation-delay: .48s; }
[data-animate].is-visible .anim-stagger-child:nth-child(6) { animation-delay: .6s; }
[data-animate].is-visible .anim-stagger-child:nth-child(7) { animation-delay: .72s; }
[data-animate].is-visible .anim-stagger-child:nth-child(8) { animation-delay: .84s; }

/* Prefers-reduced-motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .anim-hidden { opacity: 1; }
}

/* ---------- Extra small screens (under 480px) ---------- */
@media (max-width: 480px) {
    .hotline-bar__text { display: none; }
    .hotline-bar__number { font-size: .85rem; }
    .site-header__brand img { width: 120px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .stat__number { font-size: 1.5rem; }
    .stat__label { font-size: .8rem; }
    .hero__title { font-size: 1.5rem; }
    .hero__subtitle { font-size: 1rem; }
    .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
    .card-grid--2 { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .two-col, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr 1fr; }
    .two-col--reverse .two-col__media { order: 0; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav { position: fixed; inset: 78px 0 auto 0; background: #fff; border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .25s ease; max-height: calc(100vh - 78px); overflow-y: auto; }
    .site-nav.is-open { transform: translateY(0); }
    .site-nav__list { flex-direction: column; align-items: stretch; padding: 1rem; gap: .2rem; }
    .site-nav__link { padding: .8rem .9rem; font-size: 1rem; } /* thumb-friendly tap targets */
    .site-nav__submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 1rem; }
    .two-col, .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .cta__inner { flex-direction: column; align-items: flex-start; }
    .hero { text-align: center; }
    .hero__inner { margin: 0 auto; }
    .hero__actions { justify-content: center; }
    .btn { padding: .75rem 1.4rem; font-size: 1rem; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; } /* thumb-friendly buttons */
    .hotline-bar { font-size: .8rem; padding: .5rem 0; }
    .hotline-bar__inner { gap: .3rem; }
    .section { padding: 2.5rem 0; }
    .newsletter-form { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 1rem; }
    .stat__number { font-size: 1.8rem; }
    .two-col__media { margin-top: 1.5rem; }
    .two-col--reverse .two-col__media { order: 0; }
}
