:root {
    --obsidian: #000000;
    --neon-gold: #ffcc00;
    --neon-glow: rgba(255, 204, 0, 0.7);
    --gold-text: #f3cf7a;
    --transition-smooth: all 0.3s ease; /* Add this line */
}

body {
    margin: 0;
    padding: 0;
    /* We use a lighter gradient so the neon sign on the bricks can peek through */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
        url('images/face_this_way_background.png'); /* Ensure filename matches your save */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the bricks stationary while you scroll */
    background-color: var(--obsidian);
    
    color: white;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    /* THE BACKGROUND LOGIC */
    /* This combines the image and a dark overlay in one step */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
        url('images/portia_splash_page.jpg');
    
    background-size: cover;
    background-repeat: no-repeat;
    
    /* 2. Ensure the image stays centered so the face is the focus */
    background-position: center top;

    /* 3. Set a background color for the 'bars' if the image doesn't fill the screen */
    background-color: var(--obsidian);
    
    /* Optional: grayscale(40%) makes it feel more "Urban Noir" */
    filter: grayscale(20%);

}

.neon-btn {
    margin-top: 30px;
    padding: 10px 40px;
    border: 1px solid var(--neon-gold);
    color: var(--neon-gold);
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    letter-spacing: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0; /* Hidden initially, revealed by GSAP */
    box-shadow: 0 0 5px var(--neon-glow);
    display: inline-block;
}

.neon-btn:hover {
    background: var(--neon-gold);
    color: #000;
    box-shadow: 0 0 20px var(--neon-gold);
}

/* Neon Sign Effect */
.neon-text {
    font-family: 'Inter', sans-serif; /* High-end bold font */
    font-weight: 900;
    font-size: 5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px var(--neon-gold),
        0 0 42px var(--neon-gold),
        0 0 82px var(--neon-gold);
    letter-spacing: 0.2em;
    opacity: 0; /* Handled by GSAP */
}

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    /* Hidden initially for GSAP reveal */
    opacity: 0;
    transform: translateY(-20px);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 900;
    color: var(--gold-text);
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--neon-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    opacity: 0; /* Ensures they start invisible before the animation */
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-item:hover {
    color: var(--neon-gold);
    text-shadow: 0 0 8px var(--neon-glow);
}

/* Subtle underline effect */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Ensure the Hero section remains transparent to see the bricks */
.hero-editorial {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; 
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-card {
    position: relative;
    width: 100%;
    height: 100%;
    /* Image handled in CSS */
    background-image: url('images/hero_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* The "Floating" Frame */
    border: 1px solid #222; 
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    z-index: 1;
}

/* Subtle Neon Glow behind the card */
.card-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.1);
    z-index: -1;
}

.hero-text-overlay {
    position: absolute;
    /* Positioned to overlap the edge of the card for an editorial feel */
    bottom: 10%;
    left: -20px; 
    z-index: 10;
    pointer-events: auto; /* Allows clicks to pass through to the card if needed */
}

.hero-text-overlay h2, 
.hero-text-overlay h3 {
    display: block;
    cursor: default; /* Keeps the "editorial" feel */
    transition: text-shadow 0.3s ease;
}

/* Optional: Adding a slight glow increase via CSS as a backup */
.hero-text-overlay:hover .neon-gold {
    text-shadow: 0 0 25px var(--neon-gold), 0 0 45px var(--neon-gold);
}

.neon-gold {
    font-size: clamp(2rem, 8vw, 4.5rem);
    color: var(--gold-text);
    text-shadow: 0 0 15px var(--neon-glow);
    margin: 0;
    line-height: 1;
}

.neon-white {
    font-size: clamp(1rem, 4vw, 2rem);
    color: #fff;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    margin-top: 5px;
}

.services-mosaic {
    padding: 100px 5%;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.neon-gold-small {
    font-size: 2.5rem;
    color: var(--gold-text);
    text-shadow: 0 0 10px var(--neon-glow);
    letter-spacing: 10px;
}

.mosaic-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.mosaic-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 204, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    cursor: pointer;
    border-radius: 4px;
}

.large {
    grid-row: span 2;
}

.tile-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: transform 0.8s ease, filter 0.5s ease;
    z-index: 1;
}

/* Service Image Placeholders - Replace these with your actual images */
.service-1 { background-image: url('images/core_service.png'); }
.service-2 { background-image: url('images/precision_grooming.png'); }
.service-3 { background-image: url('images/vibe_consult.png'); }

.tile-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tile-content h4 { color: var(--neon-gold); margin: 0; font-size: 0.8rem; }
.tile-content h3 { margin: 10px 0; font-size: 1.8rem; letter-spacing: 2px; }
.tile-content p { opacity: 0; transform: translateY(20px); transition: 0.4s ease; }

/* HOVER EFFECTS */
.mosaic-tile:hover .tile-bg {
    filter: grayscale(0%) brightness(0.7);
    transform: scale(1.05);
}

.mosaic-tile:hover p {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-tile:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}

.manifesto-horizon {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000000;
    overflow: hidden;
    z-index: 5;
}

/* The Hidden Message (The Royalty Core) */
.horizon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 100%;
    text-align: center;
    z-index: 1;
    opacity: 0;
    filter: blur(8px);
}

.glow-gold {
    /* FANCY LUXURY SERIF: Elegant, sharp, and regal */
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    /* MASSIVE SIZE: Scales strictly with the width of the screen */
    font-size: 8vw; 
    color: var(--gold-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--neon-glow), 0 0 60px rgba(255, 204, 0, 0.3);
    margin: 0;
    line-height: 0.9;
}

/* The Split Plates */
.horizon-door-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
}

.door-panel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    will-change: transform; /* Optimizes hardware acceleration for the scale animation */
}

.obsidian-text {
    /* URBAN/EDGY SLAB: Utterly massive, heavy, and wide */
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    /* OVERSIZED: Spans aggressively across the screen */
    font-size: 9.5vw; 
    color: #111111; /* Even darker obsidian for a stealth look */
    letter-spacing: -2px; /* Tight tracking makes it look incredibly heavy and custom */
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    width: 100%;
    line-height: 0.9;
    /* Subtle industrial metal bevel */
    text-shadow: 1px 1px 0px rgba(255,255,255,0.03); 
}

/* The Magic Slices */
.top-panel {
    clip-path: inset(0 0 50% 0);
}

.bottom-panel {
    clip-path: inset(50% 0 0 0);
}

.lookbook-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    overflow: hidden; /* Hides the images trailing off-screen */
}

.lookbook-sticky-header {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.vertical-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05); /* Stealth luxury watermark look */
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1;
}

/* The long train holding the photos */
.lookbook-slider-track {
    display: flex;
    gap: 40px;
    padding-left: 20%; /* Gives the title room on the left */
    padding-right: 10%;
    height: 70vh;
    will-change: transform;
}

.lookbook-slide {
    position: relative;
    flex-shrink: 0; 
    width: 450px;
    height: 100%;
    border: 1px solid #111;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.lookbook-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Slick editorial caption hover */
.slide-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.slide-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold-text);
}

.lookbook-slide:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}

.lookbook-slide:hover .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.cta-section {
    position: relative;
    min-height: 85vh;
    width: 100%;
    /* SET TO TRANSPARENT: Lets the original body brick background show back through */
    background: transparent; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
    overflow: hidden;
    z-index: 10;
}

/* Dark Vignette Overlay: Ensures high contrast over the bricks */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Subtle dark gradient fade so the text pops against the bricks */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 2; /* Keeps text above the dark vignette */
}

/* The Gold Glow Aura behind the button */
.cta-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-glow);
}

.cta-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #cccccc; /* Slightly brightened for readability over brick texture */
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* THE NEON GOLD BUTTON */
.cta-btn-gold {
    position: relative;
    padding: 22px 55px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black fill over bricks */
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    backdrop-filter: blur(5px);
}

.cta-btn-gold span {
    position: relative;
    z-index: 2;
}

.cta-btn-gold:hover {
    color: #000000;
    background: var(--neon-gold);
    box-shadow: 0 0 35px var(--neon-gold), 0 0 70px rgba(255, 204, 0, 0.5);
    transform: translateY(-3px);
}

.cta-btn-gold:active {
    transform: translateY(0);
}

/* ==========================================
   OBSIDIAN BOOKING MODAL & FORM STYLES
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 204, 0, 0.35);
    border-radius: 8px;
    padding: 45px 35px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 204, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--neon-gold, #ffcc00);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--neon-gold, #ffcc00);
    letter-spacing: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    border-radius: 0;
}

.form-group select option {
    background: #111;
    color: #fff;
}

.form-group label {
    position: absolute;
    top: 12px; left: 0;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group label.static-label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--neon-gold, #ffcc00);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--neon-gold, #ffcc00);
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--neon-gold, #ffcc00);
}

/* Custom gold styling for calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(5deg);
    cursor: pointer;
}

.modal-submit-btn {
    margin-top: 10px;
    padding: 16px;
    background: var(--neon-gold, #ffcc00);
    border: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.modal-submit-btn:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.site-footer {
    position: relative;
    background: #050505;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    padding: 80px 5% 30px 5%;
    overflow: hidden;
    z-index: 10;
}

/* Watermark Brand Mark in Background */
.footer-backdrop-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 15vw, 16rem);
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    letter-spacing: -2px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.6;
    letter-spacing: 1px;
    max-width: 320px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #222222;
    border-radius: 4px;
    color: var(--neon-gold, #ffcc00);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-gold, #ffcc00);
    background: var(--neon-gold, #ffcc00);
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    transform: translateY(-3px);
}

/* Navigation Links Column */
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--neon-gold, #ffcc00);
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888888;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Info Column */
.info-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.info-item strong {
    color: #ffffff;
    font-weight: 700;
}

/* Bottom Copyright Bar */
.footer-bottom {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #444444;
    letter-spacing: 2px;
    z-index: 2;
}

.footer-bottom .credit {
    color: var(--neon-gold, #ffcc00);
    opacity: 0.6;
}

/* Responsive Footer Collapse */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================
   1. BASE DESKTOP OVERRIDES
   ========================================== */
/* Hide mobile hamburger button by default on desktop screens */
.hamburger-btn {
    display: none;
}

/* ==========================================
   2. MOBILE & TOUCH RESPONSIVE OVERRIDES
   (Applies to screens 768px wide or smaller)
   ========================================== */
@media (max-width: 768px) {

    /* --- BODY & PERFORMANCE --- */
    body {
        background-attachment: scroll; /* Prevents background lag/jank on mobile WebKit/iOS */
    }

    /* --- HAMBURGER BUTTON (MOBILE ONLY) --- */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .hamburger-btn .bar {
        width: 100%;
        height: 2px;
        background-color: var(--gold-text);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Transform Hamburger into an "X" when active */
    .hamburger-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- MOBILE NAVIGATION DRAWER --- */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen to the right */
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    /* Slide in menu when toggled */
    .nav-links.active {
        right: 0;
    }

    .nav-item {
        font-size: 1.3rem;
        letter-spacing: 4px;
        opacity: 1 !important; /* Force visibility inside drawer */
    }

    /* --- SPLASH & HERO SECTION --- */
    .neon-text {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        letter-spacing: 0.1em;
        text-align: center;
    }

    .hero-container {
        height: 65vh;
    }

    .hero-text-overlay {
        left: 10px;
        bottom: 5%;
    }

    /* --- SERVICES MOSAIC (SINGLE COLUMN STACK) --- */
    .mosaic-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .large {
        grid-row: span 1;
    }

    .mosaic-tile {
        height: 280px;
    }

    /* Keep service captions visible on touch devices */
    .tile-content p {
        opacity: 0.9;
        transform: translateY(0);
    }

    /* --- MANIFESTO SECTION --- */
    .obsidian-text {
        font-size: 11vw;
        letter-spacing: -1px;
    }

    .glow-gold {
        font-size: 10vw;
    }

    /* --- LOOKBOOK HORIZONTAL TRACK TUNING --- */
    .lookbook-sticky-header {
        left: 20px;
        top: 10%;
        transform: none;
    }

    .vertical-title {
        font-size: 2.2rem;
    }

    .lookbook-slider-track {
        padding-left: 20px;
        gap: 20px;
        height: 60vh;
    }

    .lookbook-slide {
        width: 80vw; /* Card fills 80% of mobile screen width */
    }

    .slide-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- MODAL & TOUCH INPUT OPTIMIZATION --- */
    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-card {
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* 16px font size stops iOS Safari from zooming in on input tap */
    .form-group input,
    .form-group select {
        font-size: 16px;
        padding: 14px 0;
    }

    .modal-submit-btn {
        padding: 18px;
    }
}