/* =====================================================================
   Clinical Clarity — compiled design system
   Tokens from DESIGN.md. No CDN, no inline styles.
   ===================================================================== */

:root {
    /* Colors */
    --surface: #fcf8fb;
    --surface-dim: #dcd9dc;
    --surface-bright: #fcf8fb;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f6f3f5;
    --surface-container: #f0edef;
    --surface-container-high: #eae7ea;
    --surface-container-highest: #e4e2e4;
    --on-surface: #1b1b1d;
    --on-surface-variant: #414755;
    --inverse-surface: #303032;
    --inverse-on-surface: #f3f0f2;
    --outline: #717786;
    --outline-variant: #c1c6d7;
    --primary: #0058bc;
    --on-primary: #ffffff;
    --primary-container: #0070eb;
    --on-primary-container: #fefcff;
    --inverse-primary: #adc6ff;
    --secondary: #006a63;
    --on-secondary: #ffffff;
    --secondary-container: #62f9eb;
    --on-secondary-container: #007169;
    --tertiary: #575c63;
    --error: #ba1a1a;
    --error-container: #ffdad6;
    --on-error-container: #93000a;
    --primary-fixed: #d8e2ff;
    --primary-fixed-dim: #adc6ff;
    --secondary-fixed: #62f9eb;
    --background: #fcf8fb;

    /* Typography */
    --font-display: 'Lexend', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing (8px base) */
    --unit: 8px;
    --gutter: 24px;
    --margin-mobile: 20px;
    --margin-desktop: 64px;
    --container-max: 1280px;
    --glass-padding: 24px;

    /* Radii */
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-md: 1.5rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --radius-full: 9999px;

    /* Glass blur (reduced on mobile via media query) */
    --blur-panel: 20px;
    --blur-card: 40px;

    --cta-gradient: linear-gradient(135deg, #0070eb 0%, #0058bc 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--on-surface);
    background-color: var(--surface);
    /* Level 0: soft refractive mesh behind the glass UI */
    background-image:
        radial-gradient(38rem 38rem at 12% -8%, rgba(0, 112, 235, 0.10), transparent 60%),
        radial-gradient(34rem 34rem at 100% 8%, rgba(0, 106, 99, 0.10), transparent 55%),
        radial-gradient(40rem 40rem at 50% 120%, rgba(0, 88, 188, 0.06), transparent 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
    user-select: none;
}
.icon--fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* Accessibility helpers */
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 100;
    background: var(--primary); color: var(--on-primary);
    padding: 10px 18px; border-radius: var(--radius-full);
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

:where(a, button, input, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--margin-mobile);
}
.section { padding-block: 56px; }
.section--tight { padding-block: 32px; }
.stack > * + * { margin-top: var(--gutter); }

/* ---------- Typography roles ---------- */
.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--primary);
}
.display {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: var(--on-surface);
}
.headline {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--on-surface);
}
.body-lg { font-size: 18px; line-height: 28px; color: var(--on-surface-variant); }
.text-muted { color: var(--on-surface-variant); }
.text-faint { color: var(--outline); }

/* ---------- Glass surfaces ---------- */
.glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(var(--blur-panel));
    -webkit-backdrop-filter: blur(var(--blur-panel));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
}
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-card));
    -webkit-backdrop-filter: blur(var(--blur-card));
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-lg);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1),
                box-shadow .3s cubic-bezier(.4, 0, .2, 1),
                background .3s cubic-bezier(.4, 0, .2, 1);
}
a.glass-card:hover, .glass-card--hover:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -15px rgba(0, 88, 188, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body); font-weight: 600; font-size: 14px;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .3s ease, background .25s ease, color .25s ease;
    text-align: center;
}
.btn:active { transform: scale(.96); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { color: var(--on-primary); box-shadow: 0 10px 24px -10px rgba(0, 88, 188, 0.55); }
.btn--ghost {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--primary);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.7); }
.btn--light { background: #fff; color: var(--primary); box-shadow: 0 16px 30px -12px rgba(0,0,0,.25); }
.btn--light:hover { background: var(--surface-container-lowest); }

/* Gradient CTA with shimmer sweep */
.cta-gradient {
    background: var(--cta-gradient);
    position: relative;
    overflow: hidden;
    color: var(--on-primary);
}
.cta-gradient::after {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: rotate(45deg);
    transition: .6s;
    pointer-events: none;
}
.cta-gradient:hover::after { left: 100%; top: 100%; }
@media (prefers-reduced-motion: reduce) {
    .cta-gradient::after { transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Header / nav ---------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 12px var(--margin-mobile);
    background: rgba(252, 248, 251, 0.6);
    backdrop-filter: blur(var(--blur-panel));
    -webkit-backdrop-filter: blur(var(--blur-panel));
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 20px -12px rgba(0, 0, 0, 0.2);
}
.site-header__logo img { height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { color: var(--on-surface-variant); font-size: 15px; transition: color .2s ease; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--primary); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__cta {
    display: inline-flex; flex-direction: column; align-items: center; line-height: 1.15;
    padding: 10px 22px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 14px; box-shadow: 0 10px 24px -12px rgba(0, 88, 188, 0.6);
}
.header__cta small { font-size: 10px; font-weight: 400; opacity: .85; }
.nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: transparent; border: 0; color: var(--primary);
}
.nav-desktop { display: none; }

/* Mobile slide-down menu */
.nav-mobile {
    position: fixed; inset: 64px 0 auto 0; z-index: 49;
    display: none; flex-direction: column; gap: 4px;
    padding: 16px var(--margin-mobile) 24px;
    background: rgba(252, 248, 251, 0.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.3);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 14px 8px; font-size: 16px; color: var(--on-surface); border-radius: var(--radius-sm); }
.nav-mobile a:hover { background: rgba(255, 255, 255, 0.6); color: var(--primary); }
.nav-mobile .btn { margin-top: 12px; }

/* ---------- Page shell ---------- */
.main { padding-top: 96px; }
.page-hero { padding-top: 120px; }

/* ---------- Spacing utilities ---------- */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ---------- Hero ---------- */
.hero__card { padding: var(--glass-padding); overflow: hidden; }
.hero__inner { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.hero__copy { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.hero__title { margin-top: 8px; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__note {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: var(--outline);
}
.hero__note .material-symbols-outlined { font-size: 16px; }
.hero__media { position: relative; width: 100%; }
.hero__photo {
    aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
    border: 4px solid #fff; box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.45);
    position: relative; z-index: 1;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero__glow { position: absolute; width: 128px; height: 128px; border-radius: 50%; filter: blur(48px); z-index: 0; }
.hero__glow--a { bottom: -24px; right: -24px; background: rgba(0, 88, 188, 0.18); }
.hero__glow--b { top: -24px; left: -24px; background: rgba(0, 106, 99, 0.18); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 16px 20px; }
.stat__value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--primary); }
.stat__label { font-size: 13px; color: var(--outline); }

/* ---------- About ---------- */
.about { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.about__media {
    width: 100%; aspect-ratio: 16 / 9; display: grid; place-items: center; text-align: center;
    padding: var(--glass-padding);
}
.about__media .material-symbols-outlined { font-size: 56px; color: rgba(0, 88, 188, 0.3); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head p { margin-top: 8px; color: var(--on-surface-variant); }
.section-head--row {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; text-align: left;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--gutter); }
.grid--services { grid-template-columns: 1fr; }
.grid--blog { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }

/* ---------- Cards ---------- */
.service-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: var(--glass-padding); gap: 8px; height: 100%;
}
.service-card__icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: grid; place-items: center; margin-bottom: 8px;
}
.service-card__icon .material-symbols-outlined { font-size: 30px; }
.icon-bubble--primary { background: rgba(0, 88, 188, 0.1); color: var(--primary); }
.icon-bubble--secondary { background: rgba(0, 106, 99, 0.1); color: var(--secondary); }
.service-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.service-card p { color: var(--on-surface-variant); font-size: 15px; }

.blog-card { display: flex; flex-direction: column; overflow: hidden; height: 100%; }
.blog-card__media {
    aspect-ratio: 16 / 9; background: var(--surface-container-high);
    display: grid; place-items: center; overflow: hidden;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__media .material-symbols-outlined { font-size: 44px; color: rgba(113, 119, 134, 0.35); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); }
.blog-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.3; }
.blog-card__excerpt { font-size: 14px; color: var(--on-surface-variant); flex: 1; }
.blog-card__more { font-size: 13px; font-weight: 600; color: var(--primary); }
.blog-card:hover .blog-card__more { text-decoration: underline; }

.review-card { padding: var(--glass-padding); }
.review-card__stars { display: flex; gap: 2px; color: var(--secondary); margin-bottom: 16px; }
.review-card__stars .material-symbols-outlined { font-size: 18px; }
.review-card__quote { font-style: italic; color: var(--on-surface-variant); margin-bottom: 20px; }
.review-card__person { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    font-weight: 700; flex-shrink: 0;
}
.avatar--primary { background: var(--primary-fixed); color: var(--primary); }
.avatar--secondary { background: var(--secondary-fixed); color: var(--secondary); }
.review-card__name { display: block; font-weight: 600; }
.review-card__date { font-size: 13px; color: var(--outline); }

/* ---------- Tinted section ---------- */
.section--tint { background: var(--surface-container-low); }

/* ---------- Link-with-arrow ---------- */
.arrow-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; white-space: nowrap; }
.arrow-link:hover { text-decoration: underline; }
.arrow-link .material-symbols-outlined { font-size: 18px; }

/* ---------- Final CTA band ---------- */
.cta-band { border-radius: var(--radius-lg); padding: 48px 24px; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin-bottom: 16px; }
.cta-band p { font-size: 17px; opacity: .92; max-width: 620px; margin: 0 auto 32px; }
.cta-band__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-band__sub { font-size: 13px; opacity: .8; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span {
    min-width: 44px; height: 44px; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-full); font-weight: 600;
    background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.6); color: var(--on-surface-variant);
}
.pagination a:hover { color: var(--primary); }
.pagination .is-current { background: var(--cta-gradient); color: var(--on-primary); border-color: transparent; }

/* ---------- Prose (rendered post/page content) ---------- */
.prose { color: var(--on-surface-variant); font-size: 17px; line-height: 1.75; }
.prose > * + * { margin-top: 1.1em; }
.prose h1, .prose h2, .prose h3, .prose h4 {
    font-family: var(--font-display); color: var(--on-surface); line-height: 1.25;
    margin-top: 1.6em; font-weight: 600;
}
.prose h2 { font-size: 26px; }
.prose h3 { font-size: 21px; }
.prose p { margin: 0; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose img { border-radius: var(--radius-md); margin-inline: auto; }
.prose blockquote {
    border-left: 4px solid var(--primary); padding-left: 18px; color: var(--on-surface);
    font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--outline-variant); padding: 10px 12px; text-align: left; }
/* Neutralise leftover Elementor wrappers (we don't load Elementor CSS) */
.prose [class*="elementor"] { all: revert; }

/* ---------- Single post ---------- */
.post-meta { display: inline-flex; align-items: center; gap: 8px; color: var(--outline); font-size: 14px; }
.post-meta .material-symbols-outlined { font-size: 16px; }
.single__cover { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius-lg); overflow: hidden; }
.single__content { padding: clamp(24px, 4vw, 48px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--gutter); }
.contact-info { padding: var(--glass-padding); display: flex; flex-direction: column; gap: 22px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__item .material-symbols-outlined { color: var(--primary); }
.contact-info__item span.label { display: block; font-size: 13px; color: var(--outline); }
.contact-info__item a, .contact-info__item p { color: var(--on-surface); font-weight: 500; }
.contact-form { padding: var(--glass-padding); display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: var(--on-surface); }
.field .req { color: var(--error); }
.input, .textarea {
    width: 100%; padding: 12px 16px; font: inherit;
    color: var(--on-surface);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--outline-variant); border-radius: var(--radius-sm);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .textarea:focus {
    background: #fff; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 88, 188, 0.15); outline: none;
}
.textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--outline); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; }
.alert--ok { background: rgba(0, 106, 99, 0.12); color: var(--on-secondary-container); }
.alert--err { background: var(--error-container); color: var(--on-error-container); }

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 64px; padding: 48px var(--margin-mobile);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(var(--blur-panel)); -webkit-backdrop-filter: blur(var(--blur-panel));
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.site-footer__inner {
    max-width: var(--container-max); margin-inline: auto;
    display: flex; flex-direction: column; gap: 28px; align-items: center; text-align: center;
}
.site-footer__top { display: flex; flex-direction: column; gap: 24px; align-items: center; width: 100%; }
.site-footer__logo img { height: 52px; width: auto; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer-links a { color: var(--on-surface-variant); transition: color .2s ease; }
.footer-links a:hover { color: var(--primary); }
.site-footer__copy { font-size: 14px; color: var(--on-surface-variant); opacity: .7; }

/* ---------- Floating WhatsApp button (admin-controlled) ---------- */
.wa-float {
    position: fixed; bottom: var(--wa-offset, 24px); z-index: 60;
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; background: var(--wa-color, #25D366);
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float--right { right: max(16px, env(safe-area-inset-right)); }
.wa-float--left  { left: max(16px, env(safe-area-inset-left)); }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.5); }
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-float--pulse { animation: waPulse 2.4s ease-in-out infinite; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4), 0 0 0 12px rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-float--pulse { animation: none; } }
@media (max-width: 767px) { .wa-float--no-mobile { display: none; } }
@media (min-width: 768px) { .wa-float--no-desktop { display: none; } }

/* =====================================================================
   Responsive — mobile-first; enhance upward. Verified from 320px.
   ===================================================================== */

/* Slightly reduce blur on small screens for performance (per DESIGN.md). */
@media (max-width: 767px) {
    :root { --blur-card: 18px; --blur-panel: 12px; }

    /* Center and constrain the hero portrait so it doesn't span edge-to-edge. */
    .hero__media { max-width: 360px; margin-inline: auto; }
    .hero__photo { aspect-ratio: 3 / 4; }
    .hero__photo img { object-position: center top; }
}

@media (min-width: 480px) {
    .grid--blog { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .container { padding-inline: var(--margin-desktop); }
    .site-header { padding: 12px var(--margin-desktop); }
    .site-footer { padding-inline: var(--margin-desktop); }
    .nav-mobile { display: none !important; }
    .nav-desktop { display: flex; align-items: center; gap: 32px; }
    .nav-toggle { display: none; }
    .section { padding-block: 72px; }

    .display { font-size: 44px; line-height: 52px; letter-spacing: -0.02em; }

    .hero__inner { flex-direction: row; gap: 48px; }
    .hero__copy, .hero__media { width: 50%; }

    .about { flex-direction: row; }
    .about__col { flex: 1; }
    .about__col--media { order: 2; }

    .grid--services { grid-template-columns: repeat(3, 1fr); }
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .site-footer__top { flex-direction: row; justify-content: space-between; }
    .site-footer__inner { text-align: left; }

    .contact-grid { grid-template-columns: 1fr 1fr; }
    .cta-band { padding: 56px 40px; }
    .cta-band h2 { font-size: 34px; }
}

@media (min-width: 1024px) {
    .grid--blog { grid-template-columns: repeat(4, 1fr); }
    .display { font-size: 48px; line-height: 56px; }
    .site-footer__logo img { height: 60px; }
}
