/* ==========================================================
   LISA MARY ALLISON — Warm Ivory / Bronze Glass System
   ========================================================== */

:root {
    /* Warm dark foundation */
    --dark-900: #1a1410;
    --dark-800: #2c2218;
    --dark-700: #3d3024;
    --dark-600: #4e3e30;
    --dark-500: #5f4d3c;

    /* Warm accent (bronze/gold-brown) — WCAG AA corrected */
    --accent-900: #5a4518;
    --accent-700: #6b5d45;
    --accent-500: #807059;
    --accent-400: #b8a48a;
    --accent-300: #d4c4a8;
    --accent-200: #e8dcc8;
    --accent-glow: rgba(139, 115, 85, 0.25);

    /* Neutrals — WCAG AA corrected for white-bg contrast */
    --white: #ffffff;
    --ivory: #faf9f7;
    --cream: #f5f0ea;
    --warm-gray: #e8e4df;
    --text-primary: #2F261F;
    --text-secondary: #5A5149;
    --text-muted: #7A6A57;

    /* UI semantic tokens — deeper for authority */
    --color-button-bg: #74624F;
    --color-border: #A08E79;
    --color-focus: #6E5C48;
    --color-nav: #4F463E;

    /* Glass tokens (dark sections) */
    --glass-bg: rgba(44, 34, 24, 0.55);
    --glass-bg-strong: rgba(44, 34, 24, 0.70);
    --glass-border: rgba(139, 115, 85, 0.18);
    --glass-border-strong: rgba(139, 115, 85, 0.30);
    --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
    --glass-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.30);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(32px);
    --glass-sat: saturate(150%);

    /* Light glass (light sections) */
    --lglass-bg: rgba(44, 34, 24, 0.03);
    --lglass-border: rgba(44, 34, 24, 0.14);
    --lglass-shadow: 0 4px 24px rgba(44, 34, 24, 0.06);
    --lglass-shadow-hover: 0 12px 40px rgba(44, 34, 24, 0.10);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --h1: clamp(2.75rem, 5.5vw, 4.25rem);
    --h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --h3: clamp(1.05rem, 1vw + 0.8rem, 1.25rem);

    /* Spacing */
    --section-pad: clamp(96px, 12vw, 140px);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;

    /* Motion */
    --ease: cubic-bezier(.2,.8,.2,1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    :root { --glass-blur: blur(12px); --glass-blur-strong: blur(16px); }
}

/* --- Skip Link --- */
.skip-link {
    position: absolute; top: -100%; left: 16px; z-index: 10000;
    background: var(--color-button-bg); color: var(--white);
    padding: 12px 24px; border-radius: 0 0 8px 8px;
    font-weight: 600; font-size: 14px; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent-400); outline-offset: 2px; }

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { width: min(100% - 48px, 1100px); margin-inline: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ===================================================================
   GLASS SURFACE
   =================================================================== */
.section-dark .glass-surface,
.hero .glass-surface {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--glass-shadow);
    -webkit-backdrop-filter: var(--glass-blur) var(--glass-sat);
    backdrop-filter: var(--glass-blur) var(--glass-sat);
}
.section-dark .glass-surface::after,
.hero .glass-surface::after {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    box-shadow: var(--glass-inset);
}

.section:not(.section-dark) .glass-surface {
    position: relative;
    background: var(--white);
    border: 1px solid var(--lglass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--lglass-shadow);
}
.section:not(.section-dark) .glass-surface::after {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.glass-surface { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }

.section-dark .glass-surface:hover {
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
}
.section:not(.section-dark) .glass-surface:hover {
    transform: translateY(-4px);
    box-shadow: var(--lglass-shadow-hover);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .section-dark .glass-surface, .hero .glass-surface {
        background: rgba(44, 34, 24, 0.92) !important;
    }
}

/* ===================================================================
   ACCENT TEXT
   =================================================================== */
.accent-text {
    background: linear-gradient(105deg, var(--accent-400) 0%, var(--accent-200) 25%, var(--accent-400) 50%, var(--accent-200) 75%, var(--accent-400) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Tighter shimmer range on light backgrounds for WCAG AA contrast */
.section:not(.section-dark):not(.hero) .accent-text,
.cta-band .accent-text {
    background: linear-gradient(105deg, var(--color-focus) 0%, var(--accent-700) 25%, var(--color-focus) 50%, var(--accent-700) 75%, var(--color-focus) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    border: none; border-radius: var(--r-sm); cursor: pointer;
    transition: all var(--transition); text-decoration: none;
}
.btn-accent {
    background: var(--color-button-bg); color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3);
    position: relative; overflow: hidden;
}
.btn-accent::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.35s ease;
    pointer-events: none;
}
.btn-accent:hover::after { opacity: 1; }
.btn-accent:hover {
    background: var(--accent-700);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.5), 0 0 20px rgba(139, 115, 85, 0.2);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent; color: var(--accent-400);
    border: 1px solid var(--accent-400);
}
.btn-ghost:hover { background: rgba(139, 115, 85, 0.08); }

.section:not(.section-dark) .btn-ghost { color: var(--color-focus); border-color: var(--color-border); }
.section:not(.section-dark) .btn-ghost:hover { background: rgba(139, 115, 85, 0.06); }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 24px; font-size: 0.72rem; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===================================================================
   NAV
   =================================================================== */
body > nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 249, 247, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
body > nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    border-bottom-color: rgba(160, 142, 121, 0.25);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; padding: 18px 24px;
    position: relative;
}

.nav-brand {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400;
    color: var(--text-primary); letter-spacing: 0.02em;
    flex-shrink: 0;
}

.nav-links {
    display: flex; align-items: center; gap: 24px; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links > li > a {
    font-size: 0.72rem; font-weight: 400;
    color: var(--color-nav);
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 4px 0;
}
.nav-links > li > a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--accent-500);
    transform: scaleX(0); transition: transform var(--transition);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--text-primary); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { transform: scaleX(1); }

/* Desktop dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap::before {
    content: ''; position: absolute;
    top: 100%; left: -12px; right: -12px; height: 20px;
    display: none;
}
.nav-dropdown-wrap:hover::before { display: block; }
.nav-dropdown {
    display: none; position: absolute;
    top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
    background: rgba(250, 249, 247, 0.97);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--warm-gray);
    border-radius: var(--r-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
    display: block; padding: 10px 24px;
    font-size: 0.78rem; font-weight: 300;
    color: var(--color-nav);
    text-transform: none; letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover {
    color: var(--text-primary);
    background: rgba(139, 115, 85, 0.06);
}

/* Nav right */
.nav-right {
    display: flex; align-items: center; gap: 16px;
    flex-shrink: 0;
}

.nav-shop-btn {
    display: inline-flex; align-items: center;
    padding: 9px 20px;
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--color-button-bg); color: var(--white);
    border-radius: var(--r-sm);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-shop-btn:hover {
    background: var(--accent-700);
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none; border: none;
    color: var(--text-primary); cursor: pointer;
    min-width: 44px; min-height: 44px;
    padding: 12px; margin: -12px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: color var(--transition);
}
.nav-toggle:hover { color: var(--color-focus); }

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-shop-btn { display: none; }
    .nav-toggle { display: block; }
    .nav-inner { height: 56px; padding: 0 16px; }
    .nav-brand { font-size: 1.2rem; }
}

/* ===================================================================
   MOBILE DRAWER — Enterprise (fetch-injected from drawer.html)
   =================================================================== */
.mobile-drawer { display: none; }

@media (max-width: 960px) {
    /* Overlay */
    .mobile-overlay {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(26, 20, 16, 0.55);
        backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
        z-index: 1999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.25s ease, visibility 0s 0.25s;
        -webkit-tap-highlight-color: transparent;
    }
    body.menu-open .mobile-overlay {
        opacity: 1; visibility: visible;
        transition: opacity 0.25s ease, visibility 0s 0s;
    }

    /* Drawer shell */
    .mobile-drawer {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: min(340px, 85vw);
        z-index: 2000;
        display: flex; flex-direction: column;
        background: var(--dark-900);
        color: var(--cream);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.28s;
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    }
    .mobile-drawer[hidden] { display: none !important; }
    body.menu-open .mobile-drawer {
        transform: translateX(0); visibility: visible;
        transition: transform 0.28s cubic-bezier(0, 0, 0.2, 1), visibility 0s 0s;
    }

    /* Header — anchored top bar, visually distinct */
    .md-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 18px 20px; min-height: 64px;
        border-bottom: 1px solid rgba(139, 115, 85, 0.28);
        background: var(--dark-800);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        flex-shrink: 0;
        position: relative; z-index: 1;
    }
    .md-header-brand {
        display: flex; align-items: center; gap: 10px;
        font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
        color: var(--white); text-decoration: none; letter-spacing: 0.02em;
    }
    .md-logo {
        width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
    }

    /* Close button — circular, premium, high contrast */
    .md-close {
        width: 44px; height: 44px;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255, 255, 255, 0.14);
        border: 1.5px solid rgba(255, 255, 255, 0.32);
        cursor: pointer;
        color: var(--white); border-radius: 50%;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    }
    .md-close:hover {
        background: rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.45);
    }
    .md-close:active {
        background: rgba(255, 255, 255, 0.28);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(0.94);
    }

    /* Scrollable body — generous editorial spacing */
    .md-scroll {
        flex: 1; overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 24px 28px;
        overscroll-behavior: contain;
    }

    /* Featured card — flagship category, strongest visual weight */
    .md-featured {
        display: block;
        background: linear-gradient(135deg, rgba(139, 115, 85, 0.10) 0%, rgba(139, 115, 85, 0.04) 100%);
        border: 1px solid rgba(139, 115, 85, 0.22);
        border-radius: 14px; padding: 20px 20px 18px;
        margin-bottom: 28px;
        text-decoration: none; color: inherit;
        transition: background 0.15s ease;
    }
    .md-featured:active { background: rgba(139, 115, 85, 0.16); }
    .md-featured-status {
        display: inline-block; font-size: 11px; font-weight: 700;
        letter-spacing: 0.1em; text-transform: uppercase;
        color: var(--accent-400);
        background: rgba(139, 115, 85, 0.12);
        border: 1px solid rgba(139, 115, 85, 0.22);
        border-radius: 4px; padding: 3px 9px;
        margin-bottom: 10px;
    }
    .md-featured.is-current .md-featured-status {
        color: var(--accent-300); background: rgba(139, 115, 85, 0.18);
        border-color: rgba(139, 115, 85, 0.30);
    }
    .md-featured-title {
        display: block;
        font-family: var(--font-heading);
        font-size: 20px; font-weight: 600;
        color: var(--white); margin-bottom: 6px;
        letter-spacing: 0.01em;
    }
    .md-featured-meta {
        display: block; font-size: 14px; line-height: 1.45;
        color: rgba(255, 255, 255, 0.72); margin-bottom: 12px;
    }
    .md-featured-action {
        display: inline-block; font-size: 14px; font-weight: 700;
        letter-spacing: 0.04em; color: var(--accent-400);
    }

    /* Primary nav — editorial vertical rhythm */
    .md-nav {
        display: flex; flex-direction: column;
    }
    .md-link {
        display: flex; align-items: center; justify-content: center;
        min-height: 56px; padding: 0 4px;
        font-size: 16px; font-weight: 500;
        color: rgba(255, 255, 255, 0.90); text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.15s ease;
    }
    .md-link:active { color: var(--white); }
    .md-link.is-active { color: var(--accent-400); }

    /* Quick links — seamless continuation */
    .md-quick-links {
        margin-top: 4px; padding-top: 16px;
        border-top: 1px solid rgba(139, 115, 85, 0.14);
    }
    .md-link.md-sub {
        font-size: 14px; font-weight: 500;
        min-height: 48px;
        color: rgba(255, 255, 255, 0.65);
    }
    .md-link.md-sub:active { color: var(--white); }

    /* Bottom zone — CTA + contact info */
    .md-bottom {
        padding: 16px 20px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        background: rgba(44, 34, 24, 0.5);
        border-top: 1px solid rgba(139, 115, 85, 0.22);
        flex-shrink: 0;
    }
    .md-cta {
        display: block; width: 100%; text-align: center;
        text-decoration: none; height: 52px;
        padding: 0 24px; line-height: 52px;
        font-size: 15px; font-weight: 700;
        letter-spacing: 0.04em;
        background: var(--accent-700); color: var(--white);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: box-shadow 0.2s ease, transform 0.15s ease;
    }
    .md-cta:active {
        transform: scale(0.98);
        box-shadow: 0 6px 24px rgba(139, 115, 85, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    .md-bottom-contact {
        display: flex; flex-direction: column; align-items: center;
        gap: 4px; margin-top: 14px;
    }
    .md-email {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 13px; font-weight: 500;
        color: var(--accent-400); text-decoration: none;
        padding: 6px 0; min-height: 44px;
        transition: color 0.15s ease;
    }
    .md-email:active { color: var(--accent-300); }
    .md-email svg { flex-shrink: 0; }
    .md-tagline {
        font-size: 12px; font-weight: 400;
        color: rgba(255, 255, 255, 0.40);
        letter-spacing: 0.02em;
    }

    /* Focus-visible for a11y */
    .md-cta:focus-visible,
    .md-email:focus-visible,
    .md-featured:focus-visible,
    .md-link:focus-visible,
    .md-close:focus-visible {
        outline: 2px solid var(--accent-400);
        outline-offset: 2px;
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden; position: fixed;
        left: 0; right: 0;
    }
}

/* Legacy inline drawer — hide on all viewports (replaced by fetch-injected) */
.drawer-overlay, .drawer-panel, .drawer-header, .drawer-body,
.drawer-links, .drawer-group, .drawer-link, .drawer-sub,
.drawer-footer, .drawer-shop-btn, .drawer-title, .drawer-close { display: none; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(140px, 18vw, 200px) 0 var(--section-pad);
    background: linear-gradient(170deg, var(--dark-900) 0%, var(--dark-700) 50%, var(--dark-800) 100%);
    color: var(--cream);
}
.hero-ambient {
    position: absolute; inset: 0; opacity: 0.3;
    background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(139,115,85,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 70% 60%, rgba(139,115,85,0.08) 0%, transparent 70%);
}

.hero-eyebrow {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent-400); margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-heading); font-size: var(--h1);
    font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.05rem; font-weight: 300;
    color: var(--accent-300); max-width: 560px;
    line-height: 1.75; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
    .container { width: min(100% - 32px, 1100px); }

    .hero { min-height: auto; padding: 100px 0 48px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ===================================================================
   PROOF STRIP
   =================================================================== */
.proof-strip {
    background: var(--dark-800);
    border-top: 1px solid rgba(139, 115, 85, 0.12);
    border-bottom: 1px solid rgba(139, 115, 85, 0.12);
    padding: 16px 0;
}
.proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ps-item { white-space: nowrap; }
.ps-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-400);
}
.ps-divider {
    width: 1px;
    height: 14px;
    background: rgba(139, 115, 85, 0.25);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .proof-strip-inner { gap: 12px 16px; justify-content: center; }
    .ps-label { font-size: 0.62rem; letter-spacing: 0.06em; }
    .ps-divider { display: none; }
    .ps-item::after {
        content: '\2022'; margin-left: 16px;
        color: rgba(139, 115, 85, 0.3); font-size: 0.5rem;
    }
    .ps-item:last-child::after { display: none; }
}

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { padding: var(--section-pad) 0; }
.section-dark {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    color: var(--cream);
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 72px); }
.section-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--color-focus); margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--accent-400); }

h2 { font-family: var(--font-heading); font-size: var(--h2); font-weight: 300; line-height: 1.15; margin-bottom: 0.8em; }
.section-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; max-width: 60ch; }
.section-dark .section-desc { color: var(--accent-300); }

/* ===================================================================
   SIGNATURE CATEGORIES
   =================================================================== */
.category-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.category-card {
    display: flex; flex-direction: column;
    padding: 32px 24px; text-align: center;
    text-decoration: none; color: inherit;
}
.category-card:hover { transform: translateY(-4px); }

.cat-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    color: var(--accent-500);
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-image {
    width: 100%; height: 180px; margin: 0 0 20px;
    border-radius: var(--r-sm); overflow: hidden;
}
.cat-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover .cat-image img { transform: scale(1.05); }

.category-card h3 {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400;
    margin-bottom: 12px;
}
.category-card p {
    font-size: 0.85rem; font-weight: 300; color: var(--text-secondary);
    line-height: 1.7; flex: 1;
}
.cat-cta {
    display: block; margin-top: 16px;
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--color-focus);
    transition: color var(--transition);
}
.category-card:hover .cat-cta { color: var(--text-primary); }

@media (max-width: 960px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   WHY LMA
   =================================================================== */
.why-layout { max-width: 720px; }
.why-lead {
    font-size: 1.05rem; font-weight: 300; color: var(--accent-300);
    line-height: 1.7; margin-bottom: 40px;
}

.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
    display: flex; gap: 20px; align-items: flex-start;
}
.wp-num {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 300;
    color: var(--accent-500); min-width: 48px; line-height: 1;
    padding-top: 2px;
}
.why-point h3 {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
    color: var(--cream); margin-bottom: 4px;
}
.why-point p {
    font-size: 0.88rem; font-weight: 300; color: var(--accent-300); line-height: 1.7;
}

/* ===================================================================
   MATERIALS
   =================================================================== */
.materials-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.material-card { padding: 32px 24px; text-align: center; }

.mat-icon {
    width: 48px; height: 48px; margin: 0 auto 16px;
    color: var(--accent-500);
}
.mat-icon svg { width: 100%; height: 100%; }

.material-card h3 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400;
    margin-bottom: 8px;
}
.material-card p {
    font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7;
}

@media (max-width: 960px) { .materials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .materials-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FEATURED PIECES
   =================================================================== */
.featured-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.featured-card { overflow: hidden; }

.feat-image {
    height: 320px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(139,115,85,0.08) 0%, rgba(139,115,85,0.02) 100%);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 2px solid rgba(139, 115, 85, 0.15);
}
.feat-pattern { width: 100%; height: 100%; }
.feat-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-card:hover .feat-image img { transform: scale(1.06); }
.feat-image::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 30px rgba(26, 20, 16, 0.15);
    border-radius: inherit;
}

.feat-info { padding: 20px 24px 24px; }

.feat-tag {
    font-size: 0.65rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent-400); background: rgba(139,115,85,0.15);
    padding: 3px 10px; border-radius: 20px;
    display: inline-block; margin-bottom: 10px;
}

.feat-info h3 {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400;
    color: var(--cream); margin-bottom: 8px;
}
.feat-info p {
    font-size: 0.85rem; font-weight: 300; color: var(--accent-300);
    line-height: 1.7; margin-bottom: 14px;
}

.feat-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; gap: 12px; flex-wrap: wrap;
}
.feat-material {
    font-size: 0.72rem; font-weight: 400; color: var(--accent-400);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.feat-price {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500;
    color: var(--accent-200);
}

.featured-cta {
    display: flex; justify-content: center; gap: 16px; margin-top: 48px;
    flex-wrap: wrap;
}

@media (max-width: 960px) { .featured-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===================================================================
   PROCESS
   =================================================================== */
.process-timeline {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
    position: relative;
}
.process-step {
    padding: 32px 28px; position: relative;
    border-left: 1px solid var(--glass-border);
}
.process-step:first-child { border-left: none; }

.process-num {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 300;
    color: var(--color-border); margin-bottom: 12px;
}
.process-step h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400;
    color: var(--text-primary); margin-bottom: 8px;
}
.section-dark .process-num { color: var(--accent-400); }
.section-dark .process-step h3 { color: var(--cream); }
.process-step p { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }
.section-dark .process-step p { color: var(--accent-300); }

.process-cta { text-align: center; margin-top: 40px; }

@media (max-width: 960px) {
    .process-timeline { grid-template-columns: 1fr; }
    .process-step { border-left: 1px solid var(--lglass-border); border-top: none; }
    .section-dark .process-step { border-left-color: var(--glass-border); }
}

/* ===================================================================
   SERVICES (reusable for inner pages)
   =================================================================== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.service-card { padding: 32px 28px; }
.sv-num {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 300;
    color: var(--color-border); margin-bottom: 12px;
}
.section-dark .sv-num { color: var(--accent-400); }
.service-card h3 {
    font-family: var(--font-heading); font-size: var(--h3); font-weight: 400;
    margin-bottom: 10px;
}
.section-dark .service-card h3 { color: var(--cream); }
.service-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }
.section-dark .service-card p { color: var(--accent-300); }

@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-layout {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
}
@media (max-width: 960px) { .about-layout { grid-template-columns: 1fr; } }

.founder-quote {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 300; font-style: italic;
    color: var(--accent-400); line-height: 1.5;
    border-left: 3px solid var(--accent-500); padding-left: 24px;
    margin: 24px 0;
}
.section:not(.section-dark) .founder-quote { color: var(--color-focus); border-left-color: var(--color-border); }

.about-bio p { font-size: 0.95rem; color: var(--accent-300); line-height: 1.7; margin-bottom: 12px; max-width: 60ch; }
.section:not(.section-dark) .about-bio p { color: var(--text-secondary); }
.about-bio .lead { font-size: 1rem; }
.section:not(.section-dark) .about-bio .lead { color: var(--text-primary); }

.about-content .btn { margin-top: 24px; }

.about-visual { display: flex; justify-content: center; }
.about-frame { padding: 48px 40px; text-align: center; width: 100%; }
.about-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--accent-500); }
.about-ph-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; color: var(--cream); }
.about-ph-title { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.section:not(.section-dark) .about-ph-name { color: var(--text-primary); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card { padding: 32px 28px; }

.test-stars {
    font-size: 1rem; color: var(--accent-500);
    letter-spacing: 2px; margin-bottom: 16px;
}

.testimonial-card p {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 300;
    font-style: italic; line-height: 1.7; color: var(--text-primary);
    margin-bottom: 20px;
}

.test-author { border-top: 1px solid var(--lglass-border); padding-top: 16px; }
.test-name {
    font-size: 0.85rem; font-weight: 500; color: var(--text-primary);
    display: block;
}
.test-product {
    font-size: 0.72rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
}

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}

.faq-item { overflow: hidden; }

.faq-q {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
    color: var(--cream);
    padding: 20px 24px; cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+'; font-size: 1.2rem; color: var(--accent-400);
    transition: transform var(--transition);
}
details[open] .faq-q::after { content: '-'; }

.faq-a {
    padding: 0 24px 20px;
}
.faq-a p {
    font-size: 0.9rem; font-weight: 300; color: var(--accent-300);
    line-height: 1.7;
}

/* Light section FAQ variant */
.section:not(.section-dark) .faq-q { color: var(--text-primary); }
.section:not(.section-dark) .faq-a p { color: var(--text-secondary); }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band {
    background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 100%);
    padding: clamp(48px, 6vw, 72px) 0; color: var(--cream);
}
.cta-band-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; margin-bottom: 4px; }
.cta-band p { font-size: 0.95rem; color: var(--accent-300); }

@media (max-width: 640px) {
    .cta-band-inner { flex-direction: column; text-align: center; }
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-intro { font-size: 0.95rem; color: var(--accent-300); line-height: 1.7; margin: 16px 0 28px; }

.contact-card { padding: 24px; margin-bottom: 24px; }
.contact-card .cc-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; color: var(--cream); }
.contact-card .cc-title { font-size: 0.8rem; color: var(--accent-400); margin-bottom: 12px; }
.cc-divider { height: 1px; background: var(--glass-border); margin: 12px 0; }
.cc-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.cc-trust span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-400); }

.contact-pathways { display: flex; flex-direction: column; gap: 12px; }
.pathway { font-size: 0.88rem; color: var(--accent-300); line-height: 1.5; }
.pathway strong { color: var(--accent-200); }

.contact-form-glass { padding: 32px; }
.cf-header {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400;
    color: var(--cream); margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 14px 16px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    color: var(--cream);
    transition: border-color var(--transition);
    min-width: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(212, 196, 168, 0.6); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent-500); }

.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-select option { background: var(--dark-800); color: var(--cream); }

@media (max-width: 640px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea { font-size: 16px; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    background: var(--dark-900); color: var(--accent-300);
    padding: 48px 0 32px;
}
.footer-inner {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding-bottom: 32px; border-bottom: 1px solid rgba(139,115,85,0.12);
    gap: 24px;
}
.footer-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; color: var(--cream); }
.footer-tagline { font-size: 0.78rem; color: var(--accent-400); margin-top: 4px; }

.footer-col-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-400); margin-bottom: 10px; font-weight: 600; }
.footer-nav-group + .footer-nav-group { margin-top: -8px; }
.footer-links { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.8rem; color: var(--accent-400); transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding-top: 24px; font-size: 0.75rem; color: var(--accent-400);
    gap: 6px;
}
.footer-email a { color: var(--accent-400); transition: color var(--transition); }
.footer-email a:hover { color: var(--cream); }
.footer-credit { font-size: 0.62rem; letter-spacing: 0.06em; margin-top: 12px; opacity: 0.35; transition: opacity 0.2s ease; }
.footer-credit:hover { opacity: 0.6; }
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { color: var(--accent-400); }

/* ===================================================================
   PAGE HEADER (inner pages)
   =================================================================== */
.page-header {
    padding: clamp(140px, 16vw, 180px) 0 clamp(48px, 6vw, 64px);
    background: linear-gradient(170deg, var(--dark-900) 0%, var(--dark-700) 50%, var(--dark-800) 100%);
    color: var(--cream); position: relative; overflow: hidden;
}
.page-header .hero-ambient { position: absolute; inset: 0; opacity: 0.3;
    background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(139,115,85,0.15) 0%, transparent 70%); }
.page-header .section-eyebrow { color: var(--accent-400); }
.page-header h1 { font-family: var(--font-heading); font-size: var(--h1); font-weight: 300; line-height: 1.1; margin-bottom: 12px; }
.page-header p { font-size: 1.05rem; color: var(--accent-300); max-width: 560px; line-height: 1.7; }

/* ===================================================================
   PRODUCT GRID (inner pages)
   =================================================================== */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px;
}
.product-card { overflow: hidden; text-decoration: none; color: inherit; position: relative; }
.product-card::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(139, 115, 85, 0.35) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover { transform: translateY(-4px); }

.prod-image {
    height: 280px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(139,115,85,0.06) 0%, rgba(139,115,85,0.02) 100%);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.prod-image svg { width: 80%; height: 80%; opacity: 0.5; }
.prod-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .prod-image img { transform: scale(1.05); }
.prod-image::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 20px rgba(26, 20, 16, 0.1);
    border-radius: inherit;
}
.section-dark .prod-image {
    border-bottom-color: rgba(139, 115, 85, 0.15);
}
.section-dark .prod-image::after {
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.2);
}

.prod-info { padding: 20px 24px 24px; }
.prod-info h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400;
    margin-bottom: 8px;
}
.prod-info p {
    font-size: 0.85rem; font-weight: 300; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 12px;
}
.prod-materials {
    font-size: 0.72rem; font-weight: 400; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.prod-footer {
    display: flex; justify-content: space-between; align-items: center;
}
.prod-price {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500;
    color: var(--color-focus);
}
.prod-cta {
    font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--color-focus);
}
.product-card:hover .prod-cta { color: var(--text-primary); }

/* Dark product grid variant */
.section-dark .prod-info h3 { color: var(--cream); }
.section-dark .prod-info p { color: var(--accent-300); }
.section-dark .prod-price { color: var(--accent-200); }
.section-dark .prod-cta { color: var(--accent-400); }
.section-dark .product-card:hover .prod-cta { color: var(--accent-200); }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ===================================================================
   SMALLEST SCREENS (380px)
   =================================================================== */
@media (max-width: 380px) {
    .hero h1 { font-size: 2.2rem; }
}

/* ===================================================================
   LIGHT-SECTION FOCUS & LINK STATES
   =================================================================== */
.section:not(.section-dark) a:focus-visible,
.section:not(.section-dark) button:focus-visible,
.section:not(.section-dark) input:focus-visible,
.section:not(.section-dark) select:focus-visible,
.section:not(.section-dark) textarea:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
}

/* ===================================================================
   REDUCED MOTION (accessibility)
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    .accent-text { -webkit-text-fill-color: var(--accent-400); }
    .section:not(.section-dark):not(.hero) .accent-text { -webkit-text-fill-color: var(--color-focus); }
}
