/* ============================================================
   MAMW — Martial Arts Marketing Websites
   Main Stylesheet
   Design: Light/professional, gold (#b8860b) + navy (#1a2332)
   Fonts: Syne (headings), DM Sans (body)
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
/* Bricolage Grotesque: editorial display — headlines & numbers   */
/* Inter: neutral, premium — body copy & UI                      */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-pale: #f5edd8;
    --navy: #1a2332;
    --navy-mid: #263248;
    --navy-light: #344563;
    --white: #ffffff;
    --off-white: #f9f7f4;
    --cream: #f2ede4;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #999999;
    --gray-600: #666666;
    --gray-800: #333333;
    --text: #1e2028;

    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .10);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);

    --max-width: 1140px;
    --section-pad: 88px 24px;
    --transition: .25s ease;
}

/* ── Reset / Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

ul,
ol {
    list-style: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    line-height: 1.12;
    color: var(--navy);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 640px;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-400);
    font-size: .9rem;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
}

.section {
    padding: var(--section-pad);
}

.section--cream {
    background: var(--cream);
}

.section--navy {
    background: var(--navy);
}

.section--gold-pale {
    background: var(--gold-pale);
}

.section--white {
    background: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, .35);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-lg {
    padding: 17px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: .85rem;
}

/* ── Section Labels ────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-label--light {
    color: rgba(255, 255, 255, .7);
}

.section-head {
    margin-bottom: 16px;
}

.section-intro {
    margin-bottom: 48px;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card--navy {
    background: var(--navy-mid);
    border-color: var(--navy-light);
    color: var(--white);
}

.card--navy h3,
.card--navy h4 {
    color: var(--white);
}

.card--navy p {
    color: rgba(255, 255, 255, .75);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.card--navy .card-icon {
    background: rgba(184, 134, 11, .18);
}

/* ── Navigation ────────────────────────────────────────────── */
/* Two-tier nav: .nav-utility (top bar) + .nav-inner (main bar)  */
/* Background is ALWAYS WHITE. No scroll color change.           */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    width: 100%;
}

/* ── Top utility bar — navy strip above white nav ── */
/* Always navy regardless of scroll position          */
.nav-utility {
    width: 100%;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Utility inner: full-bleed with generous horizontal padding, no max-width cap */
.nav-utility-inner {
    width: 100%;
    padding-inline: 40px;
    /* edge-to-edge with breathing room */
    height: 40px;
    /* slightly taller — scales with bigger nav */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-util-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-util-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-util-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .55);
    /* readable on both dark + navy bg */
    font-size: .82rem;
    /* scaled up from .73 */
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.nav-util-item i {
    color: var(--gold-light);
    font-size: .78rem;
}

.nav-util-item:hover {
    color: rgba(255, 255, 255, .9);
}

.nav-util-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .14);
    flex-shrink: 0;
}

/* ── Main nav bar — logo flush left, links immediately after ── */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 110px;
    width: 90%;
    margin-inline: auto;
    padding-inline: 0;
    gap: 0;
    transition: color .35s ease;
}

/* Spacer pushes CTA to far right */
.nav-spacer {
    flex: 1;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    /* No filter — logo shows in its natural colours on white nav */
}

.nav-logo-mark {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-mark span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: .04em;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-logo-text strong {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    /* navy text on white nav */
}

.nav-logo-text small {
    font-size: .72rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    /* small gap after logo */
    margin-right: 15px;
    /* gap before CTA buttons */
    flex-shrink: 0;
}

.nav-links a {
    font-size: 1.097rem;
    font-weight: 500;
    color: var(--navy);
    /* navy text on white nav */
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: .01em;
    transition: color var(--transition);
    background: none !important;
}

.nav-links a:hover {
    color: var(--gold);
    background: none !important;
}

.nav-links a.active {
    color: var(--gold);
    background: none !important;
}

/* All parent nav links: color change only on hover, no background */
.nav-links a:hover {
    color: var(--gold);
    background: none !important;
}

.nav-links a.active {
    color: var(--gold);
    background: none !important;
}

/* Ads & Marketing — standalone after CTA button */
.nav-mama--standalone {
    display: none;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.097rem;
    font-weight: 600;
    color: var(--gold);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 8px;
    letter-spacing: .01em;
    transition: text-decoration-color var(--transition);
    text-underline-offset: 3px;
}

.nav-mama--standalone:hover {
    background: none !important;
    color: var(--gold) !important;
    text-decoration: underline;
    text-decoration-color: var(--gold);
}

@media (min-width: 900px) {
    .nav-mama--standalone {
        display: inline-flex;
    }
}

/* Ads & Marketing inside nav-links list (hidden — kept for fallback) */
.nav-links .nav-mama {
    color: var(--gold);
    font-weight: 600;
}

.nav-links .nav-mama:hover {
    background: var(--gold) !important;
    color: #fff;
    border-radius: var(--radius-sm);
}

/* Desktop CTA — no icon, right side */
.nav-cta {
    display: none;
    background: var(--gold) !important;
    color: #fff !important;
    border-color: var(--gold) !important;
    font-weight: 700;
    padding: 14px 28px !important;
    font-size: .95rem !important;
    letter-spacing: .01em;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 0;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    color: var(--navy) !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: none;
}

.nav-toggle:hover {
    background: none;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    /* navy on white nav */
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Hide middle line — two-line hamburger */
.nav-toggle span:nth-child(2) {
    display: none;
}

/* Open state: two lines cross into an X */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile menu drawer — smooth slide */
#mobile-menu {
    display: block;
    /* always in flow so we can measure height */
    flex-direction: column;
    background: var(--white);
    padding: 0 24px;
    gap: 2px;
    overflow: hidden;
    /* animated properties */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height .36s cubic-bezier(.4, 0, .2, 1),
        opacity .28s ease,
        visibility .36s ease;
    /* keep flex layout inside */
    display: flex;
}

#mobile-menu.open {
    max-height: 640px;
    /* larger than any realistic menu */
    opacity: 1;
    visibility: visible;
}

/* Spacer at bottom */
#mobile-menu::after {
    content: '';
    display: block;
    height: 16px;
    flex-shrink: 0;
}

#mobile-menu a {
    font-size: 1.045rem;
    font-weight: 500;
    color: var(--navy);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    transition: color var(--transition);
}

#mobile-menu a:hover,
#mobile-menu a.active {
    color: var(--gold);
    background: none;
}

#mobile-menu .nav-mama {
    color: var(--gold);
    font-weight: 600;
}

#mobile-menu .mob-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border-bottom: none;
}

#mobile-menu .mob-cta:hover {
    background: var(--gold-light);
    color: var(--navy) !important;
}

/* Mobile Services accordion */
.mob-has-dropdown {
    display: flex;
    flex-direction: column;
}

.mob-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-bottom: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.045rem;
    font-weight: 500;
    color: var(--navy);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    text-align: left;
    transition: color var(--transition);
}

.mob-dropdown-trigger:hover,
.mob-dropdown-trigger.open {
    color: var(--gold);
}

.mob-dropdown-trigger.active {
    color: var(--gold);
}

.mob-chevron {
    font-size: .65rem;
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.mob-dropdown-trigger.open .mob-chevron {
    transform: rotate(180deg);
}

.mob-dropdown-panel {
    display: none;
    flex-direction: column;
    background: var(--gray-100);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    overflow: hidden;
    margin-bottom: 2px;
}

.mob-dropdown-panel.open {
    display: flex;
}

.mob-dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem !important;
    color: var(--navy) !important;
    padding: 10px 20px !important;
    border-bottom: 1px solid var(--gray-200) !important;
    border-radius: 0 !important;
}

.mob-dropdown-panel a:last-child {
    border-bottom: none !important;
}

.mob-dropdown-panel a:hover {
    background: var(--gold-pale) !important;
    color: var(--gold) !important;
}

.mob-dropdown-panel a i {
    color: var(--gold);
    font-size: .8rem;
    width: 14px;
    text-align: center;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════
   DROPDOWN — Services mega-dropdown
════════════════════════════════════════════════════════════ */
.nav-has-dropdown {
    position: relative;
    /* Extend hitbox down so cursor doesn't leave the element
     when travelling from trigger to dropdown panel */
    padding-bottom: 12px;
    margin-bottom: -12px;
}

/* Desktop Services trigger — button styled to match nav links */
.nav-link-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.097rem;
    font-weight: 500;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: .01em;
    transition: color var(--transition);
    line-height: 1;
}

.nav-link-btn:hover,
.nav-has-dropdown.open .nav-link-btn {
    color: var(--gold);
}

.nav-link-btn.active {
    color: var(--gold);
}

.nav-chevron {
    font-size: .65rem;
    margin-left: 5px;
    transition: transform .2s ease;
    vertical-align: middle;
}

.nav-has-dropdown.open>button .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-6px);
    width: 560px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 200;
    pointer-events: none;
    padding: 0;
    margin-top: 0;
}

/* CSS :hover on the parent <li> keeps dropdown open */
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-has-dropdown:hover .nav-link-btn,
.nav-has-dropdown.open .nav-link-btn {
    color: var(--gold);
}

.nav-has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Invisible hover bridge — fills gap between trigger and dropdown panel */
.nav-has-dropdown .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 16px;
}

.nav-dd-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
    color: var(--text);
}

.nav-dd-item:hover {
    background: var(--gold-pale);
    color: var(--text);
}

.nav-dd-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dd-item:hover .nav-dd-icon {
    background: var(--gold);
    color: #fff;
}

.nav-dd-item strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
    letter-spacing: -.01em;
}

.nav-dd-item span {
    display: block;
    font-size: .78rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* Mobile sub-items */
.mob-sub {
    padding-left: 28px !important;
    font-size: .85rem !important;
    color: var(--gray-600) !important;
    border-bottom: 1px solid var(--gray-100) !important;
}

/* Hide utility bar on small screens — too cramped */
@media (max-width: 767px) {
    .nav-utility {
        display: none;
    }
}

/* On medium screens show utility bar but trim the left tagline */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-util-left {
        display: none;
    }
}

/* ── Footer ────────────────────────────────────────────────── */
#site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .75);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: .9rem;
    margin-top: 12px;
    color: rgba(255, 255, 255, .6);
    max-width: 280px;
}

/* Mobile: center footer brand + nav */
@media (max-width: 899px) {
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-nav ul {
        align-items: center;
    }
}

.footer-nav h4 {
    font-family: var(--font-body);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, .25);
    font-size: .9rem;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2a3a56 100%);
    color: var(--white);
    padding: 96px 24px 88px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184, 134, 11, .12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at -10% 80%, rgba(184, 134, 11, .08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, .15);
    border: 1px solid rgba(184, 134, 11, .3);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.hero .lead {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-social-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

.hero-social-proof-avatars {
    display: flex;
}

.hero-social-proof-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-left: -8px;
}

.hero-social-proof-avatars span:first-child {
    margin-left: 0;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Mock website card in hero */
.mock-site {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mock-site-bar {
    background: var(--gray-100);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dot:nth-child(1) {
    background: #ff5f57;
}

.mock-dot:nth-child(2) {
    background: #febc2e;
}

.mock-dot:nth-child(3) {
    background: #28c840;
}

.mock-url {
    margin-left: 8px;
    background: var(--white);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: .72rem;
    color: var(--gray-400);
    flex: 1;
    max-width: 220px;
}

.mock-body {
    padding: 20px;
    background: var(--navy);
}

.mock-hero-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.mock-headline {
    height: 12px;
    background: var(--white);
    border-radius: 3px;
    margin-bottom: 8px;
    opacity: .9;
    width: 80%;
}

.mock-subline {
    height: 8px;
    background: rgba(255, 255, 255, .4);
    border-radius: 3px;
    margin-bottom: 6px;
    width: 60%;
}

.mock-btn-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.mock-btn {
    height: 28px;
    border-radius: 4px;
    background: var(--gold);
    width: 100px;
}

.mock-btn-ghost {
    height: 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .3);
    width: 80px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mock-card {
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-sm);
    opacity: .12;
}

/* Stat badges floating beside mock */
.stat-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-badge {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.stat-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-badge-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.stat-badge-text small {
    font-size: .75rem;
    color: var(--gray-400);
}

@media (min-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .stat-badges {
        flex-direction: column;
    }
}

/* ── Problem/Solution Strip ───────────────────────────────── */
.problem-strip {
    background: var(--cream);
    padding: 64px 24px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: var(--max-width);
    margin-inline: auto;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gray-200);
}

.problem-item.solved {
    border-left-color: var(--gold);
}

.problem-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.problem-item p {
    font-size: .88rem;
    color: var(--gray-600);
    margin: 0;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Pillars ────────────────────────────────────────────────── */
.pillar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pillar-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 16px;
}

.pillar-card h3 {
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: .9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--gray-800);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--gold-light);
    font-size: .9rem;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: .9rem;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author-info small {
    font-size: .78rem;
    color: var(--gray-400);
}

/* ── Process Steps ──────────────────────────────────────────── */
.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: .92rem;
    color: var(--gray-600);
    margin: 0;
}

/* ── Accordion / FAQ ────────────────────────────────────────── */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--white);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    transition: background var(--transition);
    gap: 12px;
}

.accordion-trigger:hover {
    background: var(--gray-100);
}

.accordion-trigger[aria-expanded="true"] {
    background: var(--gold-pale);
}

.accordion-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
    font-size: .85rem;
    color: var(--navy);
    font-weight: 700;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.accordion-panel {
    display: none;
    padding: 8px 24px 20px;
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.accordion-panel.open {
    display: block;
}

.accordion-panel p {
    margin: 0;
}

/* ── Feature list ───────────────────────────────────────────── */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
    color: var(--gray-600);
}

.feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Portfolio Cards ────────────────────────────────────────── */
.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.portfolio-thumb {
    height: 180px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-thumb-inner {
    width: 85%;
    height: 85%;
    background: var(--navy-mid);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

.portfolio-bar {
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    width: 50%;
}

.portfolio-line {
    height: 5px;
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

.portfolio-line.w70 {
    width: 70%;
}

.portfolio-line.w45 {
    width: 45%;
}

.portfolio-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .05em;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.portfolio-info p {
    font-size: .85rem;
    color: var(--gray-600);
    margin: 0;
}

.portfolio-meta {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.portfolio-pill {
    background: var(--cream);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: .75rem;
    color: var(--navy);
    font-weight: 500;
}

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184, 134, 11, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 {
    color: var(--white);
    position: relative;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 32px;
    position: relative;
}

.cta-band .btn {
    position: relative;
}

/* ── Services page: MAMA cross-sell photo + navy overlay ── */
.mama-crosssell-geo {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(26, 35, 50, .82), rgba(26, 35, 50, .88)),
        url('../images/bg-mama-cta.jpg') center center / cover no-repeat !important;
}

.mama-crosssell-geo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 134, 11, .10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mama-crosssell-geo::after {
    display: none;
}

.mama-crosssell-geo>* {
    position: relative;
    z-index: 1;
}

.trust-bar {
    background: var(--off-white);
    padding: 28px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    align-items: center;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-item-icon {
    font-size: 1.1rem;
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 72px 24px 64px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, .7);
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 0;
}

/* ── Services page hero ─────────────────────────────────────── */
.svc-hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1e2d45 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fine dot grid overlay */
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(184, 134, 11, .18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Gold glow pools */
.svc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(184, 134, 11, .18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(184, 134, 11, .10) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 50% 50%, rgba(184, 134, 11, .06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Decorative arcs SVG */
.svc-hero-arcs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Content layout */
.svc-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin-inline: auto;
    width: 100%;
    padding: 120px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .svc-hero-inner {
        padding: 140px 48px 120px;
    }
}

.svc-hero-text h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: .96;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}

.svc-hero-sub {
    color: rgba(255, 255, 255, .68);
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    line-height: 1.75;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 36px;
}

/* Stats row */
.svc-hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

.svc-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px 0 0;
}

.svc-stat:first-child {
    padding-left: 0;
}

.svc-stat-num {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -.03em;
}

.svc-stat-label {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.svc-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    margin: 0 20px;
    flex-shrink: 0;
}

/* CTA row */
.svc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Right card */
.svc-hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.svc-hero-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.svc-hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
}

.svc-hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.45;
}

.svc-hero-checklist li i {
    color: var(--gold);
    font-size: .75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.svc-hero-card-note {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-hero-card-note i {
    color: var(--gold);
    font-size: .75rem;
}

/* Scroll cue */
.svc-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .3);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollbob 2s ease-in-out infinite;
}

.svc-hero-scroll i {
    font-size: .7rem;
}

@keyframes scrollbob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

@media (max-width: 899px) {
    .svc-hero-scroll {
        display: none;
    }
}

/* ── Team / About ───────────────────────────────────────────── */
.team-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: .88rem;
    color: var(--gray-600);
    margin: 0;
}

/* ── Values ─────────────────────────────────────────────────── */
.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.value-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item h4 {
    margin-bottom: 6px;
}

.value-item p {
    font-size: .88rem;
    color: var(--gray-600);
    margin: 0;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-info strong {
    display: block;
    font-size: .88rem;
    color: var(--navy);
}

.contact-detail-info span {
    font-size: .85rem;
    color: var(--gray-600);
}

/* ── Utilities ──────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 40px 0;
}

.rounded {
    border-radius: var(--radius-md);
}

.shadow {
    box-shadow: var(--shadow-md);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .5s ease forwards;
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {

    #site-nav,
    #site-footer,
    .cta-band {
        display: none;
    }

    body {
        color: #000;
    }
}