/* ═══════════════════════════════════════════════════════════════
   Audera Holding AG — Custom Theme Stylesheet
   Fonts loaded via fonts.css (self-hosted, no Google CDN)
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset / Normalization ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    /* Colors */
    --navy:          #0f1e2b;
    --navy-deep:     #0a1620;
    --navy-light:    #1a3044;
    --slate:         #3a5068;
    --slate-muted:   #5e7a92;
    --gold:          #8c7352;
    --gold-light:    #c4aa8a;
    --gold-hover:    #6b5840;
    --cream:         #f8f6f3;
    --cream-dark:    #f0ece6;
    --white:         #ffffff;
    --line:          #ddd6cc;
    --line-light:    #e8e3db;

    /* Typography */
    --font-body:     'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
    --font-heading:  'Poppins', -apple-system, 'Segoe UI', system-ui, sans-serif;

    /* Layout */
    --header-h:      72px;
    --max-width:     1100px;
    --radius:        8px;
    --radius-lg:     12px;

    /* Shadows */
    --shadow-sm:     0 1px 3px rgba(15, 30, 43, 0.06);
    --shadow-md:     0 4px 20px rgba(15, 30, 43, 0.08);
    --shadow-lg:     0 8px 40px rgba(15, 30, 43, 0.12);

    /* Transitions */
    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --speed:         0.2s;
}

/* ── Base Typography ─────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

p {
    color: var(--slate);
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    transition: color var(--speed) var(--ease);
}
a:hover { color: var(--gold-hover); }

/* ── Spectre overrides (nuke conflicting defaults) ───────────── */
#header.section,
#body-wrapper.section,
.section { padding: 0; }
.container { padding: 0; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--navy) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow var(--speed) var(--ease);
}

.site-header.scrolled {
    background: var(--navy) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.header-logo { flex-shrink: 0; }

.logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold-light);
}

/* Navigation links */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links li a.active:hover {
    background: transparent;
}

.nav-links li a.active {
    color: var(--white);
    font-weight: 700;
    background: transparent;
    text-decoration: none;
    border-bottom: 2px solid var(--gold-light);
    border-radius: 0;
    padding-bottom: 0.35rem;
}

/* Language switcher */
.header-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0.75rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity var(--speed) var(--ease);
    flex-shrink: 0;
    position: relative;
}

/* Swiss flag is square (1:1) */
.lang-flag .fi-ch { width: 18px; height: 18px; background-size: cover; }
.lang-flag:has(.fi-ch) { width: 18px; }

/* FR and GB flags are rectangular (4:3) */
.lang-flag .fi { width: 24px; height: 18px; background-size: cover; }

.lang-flag:hover {
    opacity: 1;
}

.lang-flag--active {
    opacity: 1;
}

.lang-flag--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 1px;
}

/* Hamburger toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background var(--speed) var(--ease);
}

.mobile-toggle:hover { background: rgba(255, 255, 255, 0.08); }

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: var(--navy);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(15, 30, 43, 0.75) 0%,
        rgba(140, 115, 82, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 4rem 2rem 3.5rem;
}

.hero h1 {
    color: var(--white);
    font-weight: 600;
    margin: 0;
    max-width: 40rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 44rem;
    margin: 1rem 0 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════ */
.content-section {
    padding: 3rem 0 4rem;
}

.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page content -- renders directly, no card wrapper */
.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content > p:first-child {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.page-content p { color: var(--slate); }

.page-content h2 {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line-light);
}

.page-content h3 {
    margin-top: 2rem;
    color: var(--navy);
}

.page-content ul,
.page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
    color: var(--slate);
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.page-content a {
    color: var(--gold);
    border-bottom: 1px solid rgba(140, 115, 82, 0.3);
    transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.page-content a:hover {
    color: var(--gold-hover);
    border-bottom-color: var(--gold-hover);
}

/* Override page-content link styles for CTA buttons */
.page-content .cta-btn {
    color: var(--white);
    border-bottom: none;
}
.page-content .cta-btn:hover {
    color: var(--white);
    border-bottom: none;
}

/* Override page-content img margins inside home sections */
.page-content .home-section__image img {
    margin: 0;
}

.page-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.page-content strong { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.home-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line-light);
}

.home-section:last-child {
    border-bottom: none;
    padding-bottom: 1rem;
}

.home-section__content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.home-section__content p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.home-section__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.home-section__content ul li {
    color: var(--slate);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.home-section__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.home-section__image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.home-section__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease);
    margin: 0;
}

.home-section__image:hover img {
    transform: scale(1.03);
}

.cta-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gold);
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    border-bottom: none !important;
    transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.cta-btn:hover {
    background: var(--gold-hover);
    color: var(--white);
    transform: translateY(-1px);
}

/* Reverse layout for services section (image left, text right) */
.home-section--services {
    direction: ltr; /* ensure proper direction */
}

@media (max-width: 768px) {
    .home-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .home-section__image {
        order: -1;
    }

    .home-section__image img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .home-section__image img {
        height: 180px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT GRID
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--speed) var(--ease);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.contact-card p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.contact-card a {
    color: var(--gold);
    border-bottom: 1px solid rgba(140, 115, 82, 0.3);
}
.contact-card a:hover {
    color: var(--gold-hover);
    border-bottom-color: var(--gold-hover);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.page-content h2 + .notices,
.page-content h2 + form {
    margin-top: 0;
}

.page-content form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.page-content form label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    display: block;
}

.page-content form input[type="text"],
.page-content form input[type="email"],
.page-content form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.page-content form input[type="text"]:focus,
.page-content form input[type="email"]:focus,
.page-content form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(140, 115, 82, 0.12);
}

.page-content form textarea {
    resize: vertical;
    min-height: 140px;
}

.page-content form .form-group {
    margin-bottom: 1.25rem;
}

.page-content form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.page-content form button[type="submit"],
.page-content form .cta-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white) !important;
    background: var(--gold);
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.page-content form button[type="submit"]:hover,
.page-content form .cta-btn:hover {
    background: var(--gold-hover);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Form success/error messages */
.form-messages .notices {
    margin-bottom: 1.5rem;
}

.form-messages .notices p {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-messages .notices.green p {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.form-messages .notices.red p {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Email reveal behind captcha */
.email-hidden {
    font-size: 0.85rem;
    color: var(--slate-muted);
    font-style: italic;
}

.email-revealed {
    font-style: normal;
}

.email-revealed a {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(140, 115, 82, 0.3);
}

.email-revealed a:hover {
    color: var(--gold-hover);
    border-bottom-color: var(--gold-hover);
}

/* Turnstile widget spacing */
.page-content form .form-group .cf-turnstile {
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy-light));
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.6rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer-addresses p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1.55;
}

.footer-email {
    margin-top: 0.75rem;
}

.footer-email a {
    color: var(--gold-light);
    font-size: 0.9rem;
    transition: color var(--speed) var(--ease);
}
.footer-email a:hover { color: var(--white); }

.site-footer h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-legal-heading {
    margin-top: 1.5rem;
}

.site-footer ul li {
    margin-bottom: 0.45rem;
}

.site-footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--speed) var(--ease);
}
.site-footer ul a:hover { color: var(--white); }

.footer-lang-list a.active {
    color: var(--gold-light);
    font-weight: 500;
}

.footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERLAY MENU
   ═══════════════════════════════════════════════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.mobile-nav-links li a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    display: inline-block;
    transition: color var(--speed) var(--ease);
}

.mobile-nav-links li a:hover {
    color: var(--gold-light);
}

.mobile-nav-links li a.active {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: 0.25rem;
}

.mobile-lang {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mobile-lang .lang-flag {
    width: 32px;
    height: 24px;
}

.mobile-lang .lang-flag:has(.fi-ch) {
    width: 24px;
    height: 24px;
}

.mobile-lang .lang-flag .fi {
    width: 32px;
    height: 24px;
}

.mobile-lang .lang-flag .fi-ch {
    width: 24px;
    height: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .header-inner { padding: 0 1.5rem; }
    .hero-content { padding: 3.5rem 1.5rem 3rem; }
    .content-container { padding: 0 1.5rem; }
    .footer-inner { padding: 0 1.5rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (Tablet / Mobile)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    /* Header: hide desktop nav, show hamburger */
    .header-nav,
    .header-lang {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 45vh;
    }

    .hero-content {
        padding: 3rem 1.25rem 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Content */
    .content-section {
        padding: 2rem 0 3rem;
    }

    .content-container {
        padding: 0 1.25rem;
    }

    .page-content > p:first-child {
        font-size: 1.05rem;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px (Small phones)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .header-inner { padding: 0 1rem; }
    .hero-content { padding: 2.5rem 1rem 2rem; }
    .content-container { padding: 0 1rem; }
    .footer-inner { padding: 0 1rem; }

    .logo-main { font-size: 1.15rem; }
    .logo-sub { font-size: 0.58rem; }

    .hero {
        min-height: 40vh;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .site-header,
    .mobile-toggle,
    .mobile-overlay,
    .header-lang,
    .lang-flag,
    .site-footer {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        background: none !important;
        padding: 1rem 0;
    }

    .hero-overlay { display: none; }

    .hero h1 {
        color: black;
        text-shadow: none;
        font-size: 24pt;
    }

    .hero-subtitle {
        color: #333;
    }

    .page-content {
        max-width: 100%;
    }

    .contact-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    a { color: black; }
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY: Body lock when mobile menu open
   ═══════════════════════════════════════════════════════════════ */
body.mobile-nav-open {
    overflow: hidden;
}
