/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* --- COLOR PALETTE --- */
    --bg: #FDFBF7;              /* Warm Luxury White */
    --bg-contrast: #F5F2ED;     /* Slight Off-White */
    --bg-dark: #121212;         /* Deep Black */
    
    --text: #1a1a1a;            /* Primary Text */
    --text-mute: #6b665f;       /* Secondary Text */
    --text-light: #f0f0f0;      /* Light Text */
    
    --brand: #c4ad86;           /* CASA DE LUMAS GOLD */
    
    /* --- TYPOGRAPHY --- */
    --font-logo: 'Minion Variable Concept', 'Minion Pro', 'EB Garamond', serif;
    --font-primary: 'Didot', 'GFS Didot', serif;       /* Headings */
    --font-secondary: 'Futura Bk BT', 'Futura', 'Jost', sans-serif; /* Body */
    
    /* --- UI SETTINGS --- */
    --ease-lux: cubic-bezier(0.25, 1, 0.5, 1);
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   2. TYPOGRAPHY & GLOBAL UTILS
   ========================================= */
h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mute);
    margin-bottom: 2rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.eyebrow {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--brand);
    font-weight: 500;
}

.text-center { text-align: center; }
.text-white { color: white; }

/* Layout Utilities */
.section-pad { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.bg-contrast { background: var(--bg-contrast); }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.align-center { align-items: center; }
.mt-2 { margin-top: 2rem; }
.full-width { width: 100%; }

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    display: inline-block; padding: 16px 32px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
    transition: all 0.4s var(--ease-lux); border-radius: var(--radius); font-weight: 500; cursor: pointer; border: 1px solid transparent;
}
.btn-gold { background: var(--brand); color: white; border-color: var(--brand); }
.btn-gold:hover { background: #b09b75; border-color: #b09b75; transform: translateY(-2px); }

.btn-gold-outline { border: 1px solid var(--brand); color: var(--brand); background: transparent; }
.btn-gold-outline:hover { background: var(--brand); color: white; }

.btn-hero { border: 1px solid rgba(255,255,255,0.4); color: white; background: transparent; }
.btn-hero:hover { background: white; color: var(--text); }

.btn-outline { border: 1px solid var(--text); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--text); color: white; }

.btn-large { padding: 22px 55px; font-size: 0.95rem; }

/* Button Loading State (New) */
.btn.sending { opacity: 0.7; cursor: wait; }

/* =========================================
   4. NAVIGATION
   ========================================= */
.nav {
    position: absolute; top: 0; width: 100%;
    padding: 2.5rem 4vw;
    display: flex; justify-content: flex-end; align-items: center;
    z-index: 1000;
}

.logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    font-family: var(--font-logo); font-size: 1.8rem;
    color: var(--brand); z-index: 1001;
    text-align: center; line-height: 1; letter-spacing: 0.05em;
}

.menu-trigger {
    display: flex; align-items: center; gap: 15px; cursor: pointer;
    color: white; mix-blend-mode: difference; z-index: 1001;
}

.menu-text {
    font-family: var(--font-secondary); text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 0.2em; transition: opacity 0.3s;
}

.hamburger span {
    display: block; width: 24px; height: 1px;
    background: currentColor; margin-bottom: 6px;
    transition: 0.3s;
}

/* Menu Animations */
body.menu-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.menu-open .hamburger span:nth-child(2) { transform: rotate(-45deg) translate(0px, 0px); }
body.menu-open .menu-text { opacity: 0; } 

/* Fullscreen Menu Overlay */
.fullscreen-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 999; opacity: 0; pointer-events: none;
    transition: opacity 0.5s var(--ease-lux);
}
body.menu-open .fullscreen-menu { opacity: 1; pointer-events: all; }

.menu-content { text-align: center; }
.menu-links { list-style: none; margin-bottom: 4rem; }
.menu-links li { 
    overflow: hidden; margin-bottom: 1.5rem; 
    transform: translateY(20px); opacity: 0; 
    transition: 0.5s var(--ease-lux);
}
body.menu-open .menu-links li { transform: translateY(0); opacity: 1; }
/* Stagger Delay */
body.menu-open .menu-links li:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .menu-links li:nth-child(2) { transition-delay: 0.2s; }
body.menu-open .menu-links li:nth-child(3) { transition-delay: 0.3s; }
body.menu-open .menu-links li:nth-child(4) { transition-delay: 0.4s; }
body.menu-open .menu-links li:nth-child(5) { transition-delay: 0.5s; }

.menu-link {
    font-family: var(--font-primary); font-size: 2.5rem; color: #fff;
    transition: color 0.3s;
}
.menu-link:hover { color: var(--brand); }

/* =========================================
   5. HOME PAGE SECTIONS
   ========================================= */

/* --- HERO --- */
.hero {
    height: 100vh; position: relative;
    overflow: hidden; text-align: center; color: white;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg-wrap {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; background: #111;
}
.hero-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%; width: auto; height: auto;
    transform: translate(-50%, -50%); object-fit: fill;
}
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.35); z-index: 1;
}
.hero-content { z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-title { font-size: clamp(3rem, 8vw, 6.5rem); margin-bottom: 1rem; letter-spacing: 0; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2.5rem; }
.hero-btn-wrap { display: flex; gap: 20px; justify-content: center; }

/* --- PRODUCT INTRO --- */
.product-frame { position: relative; height: 600px; background: #f0f0f0; border-radius: var(--radius); overflow: hidden; }

/* Video Cover + Images (Global Media Fix) */
.product-media {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; /* Ensures fill without stretch */
    object-position: center;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out; 
    z-index: 1;
}
/* Ensure about page static images are visible by default */
.about-page .product-media, 
.product-media.active { 
    opacity: 1; 
    z-index: 2; 
}

.floating-badge { position: absolute; top: 20px; left: 20px; background: white; padding: 8px 16px; border-radius: 30px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 600; z-index: 3; }
.selection-area { margin-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 2rem; }
.meta-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-mute); margin-bottom: 1rem; }
.color-options-row { display: flex; gap: 1rem; }
.color-dot { width: 44px; height: 44px; border-radius: 50%; border: 1px solid transparent; padding: 4px; background: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); position: relative; }
.color-dot:hover { transform: scale(1.15); border-color: transparent; }
.color-dot.active { border-color: var(--brand); transform: scale(1.05); }
.dot-inner { width: 100%; height: 100%; border-radius: 50%; display: block; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }
.dot-inner.white { background: #fff; border: 1px solid #eee; }
.dot-inner.pink { background: #EBCBCB; }
.dot-inner.black { background: #222; }

/* --- BENEFITS --- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.benefit-card { text-align: center; }
.icon-wrap { font-size: 2rem; margin-bottom: 1.5rem; color: var(--text); opacity: 0.8; font-family: serif; }
.benefit-card h3 { font-family: var(--font-secondary); font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; }

/* --- SENSORY --- */
.sensory-card { position: relative; width: 100%; height: 70vh; border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.sensory-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 10s ease; }
.sensory-card:hover .sensory-bg { transform: scale(1.05); }
.sheen-overlay { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); transform: skewX(-25deg); z-index: 2; animation: sheenMove 6s infinite ease-in-out; pointer-events: none; }
@keyframes sheenMove { 0% { left: -100%; } 50% { left: 200%; } 100% { left: 200%; } }
.sensory-content { position: relative; z-index: 3; }
.sensory-content h2 { margin-bottom: 2rem; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.glass-tag { display: inline-block; margin: 0 10px; padding: 10px 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; color: white; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* --- COMPARISON --- */
.spec-sheet { display: grid; grid-template-columns: 1fr 1fr; background: white; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.05); overflow: hidden; position: relative; border: 1px solid rgba(0,0,0,0.05); margin-top: 3rem; }
.spec-divider-line { position: absolute; top: 10%; bottom: 10%; left: 50%; width: 1px; background: rgba(0,0,0,0.05); transform: translateX(-50%); }
.spec-col { padding: 4rem 3rem; position: relative; }
.spec-col.cotton { background: #fcfcfc; color: var(--text-mute); }
.spec-col.cotton h3 { color: #999; }
.spec-col.cotton img { filter: grayscale(100%); opacity: 0.6; }
.spec-col.satin { background: #fff; }
.spec-col.satin h3 { color: var(--brand); }
.spec-header { text-align: center; margin-bottom: 3rem; }
.texture-circle { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem; overflow: hidden; border: 3px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.texture-circle img { width: 100%; height: 100%; object-fit: cover; }

/* Comparison List */
.spec-list { list-style: none; }
.spec-list li { 
    margin-bottom: 2rem; 
    position: relative; 
    padding-left: 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}
.spec-list span { display: block; font-family: var(--font-primary); font-size: 1.1rem; margin-bottom: 4px; color: var(--text); }
.spec-list small { display: block; font-family: var(--font-secondary); font-size: 0.85rem; color: var(--text-mute); }

/* Icons above text */
.spec-list .cross::before { 
    content: '×'; position: static; font-size: 1.5rem; color: #ddd; line-height: 1; margin-bottom: 0.5rem; 
}
.spec-list .check::before { 
    content: '✓'; position: static; font-size: 1.2rem; color: var(--brand); line-height: 1.2; margin-bottom: 0.5rem; 
}
.best-tag { position: absolute; top: 0; right: 0; background: var(--brand); color: white; padding: 6px 12px; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom-left-radius: 8px; }

/* --- REVIEWS & STORY --- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.review-card { background: white; padding: 2.5rem; border-radius: var(--radius); }
.stars { color: var(--brand); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card p { font-family: var(--font-primary); font-size: 1.1rem; color: var(--text); font-style: italic; }
.review-card cite { display: block; margin-top: 1rem; font-size: 0.75rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.founder-sign { margin-top: 2rem; font-family: var(--font-secondary); font-weight: 500; letter-spacing: 0.2em; color: var(--brand); }
.read-more-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); border-bottom: 1px solid transparent; padding-bottom: 2px; }
.read-more-link:hover { border-bottom-color: var(--brand); transform: translateX(5px); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 3rem auto 0; border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-head { padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-primary); font-size: 1.2rem; }
.faq-body { height: 0; overflow: hidden; transition: 0.4s ease; opacity: 0.5; }
.faq-item.active .faq-body { height: auto; padding-bottom: 1.5rem; opacity: 1; }
.plus { transition: 0.3s; }
.faq-item.active .plus { transform: rotate(45deg); color: var(--brand); }

/* =========================================
   6. ABOUT PAGE SPECIFIC STYLES
   ========================================= */
.about-hero {
    height: 90vh; 
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; overflow: hidden;
}
.hero-img-static {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; top: 0; left: 0; z-index: -1;
    animation: slowZoom 20s infinite alternate; 
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

.editorial-block { max-width: 700px; margin: 0 auto; }
.editorial-text p { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text); }
.editorial-content { padding: 0 1rem; }
.editorial-content h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--brand); }

.spacer { height: 4rem; width: 1px; background: var(--brand); margin: 2rem 0; opacity: 0.3; }

/* Portrait Frame (Desktop) */
.portrait-frame { 
    height: 700px; 
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.quote-block h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.4;
    font-style: italic; color: var(--text); font-family: var(--font-primary);
}
.founder-note { font-family: var(--font-primary); font-style: italic; font-size: 1.2rem; color: var(--brand); margin-top: 2rem; }
.closing-title { font-size: clamp(3rem, 6vw, 5rem); color: var(--brand); letter-spacing: -0.02em; }

/* =========================================
   7. CONTACT PAGE SPECIFIC STYLES
   ========================================= */
.contact-hero {
    height: 80vh; 
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; overflow: hidden;
    padding-top: 6rem;
}

.contact-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.contact-list { list-style: none; margin: 2rem 0; padding: 0; }
.contact-list li { font-size: 1.1rem; margin-bottom: 0.8rem; position: relative; padding-left: 1.5rem; color: var(--text); }
.contact-list li::before { content: '—'; position: absolute; left: 0; color: var(--brand); }

.amazon-note {
    background: rgba(196, 173, 134, 0.1); padding: 1.5rem; border-radius: var(--radius);
    display: flex; gap: 1rem; align-items: flex-start;
}
.note-icon { color: var(--brand); font-size: 1.2rem; line-height: 1; }
.amazon-note small { font-size: 0.85rem; color: var(--text-mute); line-height: 1.5; }

/* Luxury Form */
.luxury-form {
    background: white; padding: 3rem; border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02);
}
.form-group { margin-bottom: 2rem; }
.form-group label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 0.5rem; }
.luxury-form input, .luxury-form textarea {
    width: 100%; border: none; border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 10px 0; font-family: var(--font-primary); font-size: 1.1rem;
    color: var(--text); background: transparent; transition: border-color 0.3s ease;
}
.luxury-form input:focus, .luxury-form textarea:focus { outline: none; border-bottom-color: var(--brand); }
.luxury-form textarea { resize: none; }
.response-time { text-align: center; font-size: 0.8rem; color: var(--text-mute); margin-top: 1.5rem; margin-bottom: 0; font-style: italic; }

/* Form Status Messages (NEW) */
.form-status {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-family: var(--font-secondary);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-message {
    color: var(--text); 
    border-left: 2px solid var(--brand); 
    padding-left: 1rem;
    display: inline-block;
}

.error-message {
    color: #a85d5d; 
}

.fade-in-message { opacity: 1; }

/* Socials Text */
.social-links-row { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; }
.social-text-link {
    font-family: var(--font-primary); font-size: 1.5rem; color: var(--text);
    text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
.social-text-link span { font-size: 1rem; vertical-align: top; opacity: 0.5; }
.social-text-link:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* =========================================
   8. FOOTER
   ========================================= */
.footer {
    background: #EAE6E1; padding: 6rem 0 2rem;
    position: relative; overflow: hidden;
    border-top-left-radius: 40px; border-top-right-radius: 40px;
}
.footer-content { display: flex; justify-content: space-between; position: relative; z-index: 2; margin-bottom: 4rem; }
.footer-links-group { display: flex; gap: 5rem; }
.footer h4 { font-family: var(--font-secondary); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; color: var(--text); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.8rem; font-size: 0.9rem; color: var(--text-mute); }
.footer li a:hover { color: var(--brand); }

.watermark {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-primary); font-size: 18vw; color: var(--brand);
    opacity: 0.1; white-space: nowrap; pointer-events: none;
}
.copyright { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; font-size: 0.8rem; color: var(--text-mute); text-align: center; }

.location { margin-top: 0.5rem; font-style: italic; color: var(--brand); font-size: 0.9rem; }
.socials { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.social-icon { width: 20px; height: 20px; fill: var(--text-mute); transition: 0.3s; }
.social-icon:hover { fill: var(--brand); transform: translateY(-3px); }

.credits { margin-top: 0.5rem; font-size: 0.75rem; opacity: 0.6; }
.credits a { border-bottom: none; text-decoration: none; transition: opacity 0.3s; }
.credits a:hover { opacity: 1; border-bottom: none; }

/* =========================================
   9. ANIMATIONS
   ========================================= */
.line-mask { overflow: hidden; }
.hero-title span { display: block; transform: translateY(100%); opacity: 0; animation: slideUp 1s var(--ease-lux) forwards; }
.hero-title .line-mask:nth-child(2) span { animation-delay: 0.2s; }
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(30px); transition: 1s var(--ease-lux); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-img { opacity: 0; transform: scale(0.95); transition: 1s var(--ease-lux); }
.reveal-img.in-view { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* =========================================
   10. RESPONSIVE (UPDATED)
   ========================================= */
@media (max-width: 900px) {
    /* Global Section Reduction */
    .section-pad { padding: 50px 0; }

    /* Hide Explore Text on Mobile */
    .menu-text { display: none; }

    /* Stack Grids */
    .grid-2-col, .benefits-grid, .review-grid, .comparison-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    /* Comparison Mobile */
    .spec-sheet { grid-template-columns: 1fr; margin-top: 1.5rem; }
    .spec-divider-line { display: none; }
    .spec-col { padding: 2.5rem 1.5rem; border-bottom: 1px solid #eee; }
    
    /* Hero Typography */
    .hero-title { font-size: 3.5rem; }
    
    /* Button Mobile Optimization */
    .hero-btn-wrap { flex-direction: column; align-items: center; width: 100%; }
    .btn, .full-width, .btn-large { 
        width: auto !important; 
        min-width: 200px; 
        max-width: 80%; 
        margin: 0 auto; 
        display: block; /* Centers contact button in form */
    }
    
    /* Product Section Mobile */
    .product-frame { height: 400px; }
    .intro-text, .selection-area, .cta-wrapper { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .color-options-row { justify-content: center; }
    
    /* Sensory Mobile Fixes */
    .sensory-card { height: 60vh; }
    .sensory-content { width: 100%; padding: 0 20px; }
    .sensory-content h2 { font-size: 2rem; line-height: 1.3; }
    .sensory-tags { 
        display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 1.5rem; 
    }
    .glass-tag { width: auto; min-width: 140px; justify-content: center; padding: 10px 20px; font-size: 0.8rem; }
    
    /* About Page Mobile - FIXES */
    .about-hero { height: 70vh; }
    .about-hero .hero-title { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    
    /* Image Fixes */
    .portrait-frame { 
        height: 500px; 
        width: 90%; 
        margin: 0 auto 2rem; 
    }
    
    .intro-img { width: 100%; display: block; }
    .intro-img.reveal-img { opacity: 1 !important; transform: none !important; }

    .spacer { height: 1px; width: 50px; margin: 2rem auto; }
    .editorial-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    
    /* Contact Page Mobile */
    .contact-hero { height: 60vh; padding-top: 5rem; }
    .luxury-form { padding: 2rem 1.5rem; }
    .social-links-row { gap: 2rem; flex-direction: column; align-items: center; }
    
    /* Footer Mobile */
    .footer-content { flex-direction: column; gap: 3rem; }
    .footer-links-group { justify-content: space-between; }
    .watermark { font-size: 15vw; white-space: normal; line-height: 0.8; }
    
    /* Nav Mobile */
    .nav { justify-content: space-between; }
    .logo { position: static; transform: none; text-align: left; }
    .menu-link { font-size: 2rem; }
}



/* --- COOKIE BANNER (Global) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111; /* Primary Black */
    color: #fff;
    padding: 20px 30px;
    z-index: 99999; /* Higher than everything else */
    transform: translateY(100%); /* Hidden (pushed down) by default */
    transition: transform 0.5s ease; /* Smooth slide up */
    border-top: 1px solid #333;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cookie-banner.show {
    transform: translateY(0); /* Visible */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Gold Button for Accept */
.btn-cookie-accept {
    background-color: #c5a059;
    color: #fff;
    border: 1px solid #c5a059;
    padding: 8px 24px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: #fff;
    color: #111;
    border-color: #fff;
}

/* Plain Text Button for Decline */
.btn-cookie-decline {
    background: none;
    border: none;
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-cookie-decline:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}