/* ==========================================================================
   STORY BY CLICKER BABU - TRUE KNOTSBYAMP LUXURY EDITORIAL DESIGN SYSTEM (TIER-4 AWWWARDS SUITE)
   ========================================================================== */

:root {
    /* Warm Linen & Editorial Palette */
    --bg-canvas: #FAF7F2;
    --bg-surface: #F3EFE6;
    --bg-pure: #FFFFFF;
    --bg-hero-dark: #0D0D0F;
    
    --text-primary: #1C1C1E;
    --text-body: #4E4E56;
    --text-muted: #6E6A63;
    --text-light: #F7F5F0;
    
    --accent-gold: #B89758;
    --accent-gold-dark: #856422;
    --accent-gold-glow: rgba(184, 151, 88, 0.25);
    
    --border-hairline: rgba(0, 0, 0, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-serif-heading: 'Cormorant Garamond', Garamond, 'Playfair Display', Georgia, serif;
    --font-serif-italic: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions & Radii */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-arch: 180px 180px 120px 120px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Foundation */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-canvas);
}

/* Lenis Momentum Scroll Physics Support */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Image Protection & Zero CLS */
img {
    max-width: 100%;
    display: block;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Hairline Scroll Reading Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    background: var(--accent-gold);
    z-index: 2500;
    transition: width 0.1s linear;
}

/* ==========================================================================
   FLOATING RIGHT-EDGE CHAPTER NAVIGATION DOTS
   ========================================================================== */
.chapter-nav {
    position: fixed;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.chapter-dot {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.dot-core {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28, 28, 30, 0.35);
    transition: var(--transition-smooth);
    display: block;
}

.chapter-dot:hover .dot-core,
.chapter-dot.active .dot-core {
    background: var(--accent-gold-dark);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(184, 151, 88, 0.6);
}

.chapter-tooltip {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(28, 28, 30, 0.9);
    color: #FAF7F2;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-fast);
}

.chapter-dot:hover .chapter-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 992px) {
    .chapter-nav {
        display: none;
    }
}

/* Typography Tokens */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-heading {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.heading-italic {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-gold-dark);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   HEADER & NAVBAR (WARM FROSTED GLASS)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 1.1rem 0;
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-hairline);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled .logo-main {
    color: var(--text-primary);
}

.site-header.scrolled .nav-item {
    color: var(--text-body);
}

.site-header.scrolled .btn-inquire {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.site-header.scrolled .btn-inquire:hover {
    background: var(--text-primary);
    color: var(--bg-pure);
}

.site-header.scrolled .sound-toggle-btn {
    border-color: var(--border-hairline);
    color: var(--text-body);
}

.header-inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1.15;
}

.logo-pre {
    font-family: var(--font-serif-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.logo-main {
    font-family: var(--font-serif-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #ffffff;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.logo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 85%;
    margin: 2px 0 3px;
}

.logo-line {
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.logo-diamond {
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    transform: rotate(45deg);
}

.logo-sub {
    font-size: 0.56rem;
    letter-spacing: 3.5px;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
}

.site-header.scrolled .logo-pre {
    color: var(--text-muted);
}

.site-header.scrolled .logo-main {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-item {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.3rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-item:hover {
    color: #ffffff;
}

.site-header.scrolled .nav-item:hover {
    color: var(--text-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Ambient Sound Equalizer Button */
.sound-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.55rem 0.95rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sound-toggle-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.equalizer-bar {
    width: 2px;
    height: 12px;
    background: currentColor;
    border-radius: 1px;
    transition: var(--transition-fast);
}

.sound-toggle-btn.playing .bar-1 { animation: eqWave 1s infinite ease-in-out; }
.sound-toggle-btn.playing .bar-2 { animation: eqWave 1s infinite ease-in-out 0.2s; }
.sound-toggle-btn.playing .bar-3 { animation: eqWave 1s infinite ease-in-out 0.4s; }

@keyframes eqWave {
    0%, 100% { height: 4px; }
    50% { height: 14px; }
}

.sound-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-left: 2px;
}

.btn-inquire {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    transition: var(--transition-smooth);
    background: transparent;
}

.btn-inquire:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #ffffff;
    transition: var(--transition-smooth);
}

.site-header.scrolled .hamburger-btn span {
    background: var(--text-primary);
}

/* ==========================================================================
   HERO SECTION (CINEMATIC HIGH-FASHION VIGNETTE)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    background: var(--bg-hero-dark);
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    z-index: 1;
    will-change: transform;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.92);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 15, 0.55) 0%,
        rgba(13, 13, 15, 0.3) 40%,
        rgba(13, 13, 15, 0.75) 85%,
        var(--bg-canvas) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(13, 13, 15, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: #f7f5f0;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.8rem, 5.8vw, 5.2rem);
    font-weight: 300;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: #e4e2dc;
    max-width: 720px;
    margin: 0 auto 2.8rem;
    font-weight: 300;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: #ffffff;
    color: #111113;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
}

.btn-hero-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollLineAnim 2s infinite;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    color: #e0ded8;
}

@keyframes scrollLineAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   PHILOSOPHY & NARRATIVE SECTION (WARM LINEN)
   ========================================================================== */
.philosophy-section {
    padding: 9rem 0 7rem;
    background-color: var(--bg-canvas);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: center;
}

.editorial-frame {
    position: relative;
    border-radius: var(--radius-arch);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    background: #e8e3d8;
    aspect-ratio: 4/5;
    cursor: pointer;
    will-change: transform, box-shadow;
    transition: box-shadow 0.35s ease;
}

.editorial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.frame-tag {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-hairline);
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    color: var(--text-primary);
    border-radius: 50px;
    white-space: nowrap;
}

.lead-text {
    font-family: var(--font-serif-italic);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

.body-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.editorial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-hairline);
    padding-top: 2.2rem;
}

.stat-num {
    display: block;
    font-family: var(--font-serif-heading);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   CURATED MASTERPIECE GALLERY (OPEN AIRY MASONRY & VIEW SWITCHER)
   ========================================================================== */
.portfolio-section {
    padding: 8rem 0;
    background-color: var(--bg-canvas);
}

.section-subtext {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.portfolio-controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
}

.portfolio-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.6rem;
    background: transparent;
    border: 1px solid var(--border-hairline);
    color: var(--text-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--text-primary);
    color: var(--bg-pure);
    border-color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-view-switcher {
    display: flex;
    background: var(--bg-surface);
    border: 1px solid var(--border-hairline);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.55rem 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    position: relative;
    min-height: 44px;
    min-width: 44px;
}

.view-btn.active,
.view-btn:hover {
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Gallery Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.4rem;
    transition: var(--transition-smooth);
}

.grid-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

/* 3D Gyro Perspective Wrapper & Card Media */
.card-3d-wrap {
    perspective: 1200px;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.card-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/5;
    background: #eae5dc;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform-style: flat;
    will-change: transform, box-shadow;
    transition: box-shadow 0.35s ease;
}

.featured-card .card-media {
    aspect-ratio: 16/10;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Dynamic Golden Sunlight Sheen Overlay (Soft-Light Cross-Browser Composite) */
.card-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(
        circle 400px at var(--sheen-x, 50%) var(--sheen-y, 50%),
        rgba(255, 238, 195, 0.45) 0%,
        rgba(255, 255, 255, 0.2) 35%,
        transparent 75%
    );
    mix-blend-mode: soft-light;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 4;
    -webkit-transform: translateZ(0);
}

.grid-card:hover .card-sheen,
.editorial-frame:hover .card-sheen,
.editorial-portrait-wrap:hover .card-sheen {
    opacity: 1;
}

.card-meta {
    padding-top: 1.4rem;
}

.card-category {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.card-title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Large Editorial Feed View */
.portfolio-grid.feed-view {
    grid-template-columns: 1fr;
    max-width: 960px;
    margin: 0 auto;
    gap: 5.5rem;
}

.feed-view .grid-card.featured-card {
    grid-column: span 1;
}

.feed-view .card-media {
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feed-view .card-meta {
    text-align: center;
    padding-top: 1.8rem;
}

.feed-view .card-title {
    font-size: 2rem;
}

/* ==========================================================================
   COUPLE STORIES & TESTIMONIALS (SOCIAL PROOF)
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg-pure);
    padding: 3rem 2.4rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hairline);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.testimonial-card.featured-testimonial {
    background: #FAF7F2;
    border-color: rgba(184, 151, 88, 0.3);
}

.quote-mark {
    font-family: var(--font-serif-heading);
    font-size: 4rem;
    color: var(--accent-gold-dark);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
}

.quote-text {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.couple-info {
    border-top: 1px solid var(--border-hairline);
    padding-top: 1.2rem;
}

.couple-names {
    display: block;
    font-family: var(--font-serif-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.wedding-venue {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
}

/* ==========================================================================
   EXPERIENCE & DISTINCTION (COLOR SLIDER & 4K CINEMA TEASER)
   ========================================================================== */
.distinction-section {
    padding: 8rem 0;
    background-color: var(--bg-canvas);
}

.distinction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
}

.distinction-item {
    position: relative;
}

.pillar-number {
    font-family: var(--font-serif-heading);
    font-size: 3rem;
    color: var(--accent-gold-dark);
    opacity: 0.5;
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.pillar-title {
    font-family: var(--font-serif-heading);
    font-size: 1.45rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.pillar-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.btn-watch-teaser {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 1.2rem;
    background: var(--bg-surface);
    border: 1px solid var(--accent-gold);
    color: var(--text-primary);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-watch-teaser .play-icon {
    font-size: 0.7rem;
    color: var(--accent-gold-dark);
}

.btn-watch-teaser:hover {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Interactive Before/After RAW vs Color Science Slider */
.color-slider-container {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-hairline);
}

.slider-header {
    margin-bottom: 2.5rem;
}

.slider-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.slider-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.comparison-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    background: #1C1C1E;
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    will-change: clip-path;
}

.slider-overlay .slider-img {
    width: 1000px;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.slider-badge {
    position: absolute;
    top: 1.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    pointer-events: none;
    backdrop-filter: blur(10px);
    z-index: 5;
}

.raw-badge {
    right: 1.5rem;
    background: rgba(28, 28, 30, 0.75);
    color: #FAF7F2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.graded-badge {
    left: 1.5rem;
    background: rgba(184, 151, 88, 0.9);
    color: #1C1C1E;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ffffff;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.handle-line {
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.handle-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #FAF7F2;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.handle-arrows {
    font-size: 1.1rem;
    color: var(--accent-gold-dark);
    font-weight: bold;
    letter-spacing: -2px;
}

/* ==========================================================================
   MINIMALIST FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.faq-accordion {
    max-width: 880px;
    margin: 3.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-hairline);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-hairline);
}

.faq-header {
    width: 100%;
    padding: 1.8rem 0.5rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-serif-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--accent-gold-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold-dark);
    transition: transform 0.4s ease;
    font-family: monospace;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body p {
    padding: 0 0.5rem 1.8rem;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
}

/* ==========================================================================
   CONTACT SECTION (EDITORIAL LINEN INQUIRY & WHATSAPP SYNC)
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-canvas);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
}

.contact-lead {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.channel-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.channel-link,
.channel-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-serif-heading);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.channel-link:hover {
    color: var(--accent-gold-dark);
}

.social-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-tag {
    padding: 0.4rem 1.1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-hairline);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-body);
    transition: var(--transition-smooth);
}

.social-tag:hover {
    background: var(--text-primary);
    color: var(--bg-pure);
    border-color: var(--text-primary);
}

.editorial-form {
    background: var(--bg-pure);
    padding: 3.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hairline);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.editorial-form label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-canvas);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.editorial-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238F7238' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.8rem;
    cursor: pointer;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--text-primary);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.btn-editorial-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--text-primary);
    border: none;
    color: var(--bg-pure);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.btn-editorial-submit:hover {
    background: var(--accent-gold-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-whatsapp-sync {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-sync:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   MEET THE ARTIST (MINIMALIST EDITORIAL CREAM CANVAS & AUTHENTIC PRESS SVGS)
   ========================================================================== */
.artist-section-editorial {
    padding: 8rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.editorial-artist-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 6.5rem;
    align-items: center;
}

.editorial-media-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editorial-portrait-wrap {
    width: 290px;
    height: 350px;
    border-radius: var(--radius-arch);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    background: #e4dfd4;
    margin-bottom: 2.5rem;
    cursor: pointer;
    will-change: transform, box-shadow;
    transition: box-shadow 0.35s ease;
}

.editorial-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%) contrast(105%);
    transition: filter 0.5s ease;
    pointer-events: none;
}

.editorial-portrait-wrap:hover .editorial-portrait-img {
    filter: grayscale(0%) contrast(100%);
}

/* Authentic Press Recognition Grid */
.editorial-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 1.8rem;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 420px;
    padding-top: 0.8rem;
}

.press-logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    opacity: 0.65;
    color: #4A4A50;
    transition: var(--transition-smooth);
    cursor: default;
}

.press-logo-svg:hover {
    opacity: 1;
    color: #111113;
    transform: translateY(-1px);
}

.press-svg {
    height: 100%;
    width: auto;
    max-width: 120px;
}

.editorial-heading {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.18;
    margin-bottom: 2.2rem;
    letter-spacing: -0.5px;
}

.editorial-script-underline {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-weight: 400;
    color: #2b2b2e;
    text-decoration: underline;
    text-decoration-color: var(--accent-gold);
    text-underline-offset: 8px;
    text-decoration-thickness: 1.5px;
}

.editorial-paragraphs p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-weight: 300;
}

.editorial-paragraphs strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================================================
   FOOTER (EDITORIAL WARM LINEN & MAGNETIC BRAND SEAL)
   ========================================================================== */
.site-footer {
    padding: 6rem 0 3.5rem;
    background: var(--bg-canvas);
    color: var(--text-body);
    border-top: 1px solid var(--border-hairline);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-hairline);
}

.footer-brand-seal {
    display: inline-flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.footer-logo {
    font-family: var(--font-serif-heading);
    font-size: 1.35rem;
    letter-spacing: 3.5px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.seal-arrow {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    color: var(--accent-gold-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-brand-seal:hover .seal-arrow {
    transform: translateY(-2px);
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    margin-top: 0.5rem;
    max-width: 480px;
}

.footer-col-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-col-links a {
    font-size: 0.78rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-col-links a:hover {
    color: var(--accent-gold-dark);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING LUXURY WHATSAPP WIDGET
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem 0.8rem 1.2rem;
    background: #1C1C1E;
    color: #FAF7F2;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    color: #25D366;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(184, 151, 88, 0.35);
}

.floating-whatsapp-btn:hover .whatsapp-icon {
    color: #ffffff;
}

/* ==========================================================================
   LUXURY INLINE NOTIFICATION TOAST
   ========================================================================== */
.luxury-toast {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 2100;
    background: #1C1C1E;
    color: #FAF7F2;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-gold);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    max-width: 90vw;
    width: 460px;
}

.luxury-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.6rem;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    color: #1C1C1E;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    font-family: var(--font-serif-heading);
    font-size: 1.15rem;
    color: #FAF7F2;
}

.toast-text p {
    font-size: 0.82rem;
    color: #B0AEA8;
    line-height: 1.4;
}

.toast-progress {
    height: 3px;
    background: var(--accent-gold);
    width: 100%;
    transition: width 4s linear;
}

/* ==========================================================================
   4K CINEMATIC SHOWREEL VIDEO MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-close-btn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2550;
}

.video-close-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.video-modal-content {
    width: 90%;
    max-width: 1100px;
    position: relative;
}

.video-player-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(184, 151, 88, 0.3);
}

.video-player-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cinema-badge {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    pointer-events: none;
}

/* ==========================================================================
   INTERACTIVE LIGHTBOX MODAL WITH DEEP ZOOM
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 15, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    touch-action: pan-y;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-zoom-hint {
    position: absolute;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    user-select: none;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-xs);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
}

.lightbox-img.zoomed {
    transform: scale(1.6);
    cursor: grab;
    border-radius: 0;
}

.lightbox-caption {
    margin-top: 1.4rem;
    text-align: center;
}

.lightbox-caption h4 {
    font-family: var(--font-serif-heading);
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.lightbox-caption p {
    font-size: 0.88rem;
    color: #c4c2bc;
    font-weight: 300;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2050;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2050;
}

.lightbox-arrow.prev { left: 2rem; }
.lightbox-arrow.next { right: 2rem; }

.lightbox-arrow:hover {
    background: #ffffff;
    color: #000000;
}

/* Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
    .philosophy-grid,
    .editorial-artist-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-card.featured-card {
        grid-column: span 2;
    }
    .testimonials-grid,
    .distinction-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 820px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #FAF7F2;
        border-left: 1px solid var(--border-hairline);
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        padding: 3rem;
        transition: var(--transition-smooth);
        box-shadow: -20px 0 50px rgba(0,0,0,0.08);
    }
    .nav-links.mobile-open {
        right: 0;
    }
    .nav-links .nav-item {
        color: var(--text-primary);
        font-size: 1rem;
    }
    .hamburger-btn {
        display: flex;
    }
    .btn-inquire {
        display: none;
    }
    .editorial-form {
        padding: 2.5rem 1.8rem;
    }
    .floating-whatsapp-btn .whatsapp-label {
        display: none;
    }
    .floating-whatsapp-btn {
        padding: 0.9rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .site-footer {
        padding-bottom: 5.5rem;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .grid-card.featured-card {
        grid-column: span 1;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .footer-inner,
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .lightbox-arrow {
        display: none;
    }
    .comparison-slider-wrapper {
        aspect-ratio: 4/3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card-media,
    .editorial-frame,
    .editorial-portrait-wrap,
    .reveal-item {
        transform: none !important;
        transition: none !important;
    }
    .card-sheen {
        display: none !important;
    }
}
