/* ========================================
   BRAWT Design System v1.0 - Global Styles
   TiffanyGray.com - Thought Leader Edition
   ======================================== */

/* --- Tokens --- */
:root {
    /* Colour */
    --teal: #00b8b8;
    --teal-dark: #009999;
    --teal-900: #007a7a;
    --teal-light: rgba(0, 184, 184, 0.1);
    --teal-glow: rgba(0, 184, 184, 0.04);
    --coral: #e07a5f;
    --coral-dark: #c45a3a;
    --coral-light: rgba(224, 122, 95, 0.1);
    --charcoal: #2d3636;
    --slate-dark: #404d4d;
    --slate-mid: #6a7e87;
    --slate-light: #8fa3ad;
    --border: #d1d9e0;
    --border-dark: rgba(255,255,255,0.08);
    --cloud: #f4f6fc;
    --white: #ffffff;

    /* Semantic */
    --text-primary: var(--slate-dark);
    --text-secondary: var(--slate-mid);
    --bg-page: var(--cloud);
    --bg-card: var(--white);
    --bg-dark: var(--charcoal);
    --bg-dark-elevated: var(--slate-dark);

    /* Typography */
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Font sizes (desktop) */
    --text-display: 56px;
    --text-h1: 40px;
    --text-h2: 32px;
    --text-h3: 24px;
    --text-h4: 20px;
    --text-h5: 16px;
    --text-body-lg: 18px;
    --text-body: 16px;
    --text-body-sm: 14px;
    --text-caption: 12px;
    --text-label: 11px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 100px;

    /* Fluid spacing */
    --space-section: clamp(48px, 8vw, 96px);
    --space-component: clamp(24px, 4vw, 48px);
    --space-element: clamp(16px, 2vw, 24px);
    --container-padding: clamp(20px, 5vw, 60px);

    /* Signature elements */
    --accent-weight: 4px;
    --accent-weight-thin: 2px;
    --corner-length: 40px;
    --square-sm: 8px;
    --square-md: 12px;
    --square-lg: 16px;

    /* Cards */
    --card-radius: 8px;
    --card-border: 1px solid var(--border);
    --card-border-dark: 1px solid var(--border-dark);
    --card-padding: 24px;
    --card-padding-lg: 32px;
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Buttons */
    --btn-radius: 4px;
    --btn-font-weight: 500;
    --btn-transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);

    /* Navigation */
    --header-height: 72px;
    --header-height-mobile: 56px;
    --drawer-width: 280px;

    /* Animation */
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
    --duration-slower: 600ms;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --content-max: 720px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-page);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--teal); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font);
    font-weight: var(--weight-semibold);
    color: var(--charcoal);
    line-height: 1.2;
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); line-height: 1.25; }
h3 { font-size: var(--text-h3); line-height: 1.3; }
h4 { font-size: var(--text-h4); line-height: 1.4; }
h5 { font-size: var(--text-h5); line-height: 1.5; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Section --- */
.section {
    padding: var(--space-section) 0;
    position: relative;
}

/* Dark sections */
.section--dark {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--dark a { color: var(--teal); }
.section--dark a:hover { color: var(--white); }

/* Dark elevated (slightly lighter than dark) */
.section--dark-elevated {
    background: var(--bg-dark-elevated);
    color: rgba(255,255,255,0.85);
}
.section--dark-elevated h1,
.section--dark-elevated h2,
.section--dark-elevated h3,
.section--dark-elevated h4,
.section--dark-elevated h5 { color: var(--white); }
.section--dark-elevated p { color: rgba(255,255,255,0.65); }

/* Light sections */
.section--white { background: var(--white); }
.section--cloud { background: var(--cloud); }

/* Teal accent bar at bottom of dark sections */
.section--dark::after,
.section--dark-elevated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--accent-weight);
    background: var(--teal);
}

/* Subtle teal glow on dark sections */
.section--dark::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at center, var(--teal-glow) 0%, transparent 60%);
    pointer-events: none;
}

/* --- Eyebrow Label --- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-label);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: var(--space-md);
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: var(--accent-weight-thin);
    background: var(--teal);
    flex-shrink: 0;
}
.section--dark .eyebrow,
.section--dark-elevated .eyebrow { color: var(--coral); }
.section--dark .eyebrow::before,
.section--dark-elevated .eyebrow::before { background: var(--coral); }

/* --- Square Full Stop --- */
.sq {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: -0.05em;
}
.sq--sm { width: var(--square-sm); height: var(--square-sm); }
.sq--md { width: var(--square-md); height: var(--square-md); }
.sq--lg { width: var(--square-lg); height: var(--square-lg); }
.sq--teal { background: var(--teal); }
.sq--coral { background: var(--coral); }
.sq--white { background: var(--white); }

/* --- Corner Accent --- */
.corner-accent { position: relative; }
.corner-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--corner-length);
    height: var(--corner-length);
    border-top: var(--accent-weight) solid var(--teal);
    border-left: var(--accent-weight) solid var(--teal);
    pointer-events: none;
    z-index: 1;
}

/* --- Bottom Bar --- */
.bottom-bar { position: relative; }
.bottom-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--accent-weight);
    background: var(--teal);
}

/* --- Left Accent --- */
.left-accent {
    border-left: var(--accent-weight) solid var(--teal);
    padding-left: var(--space-lg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: var(--text-body-sm);
    font-weight: var(--btn-font-weight);
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--btn-radius);
    cursor: pointer;
    text-decoration: none;
    transition: var(--btn-transition);
    white-space: nowrap;
}
.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--duration-fast) var(--ease-out);
}
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn--primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
}
.btn--coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
}
.btn--secondary {
    background: var(--slate-dark);
    color: var(--white);
    border-color: var(--slate-dark);
}
.btn--secondary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}
.btn--outline {
    background: transparent;
    color: var(--slate-dark);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.btn--ghost {
    background: transparent;
    color: var(--teal);
    border-color: transparent;
    padding: 12px 16px;
}
.btn--ghost:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}
.btn--on-dark {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn--on-dark:hover {
    background: rgba(255,255,255,0.9);
    color: var(--charcoal);
}
.btn--lg {
    padding: 16px 32px;
    font-size: var(--text-body);
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}
.card:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

/* Dark card */
.card--dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}
.card--dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--teal);
}
.card--dark h3, .card--dark h4 { color: var(--white); }

/* Card with corner accent */
.card--featured { position: relative; overflow: visible; }
.card--featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: var(--corner-length);
    height: var(--corner-length);
    border-top: var(--accent-weight) solid var(--teal);
    border-left: var(--accent-weight) solid var(--teal);
    border-radius: var(--card-radius) 0 0 0;
    pointer-events: none;
    z-index: 1;
}

.card__eyebrow {
    font-size: var(--text-label);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: var(--space-sm);
}
.card__number {
    font-size: 36px;
    font-weight: var(--weight-light);
    color: var(--teal);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: var(--space-md);
}
.card__title {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-sm);
}
.card__text {
    font-size: var(--text-body-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}
.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
    color: var(--teal-dark);
    margin-top: var(--space-md);
}
.card__link:hover { color: var(--teal); }
.card__link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--duration-fast) var(--ease-out);
}
.card__link:hover svg { transform: translateX(3px); }

/* --- Pull Quote --- */
.pull-quote {
    border-left: var(--accent-weight) solid var(--teal);
    padding-left: var(--space-xl);
}
.pull-quote__text {
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    font-style: normal;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}
.pull-quote__attribution {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
    color: var(--coral);
}

/* Dark pull quote */
.section--dark .pull-quote__text,
.section--dark-elevated .pull-quote__text { color: var(--white); }

/* --- Insight Banner (full-width quote) --- */
.insight-banner {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.insight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,184,184,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.insight-banner__text {
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    font-style: normal;
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto var(--space-md);
    color: var(--white);
    position: relative;
    z-index: 1;
}
.insight-banner__attr {
    font-size: var(--text-label);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--coral);
    position: relative;
    z-index: 1;
}

/* --- Testimonial Card --- */
.quote-card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--card-padding-lg);
    border-left: var(--accent-weight) solid var(--teal);
}
.quote-card__text {
    font-size: var(--text-body-lg);
    font-weight: var(--weight-regular);
    font-style: normal;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.quote-card__attribution {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
    color: var(--coral);
}

/* --- Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(45, 54, 54, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    transition: all var(--duration-slow) var(--ease-out);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    text-decoration: none;
    color: var(--white);
}
.header__name {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    line-height: 1.1;
    color: var(--white);
}
.header__tagline {
    font-size: var(--text-label);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate-mid);
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}
.nav-links a {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}
.nav-links .btn {
    color: var(--white);
}

/* Nav toggle (hamburger) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}
.nav-backdrop.show {
    display: block;
    opacity: 1;
}

/* --- Grid Utilities --- */
.grid { display: grid; gap: var(--space-lg); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--slate-mid);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--accent-weight);
    background: var(--teal);
}
.footer a {
    color: var(--slate-mid);
    transition: color var(--duration-fast) var(--ease-out);
}
.footer a:hover { color: var(--teal); }
.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}
.footer__brand-name {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-xs);
}
.footer__brand-tagline {
    font-size: var(--text-body-sm);
    color: var(--slate-mid);
    margin-bottom: var(--space-lg);
}
.footer__heading {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-semibold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: var(--space-sm); }
.footer__links a { font-size: var(--text-body-sm); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-caption);
}
.footer__social { display: flex; gap: var(--space-md); }
.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
}
.footer__social a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.footer__social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Keyframes --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

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

/* --- Visibility Utilities --- */
@media (max-width: 640px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 641px) {
    .show-mobile-only { display: none !important; }
}
@media (min-width: 641px) and (max-width: 1024px) {
    .hide-tablet { display: none !important; }
}
@media (min-width: 1025px) {
    .hide-desktop { display: none !important; }
}
@media (max-width: 1024px) {
    .show-desktop-only { display: none !important; }
}

/* --- Responsive Grid (auto-collapse) --- */
.grid-responsive {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-element);
}
@media (min-width: 641px) { .grid-responsive { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .grid-responsive { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1441px) { .grid-responsive { grid-template-columns: repeat(4, 1fr); } }

/* --- Stack on Mobile --- */
@media (max-width: 640px) {
    .stack-mobile { flex-direction: column !important; }
}

/* --- Touch Target Enforcement --- */
.btn, .nav-links a, .footer__links a, .card__link, .pillar__link {
    min-height: 44px;
}
.btn { min-height: 44px; }

/* --- Form Mobile Defaults --- */
input, select, textarea {
    font-size: 16px; /* Prevents iOS Safari zoom on focus */
}

/* --- Responsive: Tablet (max 1024px) --- */
@media (max-width: 1024px) {
    :root {
        --text-display: 44px;
        --text-h1: 32px;
        --text-h2: 28px;
        --text-h3: 22px;
        --text-h4: 18px;
    }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--5 { grid-template-columns: repeat(3, 1fr); }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: var(--drawer-width);
        background: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--space-lg) var(--space-lg);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-out);
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        z-index: 160;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
        font-size: var(--text-body);
        color: rgba(255,255,255,0.7);
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-toggle { display: block; }
    .header { height: var(--header-height-mobile); }
    .footer__grid { grid-template-columns: 1fr 1fr; }

    /* Inline grid sections - force single column */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* --- Responsive: Mobile (max 640px) --- */
@media (max-width: 640px) {
    :root {
        --text-display: 32px;
        --text-h1: 28px;
        --text-h2: 24px;
        --text-h3: 20px;
        --text-h4: 18px;
    }
    .grid--2,
    .grid--3,
    .grid--4,
    .grid--5 { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    .insight-banner__text { font-size: var(--text-h4); }

    /* Ensure buttons stack on mobile */
    .hero__actions,
    [style*="display:flex"][style*="gap"] {
        flex-wrap: wrap;
    }

    /* Full-width buttons on small screens */
    .btn--lg {
        width: 100%;
        justify-content: center;
    }

    /* Pull quotes and quotes scale down */
    .pull-quote__text { font-size: var(--text-h4); }
}

/* --- Responsive: Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    :root {
        --text-display: 28px;
        --text-h1: 24px;
        --text-h2: 22px;
        --text-h3: 18px;
    }
    .container {
        padding: 0 16px;
    }
    .section {
        padding: clamp(32px, 6vw, 48px) 0;
    }
    .card {
        padding: var(--space-md);
    }
    .footer__social a {
        width: 44px;
        height: 44px;
    }
}

/* --- Responsive: Large Desktop (min 1441px) --- */
@media (min-width: 1441px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .grid--5 { grid-template-columns: repeat(5, 1fr); }
    .container {
        max-width: 1400px;
    }
}

/* --- Print Styles --- */
@media print {
    .header, .footer, .nav-toggle, .nav-backdrop, .btn, .no-print {
        display: none !important;
    }
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    a[href]::after {
        content: " (" attr(href) ")";
    }
    h1, h2, h3, img, table {
        page-break-inside: avoid;
    }
}
