/*
 * ============================================================================
 *  KANDA — VISUAL BRAND IDENTITY
 * ============================================================================
 *  Primary palette (in order of dominance):
 *
 *    1. MINT GREEN  — the launcher / PWA icon family
 *       - mint-50    #e8f5ee   soft surface
 *       - mint-100   #d2ebde   accent surfaces, splash bg
 *       - mint-200   #bfe0cf   borders, hovers
 *       - mint-700   #0e7a58   primary brand (CTA, links, K mark)
 *       - mint-900   #074f39   deep ink, K shadow side
 *
 *    2. CREAM       — page canvas
 *       - cream-50   #fffcf8   highlight, cards
 *       - cream-100  #f5f1e8   page background
 *
 *    3. GOLD        — secondary accent (badges, highlights)
 *       - gold-500   #b7791f
 *
 *    4. FOREST GREEN — legacy / decorative only
 *       - forest     #0b6e4f   used sparingly for depth
 *
 *  Type:
 *    - Display:   "Space Grotesk"  (headings, UI, badges)
 *    - Body:      "Crimson Text"   (long-form prose)
 * ============================================================================
 */

:root {
    /* ── Mint (primary brand) ── */
    --mint-50:   #e8f5ee;
    --mint-100:  #d2ebde;
    --mint-200:  #bfe0cf;
    --mint-300:  #9ed1b6;
    --mint-500:  #2a9c75;
    --mint-700:  #0e7a58;
    --mint-900:  #074f39;
    --mint-soft: rgba(14, 122, 88, 0.08);
    --mint-glow: rgba(14, 122, 88, 0.22);

    /* ── Cream (canvas) ── */
    --cream-50:  #fffcf8;
    --cream-100: #f5f1e8;

    /* ── Gold (secondary accent) ── */
    --gold:      #b7791f;
    --gold-soft: rgba(183, 121, 31, 0.12);

    /* ── Forest (legacy / decorative) ── */
    --forest-legacy: #0b6e4f;

    /* ── Surface ── */
    --bg:           var(--cream-100);
    --bg-elevated:  var(--cream-50);
    --bg-card:      rgba(255, 255, 255, 0.78);
    --bg-card-solid:#ffffff;

    /* ── Text ── */
    --text-1: #1f2933;
    --text-2: #52606d;
    --text-3: #7b8794;

    /* ── Borders & shadows ── */
    --border:    rgba(126, 96, 55, 0.13);
    --border-md: rgba(126, 96, 55, 0.20);
    --shadow-sm: 0 4px 18px rgba(31, 41, 51, 0.05);
    --shadow-md: 0 18px 50px rgba(31, 41, 51, 0.08);
    --shadow-lg: 0 28px 80px rgba(14, 122, 88, 0.14);

    /* ── Radius ── */
    --r-sm:   12px;
    --r-md:   20px;
    --r-lg:   28px;
    --r-xl:   40px;
    --r-full: 999px;

    /* ── Type ── */
    --font-d: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-b: 'Crimson Text', Georgia, 'Times New Roman', serif;

    /* ── Motion ── */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Backwards-compat aliases (DO NOT use in new CSS) ── */
    --bg-cream:        var(--cream-100);
    --bg-light:        var(--cream-50);
    --bg-card-solid:   #ffffff;
    --forest:          var(--mint-700);
    --forest-dark:     var(--mint-900);
    --forest-light:    var(--mint-50);
    --forest-soft:     var(--mint-soft);
    --forest-green:    var(--mint-700);
    --text-primary:    var(--text-1);
    --text-secondary:  var(--text-2);
    --text-muted:      var(--text-3);
    --border-light:    var(--border);
    --border-medium:   var(--border-md);
    --shadow-soft:     var(--shadow-sm);
    --shadow-medium:   var(--shadow-md);
    --shadow-strong:   var(--shadow-lg);
    --radius-sm:       var(--r-sm);
    --radius-md:       var(--r-md);
    --radius-lg:       var(--r-lg);
    --radius-xl:       var(--r-xl);
    --radius-full:     var(--r-full);
    --font-display:    var(--font-d);
    --font-body:       var(--font-b);
    --transition-fast: 0.2s var(--ease);
    --transition-smooth: 0.4s var(--ease);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings always use the display font */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-d);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-1);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================================
 *  AMBIENT BACKGROUND (mint-toned blobs)
 * ============================================================================ */
.ambient,
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob,
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: drift 22s ease-in-out infinite;
}

.blob-1, .blob-a {
    width: min(700px, 100vw); height: min(700px, 100vw);
    background: radial-gradient(circle, var(--mint-200), transparent 70%);
    top: -260px; right: -180px;
}

.blob-2, .blob-b {
    width: min(520px, 80vw); height: min(520px, 80vw);
    background: radial-gradient(circle, var(--gold-soft), transparent 70%);
    bottom: 4%; left: -160px;
    animation-delay: -8s;
    opacity: 0.55;
}

@media (max-width: 768px) {
    .blob, .ambient-blob {
        display: none;
    }
}

.blob-3, .blob-c {
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--mint-50), transparent 70%);
    top: 45%; left: 40%;
    animation-delay: -15s;
    opacity: 0.35;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(40px, -30px); }
    66%      { transform: translate(-30px, 40px); }
}

/* Noise overlay removed */

/* ============================================================================
 *  BRAND MARK (the squircle K — used in nav, footer, hero, anywhere)
 *  Inline SVG via CSS so we never have ID-collision issues across instances.
 * ============================================================================ */
.brand-mark {
    display: inline-block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><defs><linearGradient id='k' x1='0%25' y1='0%25' x2='0%25' y2='100%25'><stop offset='0%25' stop-color='%230e7a58'/><stop offset='100%25' stop-color='%23074f39'/></linearGradient></defs><g transform='translate(32, 32)'><rect x='0' y='0' width='96' height='128' rx='24' fill='url(%23k)'/><rect x='0' y='160' width='96' height='128' rx='24' fill='url(%23k)'/><rect x='0' y='320' width='96' height='128' rx='24' fill='url(%23k)'/><rect x='128' y='184' width='80' height='80' rx='20' fill='url(%23k)' opacity='0.4'/><rect x='240' y='0' width='96' height='128' rx='24' fill='url(%23k)'/><rect x='240' y='320' width='96' height='128' rx='24' fill='url(%23k)'/><rect x='368' y='24' width='64' height='80' rx='16' fill='url(%23k)' opacity='0.4'/><rect x='368' y='344' width='64' height='80' rx='16' fill='url(%23k)' opacity='0.4'/></g></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.brand-mark-sm { width: 32px; height: 32px; }
.brand-mark-lg { width: 64px; height: 64px; }

.brand-name {
    font-family: var(--font-d);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ============================================================================
 *  NAV (canonical — same markup on every page)
 * ============================================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(245, 241, 232, 0.78);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s var(--ease), background 0.3s var(--ease),
                box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav.scrolled {
    padding: 0.7rem 4%;
    background: rgba(255, 252, 248, 0.94);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-1);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    list-style: none;
}

.nav-links > li > a {
    font-family: var(--font-d);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s var(--ease);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--mint-700);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s var(--ease);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--mint-700);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--mint-700), var(--mint-900)) !important;
    color: #fff !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--r-full);
    font-weight: 600 !important;
    box-shadow: 0 6px 18px var(--mint-glow);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 122, 88, 0.32);
}

.mobile-toggle,
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-1);
    border-radius: var(--r-sm);
}

.mobile-toggle:hover,
.mobile-menu-btn:hover { background: var(--mint-soft); }

@media (max-width: 860px) {
    .nav { padding: 0.85rem 4%; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 4%; right: 4%;
        background: rgba(255, 252, 248, 0.98);
        backdrop-filter: blur(16px);
        padding: 0.85rem 1rem 1rem;
        margin-top: 0.4rem;
        box-shadow: var(--shadow-md);
        border-radius: var(--r-md);
        gap: 0.15rem;
        border: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
        display: block;
        padding: 0.75rem 0.85rem;
        border-radius: var(--r-sm);
        font-size: 0.95rem;
    }
    .nav-links > li > a::after { display: none; }
    .nav-links > li > a:hover { background: var(--mint-soft); }
    .nav-links > li > a.nav-cta {
        text-align: center;
        margin-top: 0.4rem;
    }
    .mobile-toggle,
    .mobile-menu-btn { display: inline-flex; }
}

/* ============================================================================
 *  LAYOUT UTILITIES
 * ============================================================================ */
.container { max-width: 1300px; margin: 0 auto; }
.section { padding: 6rem 4%; position: relative; }
.section-sm { padding: 4rem 4%; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-d);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mint-700);
    margin-bottom: 0.85rem;
}

.eyebrow::before,
.section-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--mint-700);
    border-radius: 50%;
}

.h2 {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.h3 {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sub {
    font-family: var(--font-b);
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--mint-700), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================================================
 *  BUTTONS
 * ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
                background 0.2s var(--ease), color 0.2s var(--ease);
    line-height: 1;
}

.btn-p {
    background: linear-gradient(135deg, var(--mint-700), var(--mint-900));
    color: #fff;
    box-shadow: 0 10px 28px var(--mint-glow);
}

.btn-p:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(14, 122, 88, 0.35);
}

.btn-s {
    background: var(--bg-card);
    color: var(--text-1);
    border: 1px solid var(--border-md);
    backdrop-filter: blur(10px);
}

.btn-s:hover {
    background: #fff;
    border-color: var(--mint-700);
    color: var(--mint-700);
    transform: translateY(-2px);
}

/* ============================================================================
 *  FINAL CTA BAND (replaces the harsh forest-green slab)
 * ============================================================================ */
.final-cta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    border-radius: var(--r-lg);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
        linear-gradient(135deg, var(--mint-50) 0%, var(--mint-100) 55%, var(--mint-200) 100%);
    border: 1px solid var(--mint-200);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 30%, rgba(14, 122, 88, 0.08) 100%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--mint-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
    position: relative;
}

.final-cta p {
    font-family: var(--font-b);
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 2rem;
    position: relative;
}

.final-cta-btns {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: var(--mint-900);
    color: #fff;
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-full);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(7, 79, 57, 0.25);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(7, 79, 57, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: transparent;
    color: var(--mint-900);
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-full);
    text-decoration: none;
    border: 1.5px solid var(--mint-300);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: var(--mint-700);
}

@media (max-width: 720px) {
    .final-cta { padding: 3rem 1.5rem; }
}

/* ============================================================================
 *  REVEAL ANIMATION
 * ============================================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .blob, .ambient-blob { animation: none; }
    * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ============================================================================
 *  FOOTER (canonical — same markup on every page)
 * ============================================================================ */
.footer {
    padding: 4.5rem 4% 2rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(255, 252, 248, 0.55));
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 3rem;
}

.footer-brand { max-width: 300px; }

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-1);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.footer-brand p {
    font-family: var(--font-b);
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

.footer-col h4 {
    font-family: var(--font-d);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
    font-family: var(--font-d);
    font-size: 0.88rem;
    color: var(--text-2);
    transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--mint-700); }

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.85rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-d);
    font-size: 0.78rem;
    color: var(--text-3);
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 0.55rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    color: var(--text-2);
    transition: background 0.2s var(--ease), color 0.2s var(--ease),
                border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-social a:hover {
    background: var(--mint-700);
    border-color: var(--mint-700);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem;
    }
    .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================================
 *  COOKIE BANNER
 * ============================================================================ */
.cookie {
    position: fixed;
    bottom: -200px;
    left: 0; right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1f2933, #374151);
    padding: 1.25rem 4%;
    transition: bottom 0.5s var(--ease);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie.show { bottom: 0; }

.cookie-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 200px; }

.cookie-text h3 {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.cookie-text p {
    font-family: var(--font-b);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-text a { color: var(--gold); }

.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.cookie-btn {
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-full);
    font-family: var(--font-d);
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s var(--ease);
}

.cb-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cb-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cb-accept {
    background: linear-gradient(135deg, var(--mint-700), var(--mint-900));
    color: #fff;
}

.cb-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 122, 88, 0.45);
}

/* ============================================================================
 *  LEGACY: .logo-k / .logo-mark — redirect to brand-mark for old markup that
 *  hasn't been swept yet. New markup should use <span class="brand-mark">.
 * ============================================================================ */
/* ============================================================================
 *  UTILITIES
 * ============================================================================ */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.fs-sm { font-size: 0.85rem !important; }
.fs-0-9 { font-size: 0.9rem !important; }

.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

.text-2 { color: var(--text-2) !important; }
.text-forest { color: var(--mint-700) !important; }

.max-w-600 { max-width: 600px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.flex { display: flex !important; }
.flex-center { display: flex !important; align-items: center !important; justify-content: center !important; }
.flex-col { flex-direction: column !important; }
.items-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }

.gap-8 { gap: 8px !important; }
.gap-10 { gap: 10px !important; }
.gap-12 { gap: 12px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }

.bg-mint-soft { background: var(--mint-soft) !important; }
.bg-cream-soft { background: rgba(245, 241, 232, 0.03) !important; }
.bg-cream-100 { background: var(--cream-100) !important; }
.bg-cream-50 { background: var(--cream-50) !important; }

.relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.z-2 { z-index: 2 !important; }

.text-white { color: white !important; }
.text-gold { color: var(--gold) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-white-90 { color: rgba(255, 255, 255, 0.9) !important; }

.aide-icon { vertical-align: middle !important; margin-right: 0.5rem !important; }
.link-forest-bold { color: var(--mint-700) !important; font-weight: 600 !important; }

.img-cover { width: 100% !important; height: 100% !important; object-fit: cover !important; }




