/* --- 1. Variables & Base Setup --- */
:root {
    --gold-primary: #CFA660;
    --gold-hover: #b88f4b;
    --gold-glow: rgba(207, 166, 96, 0.2);
    --bg-cream: #FCFBF8;
    --bg-alt: #F4F1EA;
    --text-ink: #141414;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-ink);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif-text {
    font-family: var(--font-display);
    font-weight: 600;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- 2. Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 var(--gold-glow); }
    70% { box-shadow: 0 0 0 15px rgba(207, 166, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(207, 166, 96, 0); }
}

/* --- 3. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-gold {
    background-color: var(--gold-primary);
    color: var(--white);
    border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-ink);
}

/* --- 4. Navigation --- */
header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(252, 251, 248, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

header.scrolled .nav-link { color: var(--text-ink); }
header.scrolled .logo-light { display: none; }
header.scrolled .logo-dark { display: block; }
header.scrolled .logo-img { height: 50px; }

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: height 0.4s ease;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.nav-links {
    display: flex;
    gap: clamp(0.75rem, 1.35vw, 1.35rem);
    align-items: center;
}

.nav-link {
    font-size: clamp(0.68rem, 0.72vw, 0.78rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover { color: var(--gold-primary) !important; }

/* Header CTA button — proportionate with nav */
.nav-cta {
    padding: 0.5rem 1rem;
    font-size: clamp(0.66rem, 0.7vw, 0.72rem);
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Language Switcher ---- */
.lang-switcher {
    position: relative;
    margin-left: 0.4rem;
    flex-shrink: 0;
}

.lang-switcher summary {
    list-style: none;
}

.lang-switcher summary::-webkit-details-marker { display: none; }

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 32px;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lang-current::after {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    opacity: 0.7;
}

.lang-current:hover,
.lang-switcher[open] .lang-current {
    border-color: rgba(207,166,96,0.55);
    background: rgba(255,255,255,0.06);
    color: var(--gold-primary);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 150px;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px;
    background: rgba(20,20,20,0.96);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switcher[open] .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.6rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.lang-flag { font-size: 0.95rem; line-height: 1; }
.lang-code { font-weight: 700; }
.lang-name {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.74;
}

.lang-option:hover,
.lang-option.active {
    color: var(--gold-primary);
    background: rgba(207,166,96,0.12);
}

header.scrolled .lang-current {
    border-color: rgba(0,0,0,0.12);
    color: var(--text-light);
}

header.scrolled .lang-current:hover,
header.scrolled .lang-switcher[open] .lang-current {
    color: var(--gold-primary);
    background: rgba(207,166,96,0.06);
}

header.scrolled .lang-menu {
    border-color: rgba(0,0,0,0.08);
    background: rgba(252,251,248,0.98);
}

header.scrolled .lang-option { color: var(--text-light); }
header.scrolled .lang-option:hover,
header.scrolled .lang-option.active { color: var(--gold-primary); background: rgba(207,166,96,0.08); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background: var(--text-ink);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: var(--text-ink);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: var(--text-ink);
}

/* --- 5. Immersive Hero Section --- */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--text-ink);
    background-image: linear-gradient(rgba(10,10,10,0.6), rgba(10,10,10,0.8)), url('/assets/images/cover.webp?v=20260519d');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    /* Enough top padding to always clear the fixed header + safe area (iPhone notch) */
    padding-top: max(140px, calc(90px + env(safe-area-inset-top)));
    padding-bottom: max(80px, env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    padding: 0 1.5rem;
    z-index: 2;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 6. Trust Bar --- */
.trust-bar {
    background: var(--bg-alt);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-ink);
}

/* --- 7. Interactive Categories Grid --- */
.collections {
    padding: 8rem 0;
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--text-ink);
    cursor: pointer;
}

.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), #2A2A2A;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-smooth);
}

.product-card:hover .card-bg {
    transform: scale(1.08);
}

.card-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2.5rem;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-smooth);
}

.product-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-link {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-smooth);
}

.product-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* --- 8. Configurator Teaser --- */
.configurator-promo {
    padding: 8rem 0;
    background: var(--text-ink);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(207,166,96,0.15) 0%, rgba(20,20,20,0) 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.promo-content { position: relative; z-index: 1; }

.promo-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ui-mockup {
    max-width: 900px;
    margin: 4rem auto 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: pulseGlow 4s infinite;
}

.ui-mockup-inner {
    height: 400px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 9. Footer --- */
footer {
    background: var(--bg-cream);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-ink);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-primary); }

/* --- 10. Utilities & Page-Specific --- */
.trust-icon { color: var(--gold-primary); }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Configurator Preview Block ──────────────────────────── */
.promo-desc {
    font-size: 1.15rem; color: #AAA; max-width: 580px; margin: 0 auto 3rem;
}
.promo-actions { margin-top: 3rem; }
.promo-link {
    display: inline-block; margin-left: 1.5rem; color: #888; font-size: 0.88rem; text-decoration: underline; text-underline-offset: 3px;
}

.cfg-preview-wrap {
    margin: 0 auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07), 0 0 80px rgba(201,168,76,0.12);
    background: #111;
    position: relative;
}

.cfg-browser-bar {
    background: #1c1c1c;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cfg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.cfg-dot.red { background: #ff5f57; }
.cfg-dot.yellow { background: #febc2e; }
.cfg-dot.green { background: #28c840; }

.cfg-url-bar {
    margin-left: 12px;
    font-size: 11px;
    color: #666;
    background: #111;
    border-radius: 4px;
    padding: 3px 12px;
    font-family: monospace;
    letter-spacing: 0.02em;
    flex: 1;
    max-width: 240px;
}

.cfg-screenshot {
    position: relative;
    display: block;
    line-height: 1;
}

.cfg-image-preview {
    overflow: hidden;
    text-decoration: none;
    background: #0d0d0d;
    aspect-ratio: 16 / 9;
}

.cfg-preview-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: filter 0.4s, transform 0.4s;
}

.cfg-preview-wrap:hover .cfg-preview-img {
    filter: brightness(0.55);
    transform: scale(1.015);
}

.design-studio-preview {
    min-height: clamp(360px, 45vw, 520px);
    display: grid;
    grid-template-columns: minmax(120px, 0.7fr) minmax(240px, 1.8fr) minmax(140px, 0.8fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: stretch;
    padding: clamp(1rem, 2.8vw, 2.4rem);
    background:
        radial-gradient(circle at 45% 38%, rgba(236,230,216,0.13), transparent 36%),
        linear-gradient(135deg, #191816 0%, #0d0d0d 100%);
    transition: filter 0.4s;
}

.cfg-preview-wrap:hover .design-studio-preview {
    filter: brightness(0.55);
}

.studio-sidebar,
.studio-controls {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 1rem;
}

.studio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.studio-step {
    height: 36px;
    border-radius: 5px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-step.active {
    background: rgba(207,166,96,0.18);
    color: var(--gold-primary);
}

.studio-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.studio-menu-cover {
    position: relative;
    width: min(78%, 330px);
    aspect-ratio: 0.72;
    border-radius: 10px 7px 7px 10px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(90deg, rgba(0,0,0,0.28), transparent 15%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 8px),
        #273236;
    box-shadow:
        inset -18px -22px 32px rgba(0,0,0,0.24),
        inset 12px 12px 22px rgba(255,255,255,0.06),
        0 28px 44px rgba(0,0,0,0.38);
    transform: perspective(900px) rotateY(-12deg) rotateX(5deg);
}

.studio-elastic {
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 13%;
    width: 8px;
    border-radius: 999px;
    background: #050505;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.studio-shadow {
    position: absolute;
    bottom: 11%;
    width: 58%;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.36);
    filter: blur(10px);
}

.studio-controls {
    display: flex;
    align-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.studio-chip {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.16);
}

.studio-chip.dark { background: #273236; }
.studio-chip.green { background: #60735f; }
.studio-chip.clay { background: #9a6242; }

.studio-line {
    display: block;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
}

.studio-line.short { width: 68%; }

.cfg-live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #C9A84C;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cfg-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.cfg-overlay-cta {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
    text-decoration: none;
}

.cfg-overlay-cta span {
    background: var(--gold-primary, #C9A84C);
    color: #0C0C0C;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    transform: translateY(8px);
    transition: transform 0.35s;
}

.cfg-preview-wrap:hover .cfg-overlay-cta {
    opacity: 1;
}

.cfg-preview-wrap:hover .cfg-overlay-cta span {
    transform: translateY(0);
}

/* ── Feature pills ───────────────────────────────────────── */
.cfg-features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.cfg-feat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #CCC;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    letter-spacing: 0.02em;
    transition: border-color 0.2s, color 0.2s;
}

.cfg-feat:hover {
    border-color: rgba(201,168,76,0.6);
    color: #C9A84C;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .design-studio-preview {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .studio-sidebar,
    .studio-controls {
        display: none;
    }
    .studio-stage {
        min-height: 360px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.4rem; line-height: 1.15; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 1rem; }
    .hero-actions .btn { width: 100%; max-width: 320px; }

    .cfg-preview-wrap {
        border-radius: 8px;
        margin-inline: -0.5rem;
    }

    .cfg-browser-bar {
        padding: 8px 10px;
    }

    .cfg-dot {
        width: 9px;
        height: 9px;
    }

    .cfg-url-bar {
        margin-left: 6px;
        max-width: none;
        min-width: 0;
        padding: 3px 8px;
        font-size: 10px;
    }

    .cfg-image-preview {
        aspect-ratio: auto;
        height: clamp(260px, 72vw, 360px);
    }

    .cfg-preview-img {
        object-position: top center;
    }

    .cfg-live-badge {
        top: 12px;
        left: 12px;
        right: auto;
        font-size: 0.68rem;
        padding: 0.42rem 0.6rem;
    }

    .cfg-overlay-cta {
        opacity: 1;
        align-items: flex-end;
        padding: 1rem;
        background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.68));
    }

    .cfg-overlay-cta span {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        text-align: center;
        transform: none;
    }
    
    .trust-grid {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
        gap: 1.25rem;
    }
    .trust-item { font-size: 1.25rem; }

    .hamburger { display: flex; }
    
    .logo { position: relative; z-index: 101; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s var(--ease-smooth);
        z-index: 100;
        gap: 1.5rem;
        padding: 2rem;
        overflow-y: auto;
    }

    /* CTA button in mobile nav */
    .nav-links .btn-gold {
        background-color: var(--gold-primary);
        color: var(--white);
        border: 1px solid var(--gold-primary);
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-ink);
        font-size: 1.2rem;
    }

    header.scrolled .logo-light,
    header.menu-open .logo-light { display: none; }
    
    header.scrolled .logo-dark,
    header.menu-open .logo-dark { display: block; }

    header.scrolled .nav-link,
    header.menu-open .nav-link { color: var(--text-ink); }

    /* Hamburger stays visible on cream background when open */
    header.menu-open .hamburger span { background: var(--text-ink); }

    /* Mobile lang switcher */
    .lang-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .lang-current {
        color: var(--text-light);
        border-color: rgba(0,0,0,0.12);
    }
    .lang-menu {
        left: 0;
        right: auto;
        background: rgba(252,251,248,0.98);
        border-color: rgba(0,0,0,0.08);
    }
    .lang-option { color: var(--text-light); }
    .lang-option.active { color: var(--gold-primary); }

    .footer-grid { grid-template-columns: 1fr; }
}
