/* ════════════════════════════════════════════════════════════════
   Nordic-Inspired Editorial Theme
   Cloned 2026-05-15 from nordic-hookup.com (cream-paper + serif + cards)
   Per-site palette + design-system v2 (cta-hot, ds-avatar, etc.)
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

/* ── 1. TOKENS ────────────────────────────────────────────────── */
:root {
    /* Brand */
    --brand:         #e8527c;
    --brand-2:       #f59ec5;
    --brand-ink:     #ffffff;

    /* Page */
    --page-bg:       #fff7f9;
    --text:          #2b1820;
    --text-muted:    #6e5560;
    --text-fade:     #a08591;
    --card-bg:       #ffffff;
    --border:        #f1d6df;
    --hairline:      rgba(232, 82, 124, 0.16);
    --shadow:        0 12px 36px -18px rgba(140, 30, 60, 0.22);

    /* Compat with design-system v2 (cta-hot etc.) */
    --ds-accent:        var(--brand);
    --ds-accent-2:      var(--brand-2);
    --ds-accent-glow:   rgb(232 82 124 / .55);
    --ds-text-muted:    var(--text-muted);
    --ds-page-bg:       var(--page-bg);
    --ds-trust-dot:     #22c55e;

    /* Typography */
    --ff-serif:  'Fraunces', 'Times New Roman', Georgia, serif;
    --ff-sans:   'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --ff-mono:   'JetBrains Mono', 'Geist Mono', ui-monospace, Menlo, monospace;

    /* Type scale */
    --type-xs:   .75rem;
    --type-sm:   .875rem;
    --type-base: 1rem;
    --type-md:   1.125rem;
    --type-lg:   1.5rem;
    --type-xl:   2rem;
    --type-2xl:  3rem;
    --type-3xl:  clamp(3rem, 7vw, 5.5rem);
    --type-4xl:  clamp(3.5rem, 11vw, 8rem);

    /* Spacing */
    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 5rem;
    --space-7: 8rem;

    /* Radii */
    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 9999px;

    /* Layout */
    --max-w: 1280px;
    --gutter: clamp(1rem, 4vw, 2.5rem);

    /* Motion */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --t-fast: .18s;
    --t: .3s;
    --t-slow: .55s;

    /* Design system aliases */
    --ds-space-1: 4px; --ds-space-2: 8px; --ds-space-3: 12px; --ds-space-4: 16px;
    --ds-space-5: 24px; --ds-space-6: 32px; --ds-space-7: 48px; --ds-space-8: 64px;
    --ds-r-sm: 6px; --ds-r-md: 12px; --ds-r-lg: 20px; --ds-r-pill: 999px;
    --ds-sh-1: 0 1px 2px rgb(0 0 0 / .08);
    --ds-sh-2: 0 4px 12px rgb(0 0 0 / .12);
    --ds-sh-3: 0 12px 32px rgb(0 0 0 / .18);
    --ds-sh-glow: 0 0 28px var(--ds-accent-glow);
    --ds-ease: var(--ease);
    --ds-dur-fast: var(--t-fast);
    --ds-dur: var(--t);
    --ds-dur-slow: var(--t-slow);
}

/* ── 2. RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--ff-sans);
    font-weight: 400;
    font-size: var(--type-base);
    line-height: 1.6;
    color: var(--text);
    background: var(--page-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -.005em;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--brand); }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-serif);
    font-weight: 380;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--text);
    font-variation-settings: 'opsz' 144, 'SOFT' 40;
    margin: 0 0 .4em;
}
h1 { font-size: var(--type-4xl); font-weight: 360; letter-spacing: -.035em; }
h2 { font-size: var(--type-3xl); font-weight: 400; }
h3 { font-size: var(--type-xl); font-weight: 500; letter-spacing: -.02em; }
h4 { font-size: var(--type-lg); font-weight: 500; }
p  { color: var(--text-muted); line-height: 1.7; margin: 0 0 1em; }
em, i { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 60; }

.eyebrow {
    font-family: var(--ff-mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-fade);
    display: inline-block;
}
.eyebrow .num { color: var(--brand); margin-right: .5em; }

.container, .nh-wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}

/* ── 4. HEADER ────────────────────────────────────────────────── */
.nh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 247, 249, 0.86);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
    height: 76px;
    display: flex;
    align-items: center;
}
.nh-header-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}
.nh-logo {
    display: inline-flex;
    align-items: baseline;
    gap: .3em;
    font-family: var(--ff-serif);
    font-weight: 380;
    font-style: italic;
    font-size: 1.55rem;
    letter-spacing: -.02em;
    color: var(--text);
    line-height: 1;
}
.nh-logo span { color: var(--brand); font-style: normal; font-weight: 500; }
.nh-nav {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.nh-nav a {
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .01em;
    position: relative;
    padding: 6px 0;
}
.nh-nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--brand);
    transform: scaleX(0); transform-origin: left;
    transition: transform .28s var(--ease);
}
.nh-nav a:hover::after { transform: scaleX(1); }
.nh-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .7em 1.4em;
    background: var(--brand);
    color: var(--brand-ink);
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .015em;
    box-shadow: 0 1px 0 rgb(255 255 255 / .15) inset, 0 6px 18px -6px var(--ds-accent-glow);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), filter var(--t) var(--ease);
}
.nh-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.06); color: var(--brand-ink); }

/* ── 5. HERO ──────────────────────────────────────────────────── */
.nh-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    isolation: isolate;
    overflow: hidden;
}
.nh-hero::before {
    content: ''; position: absolute; inset: -20%;
    z-index: -2; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 25%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 70%),
        radial-gradient(ellipse 60% 45% at 85% 75%, color-mix(in srgb, var(--brand-2) 10%, transparent), transparent 70%);
}
.nh-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 880px) {
    .nh-hero-grid { grid-template-columns: 1fr; }
}
.nh-hero-content { max-width: 56ch; }
.nh-hero-content .eyebrow { margin-bottom: 1rem; }
.nh-hero-content h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 1.2rem;
    font-weight: 360;
}
.nh-hero-content h1 em {
    font-style: italic;
    color: var(--brand);
    font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.nh-hero-content .lede {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 2rem;
}
.nh-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.2rem;
}
.nh-hero-actions .btn-secondary {
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
    border-radius: var(--r-pill);
    padding: .95em 1.7em;
    font-weight: 500;
    font-size: .92rem;
    transition: all var(--t) var(--ease);
}
.nh-hero-actions .btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.nh-hero-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.6rem;
    color: var(--text-fade);
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.nh-hero-meta strong { color: var(--brand); font-weight: 600; }

.nh-hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg) center/cover no-repeat;
}
.nh-hero-visual::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--page-bg) 80%, transparent) 100%);
}
.nh-hero-badge {
    position: absolute;
    bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1rem;
    background: color-mix(in srgb, var(--card-bg) 90%, transparent);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    border: 1px solid var(--hairline);
}
.nh-hero-badge-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgb(34 197 94 / .25);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
.nh-hero-badge-text { font-size: .82rem; color: var(--text); font-weight: 500; }
.nh-hero-badge-text strong { color: var(--brand); font-weight: 700; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.25); }
}

/* ── 6. SECTIONS ──────────────────────────────────────────────── */
.nh-section {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    position: relative;
}
.nh-section + .nh-section { border-top: 1px solid var(--hairline); }
.nh-section-header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    max-width: 56ch;
}
.nh-section-header h2 {
    margin-top: .8rem;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.nh-section-header.center {
    margin-left: auto; margin-right: auto; text-align: center;
}

/* ── 7. PHOTO GRID ────────────────────────────────────────────── */
.nh-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .7rem;
}
.nh-photo-tile {
    aspect-ratio: 3 / 4;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--card-bg);
    position: relative;
    box-shadow: var(--shadow);
    transition: transform var(--t) var(--ease);
}
.nh-photo-tile:hover { transform: translateY(-3px); }
.nh-photo-tile img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform var(--t-slow) var(--ease);
}
.nh-photo-tile:hover img { transform: scale(1.04); }
.nh-photo-tile::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgb(0 0 0 / .55) 100%);
    pointer-events: none;
}
.nh-photo-tile .nh-photo-label {
    position: absolute; left: .7rem; bottom: .55rem; right: .7rem;
    z-index: 2; color: #fff;
    font-family: var(--ff-mono);
    font-size: .68rem; letter-spacing: .12em;
    text-transform: uppercase; opacity: .92;
}

/* ── 8. OFFER / CITY CARDS ────────────────────────────────────── */
.nh-cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.4rem;
}
.nh-city-card {
    aspect-ratio: 4 / 5;
    background: var(--card-bg) center/cover no-repeat;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    transition: transform var(--t) var(--ease);
}
.nh-city-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / .65) 100%);
    z-index: 1;
}
.nh-city-card:hover { transform: translateY(-4px); }
.nh-city-card-content { position: relative; z-index: 2; color: #fff; }
.nh-city-card-content .eyebrow { color: rgb(255 255 255 / .75); }
.nh-city-card-content h3 {
    color: #fff;
    margin: .3em 0 .15em;
    font-size: 1.6rem;
}
.nh-city-card-content p {
    color: rgb(255 255 255 / .85);
    font-size: .92rem;
    margin: 0;
}

/* ── 9. NICHE TILES ──────────────────────────────────────────── */
.nh-niches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .9rem;
}
.nh-niche-tile {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    transition: all var(--t) var(--ease);
}
.nh-niche-tile:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.nh-niche-tile-title {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
}

/* ── 10. FAQ ─────────────────────────────────────────────────── */
.nh-faq { max-width: 720px; margin: 0 auto; }
.nh-faq details {
    border-bottom: 1px solid var(--hairline);
    padding: 1.2rem 0;
}
.nh-faq details:first-child { border-top: 1px solid var(--hairline); }
.nh-faq summary {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.nh-faq summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--brand);
    transition: transform var(--t) var(--ease);
    flex-shrink: 0;
    font-weight: 300;
}
.nh-faq details[open] summary::after { transform: rotate(45deg); }
.nh-faq details p { margin-top: .8rem; }

/* ── 11. FEATURES STRIP ──────────────────────────────────────── */
.nh-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.nh-feature {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.nh-feature-icon {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    border-radius: var(--r-md);
    font-size: 1.2rem;
    margin-bottom: .3rem;
}
.nh-feature h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}
.nh-feature p { font-size: .94rem; margin: 0; }

/* ── 12. PROFILE CARDS (overrides prelinker style for visual coherence) ─ */
.nh-pp-section { padding: clamp(2rem, 5vw, 4rem) 0; }
.cr-pp-wrap, .mv-pp-wrap, .fc-pp-wrap, .nh-pp-wrap { background: transparent !important; }
.cr-pp-grid, .mv-pp-grid, .fc-pp-grid, .nh-pp-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 1rem !important;
}
.cr-pp-card, .mv-pp-card, .fc-pp-card, .nh-pp-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--hairline) !important;
    border-radius: var(--r-md) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow) !important;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease) !important;
}
.cr-pp-card:hover, .mv-pp-card:hover, .fc-pp-card:hover, .nh-pp-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgb(0 0 0 / .18) !important;
}

/* ── 13. FOOTER ──────────────────────────────────────────────── */
.nh-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--hairline);
    padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}
.nh-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 720px) {
    .nh-footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .nh-footer-brand { grid-column: 1 / -1; }
}
.nh-footer-brand .nh-logo {
    margin-bottom: .8rem;
    font-size: 1.4rem;
}
.nh-footer-tag {
    font-size: .9rem;
    color: var(--text-muted);
    max-width: 38ch;
    margin-bottom: .8rem;
}
.nh-footer-disclaimer {
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--text-fade);
    letter-spacing: .04em;
    line-height: 1.6;
}
.nh-footer h5 {
    font-family: var(--ff-mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-fade);
    margin-bottom: .8rem;
}
.nh-footer ul { list-style: none; }
.nh-footer ul li { margin-bottom: .55rem; }
.nh-footer ul a {
    color: var(--text-muted);
    font-size: .92rem;
    transition: color var(--t-fast);
}
.nh-footer ul a:hover { color: var(--brand); }

.nh-network {
    border-top: 1px solid var(--hairline);
    padding-top: 1.5rem;
    text-align: center;
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-fade);
}
.nh-network-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem 1.6rem;
    margin-top: .7rem;
}
.nh-network-list a { color: var(--text-muted); transition: color var(--t-fast); }
.nh-network-list a:hover { color: var(--brand); }

.nh-foot-bottom {
    border-top: 1px solid var(--hairline);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: var(--text-fade);
    letter-spacing: .06em;
}

/* ── 14. STICKY MOBILE CTA ───────────────────────────────────── */
.sticky-cta-mobile { display: none; }
@media (max-width: 720px) {
    .sticky-cta-mobile {
        display: block;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        padding: 10px 14px 14px;
        background: linear-gradient(180deg, transparent 0%, var(--page-bg) 40%);
        z-index: 80;
        pointer-events: none;
    }
    .sticky-cta-mobile > * { pointer-events: auto; }
    body { padding-bottom: 84px; }
}

/* ── 15. CTA SYSTEM (design-system v2 unchanged, just recolored via vars) ─ */
.cta-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ds-space-3);
    min-height: 60px;
    padding: 18px 36px 18px 32px;
    font-family: inherit;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    border: 0;
    border-radius: var(--ds-r-pill);
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--ds-accent) 0%, var(--ds-accent-2) 100%);
    box-shadow: var(--ds-sh-2), inset 0 1px 0 rgb(255 255 255 / .25);
    position: relative;
    overflow: hidden;
    transition: transform var(--ds-dur) var(--ds-ease), box-shadow var(--ds-dur) var(--ds-ease), filter var(--ds-dur) var(--ds-ease);
    animation: ctaPulse 2.4s var(--ds-ease) infinite;
    will-change: transform;
}
.cta-hot::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgb(255 255 255 / .35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .7s var(--ds-ease);
    pointer-events: none;
}
.cta-hot:hover, .cta-hot:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--ds-sh-3), var(--ds-sh-glow);
    filter: brightness(1.05);
    color: #fff;
    outline: none;
}
.cta-hot:hover::before, .cta-hot:focus-visible::before { transform: translateX(100%); }
.cta-hot:active { transform: translateY(0) scale(.99); }
.cta-hot .cta-arrow { transition: transform var(--ds-dur) var(--ds-ease); display: inline-block; }
.cta-hot:hover .cta-arrow, .cta-hot:focus-visible .cta-arrow { transform: translateX(4px); }
.cta-hot .cta-label { display: inline-block; }

@keyframes ctaPulse {
    0%, 100% { box-shadow: var(--ds-sh-2), 0 0 0 0 var(--ds-accent-glow); }
    50%      { box-shadow: var(--ds-sh-2), 0 0 0 10px transparent; }
}

@media (max-width: 720px) {
    .sticky-cta-mobile .cta-hot {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        padding: 14px 18px;
        font-size: 1rem;
        animation: none;
    }
    .sticky-cta-mobile .cta-hot::before { display: none; }
}

.cta-trust {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--ds-space-2);
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.cta-trust .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ds-trust-dot);
    box-shadow: 0 0 0 3px rgb(34 197 94 / .22);
    animation: tinyPulse 1.5s infinite;
    flex-shrink: 0;
}
@keyframes tinyPulse { 0%,100% {opacity:1} 50% {opacity:.45} }
.cta-counter {
    display: inline-flex;
    align-items: center;
    gap: var(--ds-space-2);
    font-size: .88rem;
    color: var(--brand);
    font-weight: 700;
}
.cta-counter .live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ds-trust-dot);
    box-shadow: 0 0 0 4px rgb(34 197 94 / .22);
    animation: livePulse 2s infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%     { transform: scale(1.3); opacity: .7; }
}

/* ── 16. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 720px) {
    .nh-header-inner { grid-template-columns: auto 1fr; gap: 1rem; }
    .nh-nav { display: none; }
    .nh-nav-cta { justify-self: end; padding: .55em 1em; font-size: .8rem; }
    .nh-hero-content h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .nh-hero-meta { gap: 1.2rem; font-size: .66rem; }
    h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .nh-footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── 17. ACCESSIBILITY ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ── 18. LEGACY CR-* / MV-* / FC-* COMPAT (for niche-render + offer cards still using old classes) ── */
.cr-wrap, .mv-wrap, .fc-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.cr-eyebrow, .mv-eyebrow, .fc-eyebrow { color: var(--text-fade); font-family: var(--ff-mono); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.cr-section, .mv-section, .fc-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.cr-section-header h2, .mv-section-header h2, .fc-section-header h2 { font-family: var(--ff-serif); }
