/* =========================================
   iVRA COSMETICS — Accessoires V2
   CSS Stylesheet
   ========================================= */

body.accessoires-theme {
    background-color: #0d0a08;
    color: #EBE8E3;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* -----------------------------------------
/* Removed Noise Overlay CSS */

/* -----------------------------------------
   1. HERO SECTION
   ----------------------------------------- */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: -5%;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    animation: heroAmbientBreathing 30s linear infinite alternate;
}

@keyframes heroAmbientBreathing {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, #0d0a08 100%);
    z-index: -1;
}

.hero__content {
    text-align: center;
    z-index: 2;
    padding: 0 5%;
}

.hero__eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 2rem;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em; /* Editorial tighter tracking */
    margin: 0 0 2rem 0;
}

.hero__desc {
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 0.3em;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* -----------------------------------------
   2. MARQUEE TAPE
   ----------------------------------------- */
.marquee-wrap {
    width: 100%;
    background: var(--nav-brass, #C6A87C);
    color: #000;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: inline-flex;
    will-change: transform;
}

.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    padding-right: 2rem;
    transition: color 0.4s ease;
}

.marquee-wrap:hover .marquee-track span {
    color: #fff;
}

/* -----------------------------------------
   3. PHILOSOPHY
   ----------------------------------------- */
.philosophie {
    padding: 15rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.philosophie__inner {
    max-width: 1000px;
}

.ph-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
    /* GSAP fromTo handles the clipPath dynamically to avoid browser formatting bugs */
}

/* -----------------------------------------
   4. VAULT HORIZONTAL SCROLL
   ----------------------------------------- */

/*
 * VAULT HEIGHT EXPLANATION:
 * The sticky context requires the parent (.vault-container) to be taller
 * than the viewport by exactly the horizontal travel distance, so the user
 * scrolls through the full panel sequence before the element un-sticks.
 *
 * Travel = 4 panels × 75vw − 75vw (visible area) = 225vw
 * Total container height = 100vh (initial view) + 225vw (scroll travel)
 *
 * On mobile the horizontal engine is disabled, so height reverts to auto.
 */
.vault-container {
    position: relative;
    height: calc(100vh + 225vw);
}

.vault-sticky {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.vault-sidebar {
    flex-shrink: 0;
    width: 25vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: #000;
    z-index: 10;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.vault-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 2rem;
}

.vault-sidebar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 0.9;
    margin: 0;
}

/* The track holds all 4 panels side by side. 
 * Each panel = 75vw. Total = 300vw.
 * We start at x:0 and GSAP moves it left until the last panel is visible.
 */
.vault-track {
    display: flex;
    height: 100%;
    /* 4 panels × 75vw = 300vw */
    width: 300vw;
    will-change: transform;
}

.v-panel {
    /* Each panel exactly 75vw wide, full height, horizontal split */
    flex-shrink: 0;
    width: 75vw;
    height: 100%;
    display: flex;
    flex-direction: row;
    border-right: 1px solid rgba(255,255,255,0.05);
    background: #111;
}

.v-panel__img {
    flex: 1;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.v-panel__img img {
    position: absolute;
    inset: 0;
    width: 115%;  /* Extra width + negative left offset allows horizontal GSAP Parallax */
    left: -7.5%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.v-panel__img--light {
    background: #EBE8E3;
}

.v-panel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.v-panel__img--light img {
    opacity: 0.9;
}

.v-panel__info {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-panel__num {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 1.5rem;
}

.v-panel__info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.v-panel__info p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.6;
    margin-bottom: 2.5rem;
    max-width: 360px;
}

.v-panel__btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    background: transparent;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-panel__btn:hover {
    background: #fff;
    color: #000;
    padding: 1rem 3rem;
    transform: scale(1.02);
}

/* ---- Light variant text (panels 2 & 4) -------------------------------- */
.v-panel--light {
    background: #EBE8E3;
}
.v-panel--light .v-panel__info {
    color: #111;
    background: #EBE8E3;
}
.v-panel--light .v-panel__info * {
    color: #111 !important;
}
.v-panel--light .v-panel__num {
    color: #6a5a41 !important; /* Darker brass tone readable on white */
}
.v-panel--light .v-panel__info h3 {
    color: #111 !important;
}
.v-panel--light .v-panel__info p {
    color: #111 !important;
    opacity: 0.6;
}
.v-panel--light .v-panel__btn {
    border-color: rgba(0,0,0,0.25) !important;
    color: #111 !important;
}
.v-panel--light .v-panel__btn:hover {
    background: #111 !important;
    color: #EBE8E3 !important;
}

/* ---- Mobile: disable horizontal scroll, stack vertically -------------- */
@media (max-width: 992px) {
    .vault-container {
        position: static;
        height: auto;  /* Reset the calc height on mobile */
    }
    .vault-sticky {
        position: static;
        height: auto;
        flex-direction: column;
        overflow: visible;
    }
    .vault-sidebar {
        width: 100%;
        height: auto;
        padding: 4rem 5%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .vault-track {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .v-panel {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .vault-panel { scroll-snap-align: start; flex: none; width: 100vw; }
    .v-panel__info { padding: 4rem 5%; }
}

/* -----------------------------------------
   X. CUSTOM CURSOR (GLASSMORPHIC VIEW STATE)
   ----------------------------------------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                background 0.4s ease, 
                border-radius 0.4s ease;
}

.custom-cursor.is-view-state {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* mix-blend-mode: normal prevents the text from inverting to black against white */
    mix-blend-mode: normal; 
}

.cursor-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-cursor.is-view-state .cursor-text {
    opacity: 1;
}

/* -----------------------------------------
   5. GALLERY
   ----------------------------------------- */
.gallery {
    padding: 12rem 5% 8rem;
    position: relative;
    background: #0d0a08;
}

.gallery__header {
    text-align: center;
    margin-bottom: 8rem;
}

.gallery__eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 2rem;
}

.gallery__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1;
    margin: 0 0 2rem 0;
}

.gallery__header h2 em {
    font-style: italic;
    color: var(--nav-brass, #C6A87C);
}

.gallery__header p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

/* The 12-column editorial grid               */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 80px;  /* Base row unit */
    gap: 1.5rem;
    position: relative;
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
}

/* Dark gradient overlay on every item — strong enough to guarantee legibility.
 * Stacking order inside .g-item (a stacking context):
 *   img (z-index: 0) → ::after overlay (z-index: 2) → captions (z-index: 5+)
 */
.g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        /* Strong dark scrim at bottom (captions live here) */
        linear-gradient(
            to top,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.60) 25%,
            rgba(0,0,0,0.20) 55%,
            rgba(0,0,0,0)    80%
        );
}

/* Force image to fill + extra height for parallax room */
.g-item img {
    position: absolute;
    inset: 0;
    z-index: 0;         /* Explicit — always below ::after and captions */
    width: 100%;
    height: 115%;       /* 15% extra allows up/down parallax without gaps */
    top: -7.5%;         /* Centre the overbleed vertically */
    object-fit: cover;
    will-change: transform;
    transition: transform 0.6s ease;
}

.g-item:hover img {
    transform: scale(1.04);
}

/* ---- Grid positions (12-col × row-span units) ---- */
/* Item 1: Large hero, left side */
.g-item--1 {
    grid-column: 1 / 6;
    grid-row: 1 / 9;   /* 8 rows × 80px + 7gaps = ~695px */
}

/* Item 2: Medium portrait, top-right */
.g-item--2 {
    grid-column: 6 / 10;
    grid-row: 1 / 7;   /* 6 rows */
}

/* Item 3: Small landscape, far right */
.g-item--3 {
    grid-column: 10 / 13;
    grid-row: 1 / 5;   /* 4 rows */
}

/* Item 4: Wide landscape, bottom-left */
.g-item--4 {
    grid-column: 1 / 7;
    grid-row: 9 / 14;  /* 5 rows */
}

/* Item 5: Tall portrait, bottom-center-right */
.g-item--5 {
    grid-column: 7 / 10;
    grid-row: 7 / 14;  /* 7 rows */
}

/* Item 6: Medium, far-right bottom */
.g-item--6 {
    grid-column: 10 / 13;
    grid-row: 5 / 14;  /* 9 rows */
}

/* Item caption (bottom-left bar) */
.g-item__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    z-index: 5;
}

/* Glass-style caption card */
.glass-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(13, 10, 8, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.75rem 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    z-index: 10;
}

.glass-caption h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    margin: 0 0 0.75rem 0;
}

.glass-caption p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.8;
    color: #EBE8E3;
}

/* ---- Specs Band ---------------------------------------- */
.gallery__specs-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.spec-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1;
    color: var(--nav-brass, #C6A87C);
}

.spec-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
    line-height: 1.5;
}

.spec-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ---- Gallery CTA --------------------------------------- */
.gallery__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 5%;
    gap: 3rem;
}

.gallery__cta p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.6;
    max-width: 480px;
    margin: 0;
}

.gallery__cta-btn {
    display: inline-block;
    padding: 1.4rem 4rem;
    border: 1px solid rgba(198,168,124,0.4);
    border-radius: 40px;
    background: transparent;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.gallery__cta-btn:hover {
    background: var(--nav-brass, #C6A87C);
    border-color: var(--nav-brass, #C6A87C);
    color: #000;
}

/* ---- Mobile gallery ----------------------------------- */
@media (max-width: 900px) {
    .gallery__grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .g-item {
        height: 70vw;
        border-radius: 8px;
    }
    .g-item img {
        inset: 0;
        top: 0;
        height: 100%;
    }
    .spec-divider { display: none; }
    .gallery__specs-band {
        gap: 3rem;
        justify-content: center;
    }
}

/* -----------------------------------------
   X. CUSTOM CURSOR (GLASSMORPHIC VIEW STATE)
   ----------------------------------------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                background 0.4s ease, 
                border-radius 0.4s ease;
}

.custom-cursor.is-view-state {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* mix-blend-mode: normal prevents the text from inverting to black against white */
    mix-blend-mode: normal; 
}

.cursor-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-cursor.is-view-state .cursor-text {
    opacity: 1;
}

/* -----------------------------------------
   Y. GALLERY LIGHTBOX
   ----------------------------------------- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.lightbox-close {
    position: absolute;
    top: 3rem;
    right: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.6;
}

.lightbox-inner {
    width: 80vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    will-change: transform;
}

.lightbox-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--nav-brass, #C6A87C);
    text-align: center;
}

/* -----------------------------------------
   Z. PRE-FOOTER SECTIONS 
   ----------------------------------------- */
/* 6. B2B PROFESSIONAL EDITORIAL BLOCK */
.b2b-editorial {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 80vh;
    background: #050505;
    margin-top: 10rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.b2b-editorial__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.b2b-editorial__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.b2b-editorial__media-tag {
    position: absolute;
    top: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.b2b-editorial__content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b2b-editorial__eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 2rem;
    display: block;
}

.b2b-editorial__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 300;
    margin: 0 0 2rem 0;
}

.b2b-editorial__title em {
    font-style: italic;
    color: var(--nav-brass, #C6A87C);
}

.b2b-editorial__body {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 480px;
}

.b2b-editorial__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.b2b-editorial__checklist li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.check-icon {
    color: var(--nav-brass, #C6A87C);
}

.b2b-editorial__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.b2b-btn {
    display: inline-flex;
    padding: 1rem 2rem;
    border: 1px solid var(--nav-brass, #C6A87C);
    color: var(--nav-brass, #C6A87C);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.b2b-btn:hover {
    background: var(--nav-brass, #C6A87C);
    color: #000;
}

.b2b-link {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.b2b-link:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .b2b-editorial {
        grid-template-columns: 1fr;
    }
    .b2b-editorial__media {
        min-height: 400px;
    }
    .b2b-editorial__content {
        padding: 4rem 5%;
    }
}

/* 7. TECHNICAL SPECIFICATIONS DEEP-DIVE */
.tech-specs {
    padding: 10rem 5%;
    background: #0d0a08;
    position: relative;
}

.tech-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.tech-specs__header {
    text-align: center;
    margin-bottom: 6rem;
}

.tech-specs__eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--nav-brass, #C6A87C);
    display: block;
    margin-bottom: 1.5rem;
}

.tech-specs__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 0.95;
    margin: 0;
}

.tech-specs__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-spec-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    flex: 1 1 350px;
    max-width: 420px;
}

.tech-spec-card:hover {
    background: #151515;
    transform: translateY(-5px);
}

.tech-spec-card__icon {
    width: 40px;
    height: 40px;
    color: var(--nav-brass, #C6A87C);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.tech-spec-card h4 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.tech-spec-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.6;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.tech-spec-card__tag {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

/* 8. COMPATIBLE COLLECTIONS CROSS-SELL */
.compat-collections {
    padding: 5rem 0 0 0;
    background: #0d0a08;
}

.compat-collections__header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 5rem;
}

.compat-collections__eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 1.5rem;
}

.compat-collections__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    margin: 0 0 1.5rem 0;
}

.compat-collections__header p {
    font-size: 0.95rem;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

.compat-collections__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compat-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.4s ease;
    padding-bottom: 3rem;
}

.compat-card:last-child {
    border-right: none;
}

.compat-card:hover {
    background: rgba(255,255,255,0.02);
}

.compat-card__img {
    width: 100%;
    aspect-ratio: 16/11;
    background: #050505;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.compat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease;
    will-change: transform;
    filter: brightness(0.9);
}

.compat-card:hover .compat-card__img img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.compat-card__body {
    padding: 2rem 2rem 0;
    position: relative;
}

.compat-card__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--nav-brass, #C6A87C);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.compat-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.compat-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.5;
    margin: 0;
}

.compat-card__arrow {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    color: var(--nav-brass, #C6A87C);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.compat-card:hover .compat-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1200px) {
    .compat-collections__track {
        grid-template-columns: repeat(2, 1fr);
    }
    .compat-card:nth-child(even) {
        border-right: none;
    }
    .compat-card:nth-child(1), .compat-card:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}
@media (max-width: 768px) {
    .compat-collections__track {
        grid-template-columns: 1fr;
    }
    .compat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
}

/* FOOTER */
.footer {
    padding: 8rem 4vw 2rem 4vw;
    background: #050505; /* Inverted dark footer */
    color: #EBE8E3;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(250, 249, 246, 0.15);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__col--newsletter {
    max-width: 400px;
}

.footer__label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C6A87C;
}

.footer__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.7);
    margin-top: -1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-style: italic;
}
.footer__links a {
    color: #EBE8E3;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: opacity 0.3s ease;
}
.footer__links a:hover {
    opacity: 0.6;
}

.newsletter form {
    display: flex;
    border-bottom: 1px solid #C6A87C;
    padding-bottom: 0.5rem;
}

.newsletter input {
    border: none;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    flex: 1;
    outline: none;
    letter-spacing: 0.1em;
    color: #EBE8E3;
}

.newsletter input::placeholder {
    color: rgba(250, 249, 246, 0.4);
}

.newsletter button {
    color: #C6A87C;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter button:hover {
    transform: translateX(10px);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
}

.footer__massive-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 15vw;
    font-weight: 300;
    line-height: 0.8;
    color: #EBE8E3;
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
    white-space: nowrap;
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.5);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__legal-links {
    display: flex;
    gap: 2rem;
}
.footer__legal-links a { color: inherit; transition: color 0.3s ease; }
.footer__legal-links a:hover { color: #EBE8E3; }
