:root {
    --bg-primary: #080808;
    --accent-gold: #C7A76C;
    --color-ivory: #F3EFE7;
    --color-sand: #CFC6B8;
    --color-bronze: #A78558;
    --color-rosegold: #B88A82;
    --text-primary: #F3EFE7;
    --text-secondary: #CFC6B8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility class for converting background-images to semantic images */
.responsive-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: inherit;
}

/* Header Navbar - 3D White Glass Floating Pill */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    opacity: 0; /* for GSAP */
    
    /* 3D White Glass UI */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    
    /* 3D Beveled Edges */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Extreme Inner Depth + Floating Shadows */
    box-shadow: 
        inset 0 12px 24px rgba(0, 0, 0, 0.4), /* Deep inner shadow at the top (creates depth) */
        inset 0 -12px 24px rgba(255, 255, 255, 0.15), /* Inner light reflection at the bottom */
        inset 0 0 15px rgba(0, 0, 0, 0.2), /* Overall internal volumetric depth */
        0 15px 35px rgba(0, 0, 0, 0.5), /* Heavy outer floating shadow */
        0 5px 15px rgba(0, 0, 0, 0.4); /* Sharp outer drop shadow */
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 4.5rem; /* Increased breathing space */
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.6s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
    .nav-links a:hover {
        color: var(--text-primary);
    }

    .nav-links a:hover::after {
        width: 100%;
    }
}

.nav-book {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.6s ease, border-color 0.6s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .nav-book:hover {
        color: var(--accent-gold);
        border-bottom: 1px solid var(--accent-gold);
    }
}

/* Cinematic Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 6rem;
    overflow: hidden;
}

/* Fullscreen Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

/* Depth Overlays */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
    z-index: 3;
    pointer-events: none;
}

/* Seamless blend into next section */
.bottom-blend {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 1) 100%);
    z-index: 4;
    pointer-events: none;
}

/* Asymmetrical Content Placement (Left aligned, avoiding right side subjects) */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 520px; /* Constrains text strictly to the left side */
    margin-top: 4rem; /* Optical vertical alignment */
}

.title-container {
    margin-bottom: 2rem;
}

.title-line-wrapper {
    overflow: hidden;
    padding-bottom: 0.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem; /* Reduced by ~25% to complement, not compete */
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
}

.hero-word {
    display: inline-block;
    transform: translateY(100%); /* for GSAP stagger */
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0; /* for GSAP */
    transform: translateY(20px); /* for GSAP */
}

/* Luxury Editorial Button */
.primary-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    text-decoration: none;
    padding: 1.1rem 3.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.6s ease;
    opacity: 0; /* for GSAP */
    transform: translateY(20px); /* for GSAP */
}

@media (hover: hover) and (pointer: fine) {
    .primary-cta:hover {
        background-color: var(--accent-gold);
        color: #000;
    }
}

/* =========================================================================
   SERVICES WE PROVIDE: LUXURY EDITORIAL GRID
   ========================================================================= */
.editorial-services-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-primary);
    padding: 5rem 6rem; /* Reduced from 10rem */
    overflow: hidden;
}

.services-header {
    margin-bottom: 6rem;
    max-width: 800px;
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    perspective: 1500px;
}

/* Base Tile Styles */
.service-tile {
    position: relative;
    border-radius: 32px; /* Curved edges as requested */
    aspect-ratio: 1 / 1; /* Perfect square */
    border: 6px solid rgba(255, 255, 255, 0.4); /* Subdued white photo frame */
    overflow: hidden;
    cursor: pointer;
    /* initial state for GSAP */
    opacity: 0;
    transform: translateY(40px) scale(0.98) rotateX(10deg);
    will-change: opacity, transform;
    transform-style: preserve-3d;
}

.service-tile-img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%; /* Taller to allow parallax */
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .service-tile:hover .service-tile-img {
        transform: scale(1.03);
    }
}

/* Champagne light sweep pseudo-element */
.champagne-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(198, 168, 106, 0) 0%,
        rgba(198, 168, 106, 0.25) 50%,
        rgba(198, 168, 106, 0) 100%
    );
    z-index: 1;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .service-tile:hover .champagne-sweep {
        left: 150%;
    }
}

/* Gradient overlay for text readability */
.service-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 3;
    pointer-events: none;
}

.service-tile-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-ivory);
    font-weight: 400;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-tile:hover .service-tile-title {
        color: #FFFFFF;
    }
}

.service-tile-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0.9;
}

/* =========================================================================
   VOICES OF ELEGANCE: CONTINUOUS LUXURY RIBBON
   ========================================================================= */
.voices-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-primary); /* Matte black */
    padding: 5rem 0; /* Reduced from 10rem */
    overflow: hidden;
}

.voices-header {
    margin-bottom: 6rem;
    max-width: 800px;
    padding: 0 6rem;
}

.voices-main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    color: var(--text-primary); /* Warm ivory */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.voices-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--accent-gold);
    line-height: 1.6;
    font-weight: 300;
}

.voices-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Linear transition for continuous non-snapping ribbon */
.voices-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.voice-panel {
    background: #0F0F0F; /* Soft charcoal */
    border: 1px solid rgba(198, 168, 106, 0.4); /* Thin champagne metallic border */
    border-radius: 24px;
    padding: 3.5rem;
    width: 360px !important;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    opacity: 1 !important; /* Force static opacity */
    transform: scale(1) !important; /* Force static scale */
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Light Sweep Element */
.voice-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(198, 168, 106, 0.2), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Hover: Desktop only pause & lift handled partially by Swiper for pause, CSS for lift and sweep */
@media (hover: hover) and (pointer: fine) {
    .voice-panel:hover {
        transform: translateY(-4px) scale(1.02) !important;
        border-color: rgba(198, 168, 106, 0.8);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .voice-panel:hover::before {
        animation: voiceSweep 1.2s ease-out forwards;
    }
}

@keyframes voiceSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Star Rating */
.voice-stars {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2px;
}

.voice-stars .star {
    color: var(--accent-gold); /* Solid gold permanently */
}

/* Typography inside the review */
.voice-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-sand);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 3.5rem;
    font-style: italic;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--color-ivory);
    font-size: 1.5rem;
    background: rgba(198, 168, 106, 0.05); /* Premium glowing monogram */
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-ivory);
    font-weight: 400;
}

.client-service {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================================================
   MEET OUR ARTISTS
   ========================================================================= */
.team-section {
    position: relative;
    width: 100%;
    background-color: #080808; /* Pure premium black */
    padding: 10rem 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.team-header {
    text-align: center;
    margin-bottom: 8rem;
}

.team-heading {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: #F5F2EA;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(30px);
}

.team-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #9E968B;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
    /* GSAP Starting States */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.team-portrait-wrapper {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid rgba(213, 183, 122, 0.4); /* Muted champagne base */
    margin-bottom: 2rem;
    padding: 6px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.team-portrait {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover Physics */
@media (hover: hover) and (pointer: fine) {
    .team-member:hover .team-portrait-wrapper {
        border-color: #E2C58A;
        box-shadow: inset 0 0 20px rgba(226, 197, 138, 0.1), 0 0 30px rgba(226, 197, 138, 0.15);
    }

    .team-member:hover .team-portrait {
        transform: scale(1.05);
    }
    
    .team-member:hover .team-name {
        color: #E2C58A;
    }
}

.team-name {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    color: #D5B77A;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: #9E968B;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.team-exp {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: #B7AEA1;
}

/* =========================================================================
   THE DIFFERENCE: LUXURY BRAND STATEMENT
   ========================================================================= */
.difference-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-primary);
    padding: 6rem 0; /* Reduced from 12rem */
    overflow: hidden;
}

.difference-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.difference-header {
    text-align: center;
    margin-bottom: 10rem;
}

.difference-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.diff-the {
    color: #F4F0E8;
    display: inline-block;
}

.diff-word {
    color: #C7A86A;
    display: inline-block;
    font-style: italic;
}

.difference-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #CFC7BB;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Editorial Grid */
.editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}

.editorial-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    width: 100%;
}

.editorial-block.right-align {
    flex-direction: row-reverse;
}

.editorial-visual-wrapper {
    flex: 1;
    position: relative;
}

.editorial-text-wrapper {
    flex: 1;
    /* Opacity and transform set by JS */
    opacity: 0;
}

.editorial-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #F4F0E8;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Tiny deep emerald micro-accent dot */
.editorial-heading::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: -16px;
    width: 6px;
    height: 6px;
    background-color: #234137;
    border-radius: 50%;
}

.editorial-body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #CFC7BB;
    line-height: 1.8;
    font-weight: 300;
    max-width: 85%;
}

/* Editorial Floating Frames */
.editorial-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 28px;
    /* Clip-path handled by JS for reveal */
}

.editorial-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* The Ultra-Thin Champagne Offset Outline */
.editorial-frame::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: -8px;
    border: 1px solid rgba(198, 168, 106, 0.4);
    border-radius: 30px;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: border-color 0.8s ease, box-shadow 0.8s ease;
    overflow: hidden;
}

.editorial-block.right-align .editorial-frame::after {
    left: 8px;
    right: -8px;
}

/* Hover Physics */
@media (hover: hover) and (pointer: fine) {
    .editorial-visual-wrapper:hover .editorial-img {
        transform: scale(1.04);
    }

    .editorial-visual-wrapper:hover .editorial-frame::after {
        border-color: rgba(198, 168, 106, 0.8);
        box-shadow: 0 20px 50px rgba(198, 168, 106, 0.15);
    }
}

/* Light Sweep Animation triggered by JS */
.editorial-frame.is-visible::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(198, 168, 106, 0.2), transparent);
    z-index: 3;
    animation: editorialSweep 2s ease-out;
    pointer-events: none;
    border-radius: 28px;
}

@keyframes editorialSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* =========================================================================
   CALL TO ACTION
   ========================================================================= */
.cta-section {
    position: relative;
    width: 100%;
    background-color: #080808;
    padding: 12rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract Silk Background Animation */
.cta-bg-animation {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.04; /* Extremely subtle */
    pointer-events: none;
}

.cta-bg-animation svg {
    width: 100%;
    height: 100%;
}

.silk-strand {
    fill: transparent;
    stroke: #D6B67A;
    stroke-width: 0.5;
    animation: silkFlow 15s infinite alternate ease-in-out;
}

.silk-strand.s1 { animation-delay: 0s; stroke-width: 0.8; }
.silk-strand.s2 { animation-delay: -5s; stroke-width: 0.4; }
.silk-strand.s3 { animation-delay: -10s; stroke-width: 0.6; }

@keyframes silkFlow {
    0% { transform: translateY(-5px) scaleY(1); }
    100% { transform: translateY(5px) scaleY(1.2); }
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    color: #F5F2EA; /* Warm Ivory */
    line-height: 1.1;
    margin-bottom: 2rem;
    /* GSAP Start */
    opacity: 0;
    transform: translateY(30px);
}

.cta-highlight {
    color: #D6B67A; /* Muted Champagne Gold */
    font-style: italic;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: #BEB4A8; /* Soft Warm Gray */
    line-height: 2;
    font-weight: 300;
    margin-bottom: 4rem;
    /* GSAP Start */
    opacity: 0;
    transform: translateY(30px);
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    /* GSAP Start */
    opacity: 0;
    transform: translateY(30px);
}

.cta-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background-color: #D6B67A;
    color: #080808;
}

@media (hover: hover) and (pointer: fine) {
    .cta-btn-primary:hover {
        background-color: #E2C58A;
        box-shadow: 0 0 20px rgba(226, 197, 138, 0.2);
    }
    
    .cta-btn-primary::after {
        content: '';
        position: absolute;
        top: 0; left: -100%; width: 50%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transform: skewX(-20deg);
        transition: none;
    }
    
    .cta-btn-primary:hover::after {
        animation: buttonSweep 0.8s ease forwards;
    }
}

@keyframes buttonSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

.cta-btn-secondary {
    background-color: transparent;
    color: #F5F2EA;
    border: 1.5px solid #C8A96E;
}

@media (hover: hover) and (pointer: fine) {
    .cta-btn-secondary:hover {
        background-color: rgba(200, 169, 110, 0.05); /* ~5% champagne tint */
        border-color: #E2C58A;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 2.5rem 4rem;
    }
    
    .hero-section {
        padding: 0 4rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }

    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        width: 95%;
        padding: 1.2rem 2rem;
        border-radius: 40px;
    }
    .nav-links { display: none; }
    
    /* Hero */
    .hero-section { padding: 0 2rem; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-content { max-width: 100%; text-align: left; }

    /* Section 2: Services Grid */
    .editorial-services-section { padding: 4rem 2rem; }
    .services-header { padding: 0; margin-bottom: 3rem; }
    .services-main-title { font-size: 3rem; }
    .services-grid-container { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    .service-tile { aspect-ratio: 4 / 3; height: auto; }

    /* Section 3: Voices Ribbon */
    .voices-section { padding: 4rem 0; }
    .voices-header { padding: 0 2rem; margin-bottom: 3rem; }
    .voices-main-title { font-size: 3rem; }
    .voice-panel { 
        width: 90vw !important; 
        padding: 2rem; 
    }
    .voice-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .voice-stars {
        margin-bottom: 1.25rem;
    }

    /* Section 4: The Difference */
    .difference-section { padding: 4rem 0; }
    .difference-container { padding: 0 2rem; }
    .difference-header { margin-bottom: 4rem; }
    .difference-title { font-size: 3rem; }
    .editorial-grid { gap: 6rem; }
    .editorial-block, .editorial-block.right-align { 
        flex-direction: column !important; 
        gap: 3rem; 
        text-align: center;
    }
    .editorial-visual-wrapper { width: 100%; }
    .editorial-text-wrapper { transform: translateY(20px); }
    .editorial-heading { font-size: 2.2rem; }
    .editorial-heading::after { right: -12px; } /* Adjust accent dot */
    .editorial-body { max-width: 100%; font-size: 1.1rem; }
    
    /* Section 5: Meet Our Artists */
    .team-section { padding: 4rem 0; }
    .team-header { margin-bottom: 4rem; padding: 0 2rem; }
    .team-heading { font-size: 3rem; }
    .team-grid { gap: 4rem; }
    
    /* Section 6: Call To Action */
    .cta-section { padding: 8rem 0; }
    .cta-title { font-size: 3.5rem; }
    .cta-subtitle { font-size: 1.1rem; margin-bottom: 3rem; }
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Remove hover physics that don't make sense on touch */
    .voice-panel:hover { transform: none !important; }
}


/* =========================================================================
   MOBILE NAVIGATION
   ========================================================================= */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 1.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--text-primary);
    margin: 6px 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.4s ease;
}

.primary-cta-mobile {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.2em;
    border: 1px solid var(--accent-gold);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    margin-top: 2rem;
    transform: translateY(20px);
}

/* Open State */
.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-open-body {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: inline-block;
        vertical-align: middle;
    }
    .mobile-nav-overlay {
        display: flex;
    }
    .nav-cta {
        display: flex;
        align-items: center;
    }
}
