/* ==========================================================
   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 */
    --white: #ffffff;
    --ivory: #faf9f7;
    --cream: #f5f0ea;
    --warm-gray: #e8e4df;
    --text-primary: #2c2c2c;
    --text-secondary: #4a4844;
    --text-muted: #767676;

    /* 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.08);
    --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(80px, 10vw, 120px);

    /* 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(--accent-500); 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.6;
    -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-500) 0%, var(--accent-200) 25%, var(--accent-500) 50%, var(--accent-200) 75%, var(--accent-500) 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(--accent-700) 0%, var(--accent-500) 25%, var(--accent-700) 50%, var(--accent-500) 75%, var(--accent-700) 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(--accent-500); color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3);
}
.btn-accent:hover {
    background: var(--accent-700);
    box-shadow: 0 6px 24px rgba(139, 115, 85, 0.4);
    transform: translateY(-1px);
}
.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(--accent-700); border-color: var(--accent-700); }
.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
   =================================================================== */
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);
}
nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    border-bottom-color: var(--warm-gray);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.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(--text-secondary);
    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(--accent-700); }
.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(--text-secondary);
    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(--accent-700);
    background: rgba(139, 115, 85, 0.04);
}

/* 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(--accent-500); 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(--accent-500); }

@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
   =================================================================== */
.mobile-drawer {
    position: fixed; inset: 0; z-index: 2000;
    visibility: hidden; pointer-events: none;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }

.drawer-overlay {
    position: absolute; inset: 0;
    background: rgba(26, 20, 16, 0.45);
    opacity: 0; transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }

.drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(340px, 85vw);
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; min-height: 56px;
    border-bottom: 1px solid var(--warm-gray);
}
.drawer-title {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
    color: var(--text-primary); text-decoration: none;
}
.drawer-close {
    background: none; border: none; cursor: pointer;
    color: var(--text-secondary);
    min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    margin: -12px -12px -12px 0; padding: 12px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: color var(--transition);
}
.drawer-close:hover { color: var(--text-primary); }

.drawer-body { flex: 1; overflow-y: auto; padding: 24px; -webkit-overflow-scrolling: touch; }
.drawer-shop-btn { margin-bottom: 24px; }
.drawer-links { display: flex; flex-direction: column; }
.drawer-group { display: flex; flex-direction: column; }

.drawer-link {
    display: flex; align-items: center;
    padding: 14px 0; min-height: 44px;
    font-size: 0.95rem; font-weight: 400;
    color: var(--text-primary); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: color var(--transition);
}
.drawer-link:hover, .drawer-link.active { color: var(--accent-700); }

.drawer-sub {
    display: flex; align-items: center;
    padding: 10px 0 10px 20px; min-height: 44px;
    font-size: 0.85rem; font-weight: 300;
    color: var(--text-secondary); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: color var(--transition);
}
.drawer-sub:hover { color: var(--accent-700); }

.drawer-footer { padding: 20px 24px; border-top: 1px solid var(--warm-gray); }
.drawer-footer .btn-ghost { color: var(--accent-700); border-color: var(--accent-700); }
.drawer-footer .btn-ghost:hover { background: rgba(139, 115, 85, 0.06); }
body.drawer-open { overflow: hidden; }

@media (min-width: 961px) {
    .mobile-drawer { display: none !important; }
}

/* ===================================================================
   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.7; margin-bottom: 36px;
}

.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; }
}

/* ===================================================================
   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(40px, 5vw, 60px); }
.section-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent-500); 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.2; margin-bottom: 12px; }
.section-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-desc { color: var(--accent-300); }

/* ===================================================================
   SIGNATURE CATEGORIES
   =================================================================== */
.category-grid {
    display: grid; grid-template-columns: repeat(4, 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%; }

.category-card h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400;
    margin-bottom: 10px;
}
.category-card p {
    font-size: 0.85rem; font-weight: 300; color: var(--text-secondary);
    line-height: 1.6; 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(--accent-500);
    transition: color var(--transition);
}
.category-card:hover .cat-cta { color: var(--accent-700); }

@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.6;
}

/* ===================================================================
   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.6;
}

@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: 220px;
    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;
}
.feat-pattern { width: 100%; height: 100%; }
.feat-image img { width: 100%; height: 100%; object-fit: cover; }

.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.3rem; font-weight: 400;
    color: var(--cream); margin-bottom: 6px;
}
.feat-info p {
    font-size: 0.85rem; font-weight: 300; color: var(--accent-300);
    line-height: 1.6; 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(--accent-500); 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-step h3 { color: var(--cream); }
.process-step p { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }
.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(--accent-500); margin-bottom: 12px;
}
.service-card h3 {
    font-family: var(--font-heading); font-size: var(--h3); font-weight: 400;
    margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }

@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(--accent-700); }

.about-bio p { font-size: 0.95rem; color: var(--accent-300); line-height: 1.7; margin-bottom: 12px; }
.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.6; 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.4); }

.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(--text-muted); margin-top: 4px; }

.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(--text-muted);
    gap: 6px;
}
.footer-email a { color: var(--accent-400); transition: color var(--transition); }
.footer-email a:hover { color: var(--cream); }

/* ===================================================================
   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; }
.product-card:hover { transform: translateY(-4px); }

.prod-image {
    height: 240px;
    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;
}
.prod-image svg { width: 80%; height: 80%; opacity: 0.5; }
.prod-image img { width: 100%; height: 100%; object-fit: cover; }

.prod-info { padding: 20px 24px 24px; }
.prod-info h3 {
    font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400;
    margin-bottom: 6px;
}
.prod-info p {
    font-size: 0.85rem; font-weight: 300; color: var(--text-secondary);
    line-height: 1.6; margin-bottom: 12px;
}
.prod-materials {
    font-size: 0.72rem; font-weight: 400; color: var(--accent-500);
    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(--accent-700);
}
.prod-cta {
    font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent-500);
}
.product-card:hover .prod-cta { color: var(--accent-700); }

/* 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; }
}

/* ===================================================================
   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-500); }
    .section:not(.section-dark):not(.hero) .accent-text { -webkit-text-fill-color: var(--accent-700); }
}
