:root {
    --primary-raspberry: #D6336C;
    --soft-blush: #FFB6C1;
    --editorial-pink: #FFF5F8;
    --coral-accent: #E05454;
    --royal-purple: #792CA2;
    --dark-plum: #3D2048;
    --font-heading: 'Croissant One', cursive;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

/* Base Resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background-color: var(--editorial-pink);
    color: var(--dark-plum);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Custom Exhibition Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-plum); }
::-webkit-scrollbar-thumb { background: var(--primary-raspberry); border-radius: 0; }

/* ============ LOG PANEL STYLES ============ */
.log-panel-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 32, 72, 0.7);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    justify-content: flex-end;
    animation: slideInLog 0.4s ease;
}

@keyframes slideInLog {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.log-panel {
    background: var(--editorial-pink);
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.log-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-raspberry);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.log-panel-header h2 {
    font-family: var(--font-heading);
    color: var(--dark-plum);
    font-size: 1.8rem;
}

.log-close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-raspberry);
    transition: var(--transition-fast);
    padding: 0 10px;
}

.log-close-btn:hover {
    transform: rotate(90deg);
    color: var(--royal-purple);
}

.log-items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.log-items-container::-webkit-scrollbar {
    width: 6px;
}

.log-items-container::-webkit-scrollbar-track {
    background: var(--soft-blush);
}

.log-items-container::-webkit-scrollbar-thumb {
    background: var(--primary-raspberry);
    border-radius: 10px;
}

.log-empty-message {
    color: var(--dark-plum);
    opacity: 0.5;
    text-align: center;
    margin-top: 60px;
    font-style: italic;
}

.log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(61, 32, 72, 0.1);
    animation: fadeInItem 0.3s ease;
}

@keyframes fadeInItem {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.log-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.log-item-name {
    font-weight: 600;
    color: var(--dark-plum);
    font-size: 1rem;
}

.log-item-time {
    font-size: 0.75rem;
    color: var(--primary-raspberry);
    opacity: 0.7;
}

.log-item-remove {
    background: none;
    border: none;
    color: var(--coral-accent);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px 10px;
    transition: var(--transition-fast);
}

.log-item-remove:hover {
    transform: scale(1.2);
    color: var(--primary-raspberry);
}

.log-panel-footer {
    border-top: 2px solid rgba(61, 32, 72, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-clear-log {
    background: var(--coral-accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-clear-log:hover {
    background: var(--primary-raspberry);
    transform: scale(1.02);
}

.log-count {
    color: var(--dark-plum);
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark-plum);
    color: var(--editorial-pink);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 4000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideUpToast 0.4s ease;
    border-left: 4px solid var(--primary-raspberry);
}

@keyframes slideUpToast {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FIXED FLOATING NAVIGATION HEADER */
.avant-header {
    position: fixed;
    height: 100px;
    top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 5%;
    z-index: 1000;
    transition: var(--transition-smooth);
}
.avant-header.scrolled {
    background: rgba(255, 182, 193, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(121, 44, 162, 0.1);
}
.logo-text { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    color: var(--primary-raspberry); 
    letter-spacing: -1px;
    cursor: pointer;
}

.nav-container { display: flex; align-items: center; }
.nav-links { display: flex; gap: 45px; list-style: none; }
.nav-links a { 
    font-size: 0.9rem; 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: var(--transition-fast); 
    position: relative;
    cursor: pointer;
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: -6px; 
    left: 0; 
    background-color: var(--primary-raspberry); 
    transition: var(--transition-fast); 
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-raspberry); }

.header-actions { display: flex; gap: 30px; align-items: center; }
.action-item { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition-fast); }
.action-item:hover { color: var(--primary-raspberry); }

/* Hamburger Icon Menu Component */
.hamburger { 
    display: none; 
    cursor: pointer; 
    background: none; 
    border: none; 
    flex-direction: column; 
    gap: 7px; 
    z-index: 1002;
    padding: 5px;
}
.hamburger span { 
    width: 32px; 
    height: 2px; 
    background-color: var(--dark-plum); 
    transition: var(--transition-fast); 
}

/* MOBILE MENU DRAWER OVERRIDE */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
        background: var(--dark-plum); flex-direction: column; justify-content: center;
        align-items: center; gap: 40px; transition: var(--transition-smooth);
        z-index: 1001; box-shadow: -20px 0 60px rgba(0,0,0,0.3);
    }
    .nav-links a { color: var(--editorial-pink); font-size: 1.6rem; }
    .hamburger { display: flex; }
    .nav-active .nav-links { right: 0; }
    .nav-active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background-color: var(--editorial-pink); }
    .nav-active .hamburger span:nth-child(2) { opacity: 0; }
    .nav-active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); background-color: var(--editorial-pink); }
    .header-actions .action-item { display: none; }
}

/* PAGE SHELLS WRAPPERS */
.page-view { display: none; width: 100%; min-height: 100vh; animation: fadeInPage 1s ease forwards; }
.page-view.active-view { display: block; }
@keyframes fadeInPage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* SECTION 1: HERO DISPLAY */
.hero-section {
    height: 100vh; position: relative; overflow: hidden;
    background: var(--soft-blush); display: flex; align-items: center; padding: 0 8%;
}
.hero-bg-wall-text {
    position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
    font-family: var(--font-heading); font-size: clamp(4rem, 15vw, 12rem);
    color: rgba(214, 51, 108, 0.07); line-height: 0.85; pointer-events: none;
    z-index: 1; text-transform: uppercase; white-space: pre;
}
.hero-images-container {
    position: absolute; right: 5%; top: 10%; width: 55%; height: 80vh;
    display: flex; justify-content: center; align-items: center; z-index: 2;
}
.hero-vertical-frame {
    position: absolute; overflow: hidden; box-shadow: 0 30px 70px rgba(61,32,72,0.25);
    transition: transform 0.2s ease-out; background: var(--dark-plum);
}
.hero-vertical-frame img { height: 100%; width: 100%; object-fit: cover; }
.frame-1 { width: 25%; height: 50vh; left: 0; top: 15%; animation: heroFloat 6s ease-in-out infinite alternate; }
.frame-2 { width: 40%; height: 70vh; left: 30%; top: 5%; z-index: 3; animation: heroFloat 8s ease-in-out infinite alternate-reverse; }
.frame-3 { width: 28%; height: 55vh; right: 0; top: 20%; animation: heroFloat 7s ease-in-out infinite alternate 1s; }

.hero-content-foreground {
    position: relative; z-index: 4; max-width: 450px; margin-top: 100px;
}
.hero-content-foreground p { font-size: 1.1rem; color: var(--dark-plum); margin-bottom: 35px; font-weight: 300; }

.btn-curated {
    display: inline-block; padding: 18px 40px; border-radius: 50px;
    background: var(--primary-raspberry); color: white; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(214, 51, 108, 0.3); transition: var(--transition-smooth);
    border: none; cursor: pointer;
}
.btn-curated:hover { 
    transform: translateY(-5px) scale(1.03); 
    box-shadow: 0 20px 40px rgba(121, 44, 162, 0.4); 
    background: var(--royal-purple); 
}

@keyframes heroFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-25px) rotate(1.5deg); }
}

/* SECTION 2: FLOATING RIBBONS */
.ribbons-section { background-color: var(--editorial-pink); padding: 160px 0; position: relative; }
.ribbon-row {
    display: flex; align-items: center; width: 100%; margin-bottom: 140px; padding: 0 8%; gap: 6%;
}
.ribbon-row:nth-child(even) { flex-direction: row-reverse; }
.ribbon-clip-frame {
    width: 55%; height: 420px; overflow: hidden;
    clip-path: ellipse(85% 55% at 50% 50%);
    transition: var(--transition-smooth);
}
.ribbon-clip-frame:hover { clip-path: ellipse(100% 65% at 50% 50%); }
.ribbon-clip-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.ribbon-clip-frame:hover img { transform: scale(1.08); }
.ribbon-text-panel { width: 35%; }
.ribbon-text-panel h3 { font-size: 3rem; margin-bottom: 20px; color: var(--royal-purple); }
.ribbon-text-panel p { font-size: 1rem; color: var(--dark-plum); opacity: 0.85; }

/* SECTION 3: VERTICAL ROTATING COLUMN */
.rotating-section {
    background: linear-gradient(135deg, var(--primary-raspberry), var(--royal-purple));
    padding: 160px 8%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 10%;
    position: relative; overflow: hidden;
}
.rotating-viewport {
    height: 650px; overflow: hidden; position: relative;
    border-radius: 300px 300px 0px 0px; box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,182,193,0.2);
}
.rotating-vertical-track {
    display: flex; flex-direction: column;
    animation: verticalInfiniteScroll 20s linear infinite;
}
.rotating-vertical-track img { height: 650px; object-fit: cover; width: 100%; }
.rotating-text-panel h2 { font-size: clamp(3.5rem, 8vw, 6.5rem); color: var(--editorial-pink); line-height: 1; margin-bottom: 30px; }
.rotating-text-panel p { color: var(--soft-blush); font-size: 1.15rem; max-width: 500px; font-weight: 300; }

@keyframes verticalInfiniteScroll {
    0%, 18% { transform: translateY(0); }
    22%, 40% { transform: translateY(-650px); }
    44%, 62% { transform: translateY(-1300px); }
    66%, 84% { transform: translateY(-1950px); }
    88%, 100% { transform: translateY(-2600px); }
}

/* SECTION 4: IMMERSIVE ROOM */
.immersive-room-canvas {
    height: 100vh; width: 100%; position: relative; overflow: hidden;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
}
.immersive-overlay-shimmer {
    position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(61,32,72,0.1), rgba(61,32,72,0.4));
    pointer-events: none;
}
.exhibition-hotspot {
    position: absolute; width: 28px; height: 28px; background: rgba(255,255,255,0.8);
    border-radius: 50%; cursor: pointer; transition: var(--transition-fast);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6); animation: hotspotPulse 2.5s infinite;
    z-index: 10;
}
.exhibition-hotspot::before {
    content: ''; position: absolute; width: 10px; height: 10px; background: var(--primary-raspberry);
    border-radius: 50%; top: 9px; left: 9px;
}
.hotspot-info-bubble {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%) scale(0.8);
    background: rgba(61, 32, 72, 0.96); color: white; padding: 20px; border-radius: 16px;
    width: 250px; opacity: 0; pointer-events: none; transition: var(--transition-smooth);
    backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,182,193,0.2);
}
.hotspot-info-bubble h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 6px; color: var(--soft-blush); }
.hotspot-info-bubble p { font-size: 0.85rem; opacity: 0.85; line-height: 1.4; }
.exhibition-hotspot:hover .hotspot-info-bubble { opacity: 1; transform: translateX(-50%) scale(1); pointer-events: auto; }

@keyframes hotspotPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.8); }
    70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* SECTION 5: TYPOGRAPHY WALL */
.typography-wall {
    background-color: var(--dark-plum); padding: 160px 5%; overflow: hidden; position: relative;
}
.wall-text-container { display: flex; flex-direction: column; width: 100%; }
.wall-text-row {
    font-size: clamp(3.5rem, 14vw, 11.5rem); font-family: var(--font-heading);
    color: transparent; -webkit-text-stroke: 1.5px var(--soft-blush);
    line-height: 0.95; text-transform: uppercase; position: relative;
    display: flex; align-items: center; width: 100%; justify-content: space-between;
    transition: var(--transition-fast); cursor: default;
}
.wall-hidden-media {
    width: 0; height: 10vw; overflow: hidden; border-radius: 80px;
    transition: var(--transition-smooth); border: 0px solid var(--primary-raspberry);
    opacity: 0;
}
.wall-hidden-media img { height: 100%; width: 100%; object-fit: cover; }
.wall-text-row:hover { color: var(--editorial-pink); -webkit-text-stroke: 1.5px var(--editorial-pink); }
.wall-text-row:hover .wall-hidden-media { width: 22vw; opacity: 1; border-width: 2px; margin: 0 30px; }

/* SECTION 6: MOSAIC */
.mosaic-section { padding: 180px 8%; background-color: var(--editorial-pink); }
.mosaic-asymmetric-grid {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 50px; position: relative;
}
.mosaic-asset-card { position: relative; overflow: hidden; border-radius: 0px; box-shadow: 0 20px 50px rgba(61,32,72,0.08); }
.mosaic-asset-card img { transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1); height: 100%; width: 100%; object-fit: cover; }
.mosaic-asset-card:hover img { transform: scale(1.07); }
.mosaic-label {
    position: absolute; bottom: 25px; left: 25px; background: rgba(255,245,248,0.92);
    padding: 10px 20px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--dark-plum); border-left: 3px solid var(--primary-raspberry);
}
.m-block-1 { grid-column: 1 / 6; height: 550px; transform: translateY(60px); }
.m-block-2 { grid-column: 6 / 13; height: 400px; }
.m-block-3 { grid-column: 1 / 5; height: 350px; }
.m-block-4 { grid-column: 5 / 9; height: 620px; transform: translateY(-90px); z-index: 5; }
.m-block-5 { grid-column: 9 / 13; height: 460px; }

/* SECTION 7: HANGING PANELS */
.hanging-studios-section { background-color: var(--soft-blush); padding: 160px 5%; overflow: hidden; }
.hanging-panels-flex-axis {
    display: flex; gap: 60px; justify-content: center; align-items: flex-start; flex-wrap: wrap;
}
.hanging-sculptural-panel {
    background: var(--editorial-pink); width: 310px; padding: 25px; 
    box-shadow: 0 40px 60px rgba(61,32,72,0.12);
    transform-origin: top center; animation: continuousPanelSwing 6s ease-in-out infinite alternate;
}
.hanging-sculptural-panel:nth-child(even) { animation-delay: -3s; animation-duration: 5s; }
.hanging-sculptural-panel img { height: 360px; object-fit: cover; margin-bottom: 25px; }
.hanging-sculptural-panel h4 { font-size: 1.5rem; color: var(--royal-purple); margin-bottom: 12px; }
.hanging-sculptural-panel p { font-size: 0.9rem; opacity: 0.8; }

@keyframes continuousPanelSwing {
    0% { transform: rotate(-3.5deg); }
    100% { transform: rotate(3.5deg); }
}

/* SECTION 8: PARALLAX QUOTE */
.parallax-quote-section {
    height: 75vh; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 12%;
}
.parallax-scrolled-bg {
    position: absolute; top: -30%; left: 0; width: 100%; height: 160%;
    background: linear-gradient(rgba(61, 32, 72, 0.88), rgba(121, 44, 162, 0.92)), 
                url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    z-index: 1; transform: translateY(0); transition: transform 0.1s linear;
}
.quote-foreground-box { position: relative; z-index: 3; color: var(--editorial-pink); }
.quote-foreground-box h2 { font-size: clamp(2.2rem, 6vw, 5rem); line-height: 1.25; margin-bottom: 30px; letter-spacing: -1px; }
.quote-foreground-box p { font-size: 1.2rem; font-weight: 300; letter-spacing: 3px; color: var(--soft-blush); text-transform: uppercase; }

/* SECTION 9: ARCHIVE STRIP */
.archive-exhibition-section { background-color: var(--editorial-pink); padding: 160px 0 160px 8%; overflow: hidden; }
.archive-exhibition-section h2 { font-size: 3.5rem; margin-bottom: 50px; color: var(--dark-plum); }
.archive-horizontal-axis {
    display: flex; gap: 50px; overflow-x: auto; padding-bottom: 50px;
    scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
}
.archive-horizontal-axis::-webkit-scrollbar { display: none; }
.archive-exhibition-card {
    flex: 0 0 480px; scroll-snap-align: start; background: white; padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.04); transition: var(--transition-smooth);
}
.archive-exhibition-card:hover { transform: translateY(-15px); }
.archive-media-frame { position: relative; overflow: hidden; margin-bottom: 25px; height: 320px; }
.archive-tag-year { position: absolute; top: 20px; left: 20px; background: var(--dark-plum); color: white; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; border-radius: 30px; }
.archive-exhibition-card h3 { font-size: 1.75rem; color: var(--primary-raspberry); margin-bottom: 12px; }
.archive-exhibition-card p { font-size: 0.95rem; opacity: 0.8; }

/* SECTION 10: SUBSCRIPTION LOUNGE */
.subscription-lounge-chamber {
    background-color: var(--royal-purple); padding: 160px 8%; position: relative; overflow: hidden;
    display: flex; justify-content: center; align-items: center;
}
.glowing-vector-ambient {
    position: absolute; background: radial-gradient(circle, rgba(255,182,193,0.35) 0%, rgba(255,182,193,0) 75%);
    border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.g-vector-1 { width: 600px; height: 600px; top: -250px; left: -150px; }
.g-vector-2 { width: 500px; height: 500px; bottom: -200px; right: -100px; }

.subscription-capsule-pod {
    background: rgba(61, 32, 72, 0.75); backdrop-filter: blur(25px); border: 1px solid rgba(255,182,193,0.25);
    padding: 90px 70px; border-radius: 120px; max-width: 900px; width: 100%; text-align: center; z-index: 5;
    box-shadow: 0 50px 100px rgba(0,0,0,0.45);
}
.subscription-capsule-pod h2 { font-size: 3.5rem; color: var(--editorial-pink); margin-bottom: 20px; }
.subscription-capsule-pod p { color: var(--soft-blush); margin-bottom: 45px; font-size: 1.1rem; font-weight: 300; }
.capsule-form-rig { display: flex; flex-direction: column; gap: 25px; max-width: 550px; margin: 0 auto 25px;}
.form-dual-row { display: flex; gap: 20px; }
.capsule-form-rig input {
    padding: 20px 30px; border-radius: 40px; border: 1px solid rgba(255,182,193,0.3);
    background: rgba(255,255,255,0.06); color: white; font-size: 1rem; width: 100%; outline: none;
    transition: var(--transition-fast);
}
.capsule-form-rig input:focus { background: rgba(255,255,255,0.12); border-color: var(--soft-blush); }
.capsule-form-rig button {
    background: var(--primary-raspberry); color: white; border: none; padding: 20px 45px;
    border-radius: 40px; cursor: pointer; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; transition: var(--transition-smooth);
}
.capsule-form-rig button:hover { background: var(--editorial-pink); color: var(--dark-plum); transform: scale(1.02); }
.opt-out-trigger { color: var(--soft-blush); opacity: 0.6; font-size: 0.85rem; cursor: pointer; border: none; background: none; transition: var(--transition-fast);}
.opt-out-trigger:hover { opacity: 1; text-decoration: underline; }

/* SUBPAGES */
.extended-hero-header {
    min-height: 70vh; display: flex; flex-direction: column; justify-content: center; padding: 160px 8% 80px;
    background: linear-gradient(135deg, var(--soft-blush), var(--editorial-pink));
    position: relative; overflow: hidden; border-bottom: 1px solid rgba(214, 51, 108, 0.1);
}
.extended-hero-header h1 { font-size: clamp(3.5rem, 9vw, 8rem); color: var(--royal-purple); line-height: 1; margin-bottom: 20px; }
.extended-hero-header p { font-size: 1.2rem; max-width: 600px; color: var(--dark-plum); font-weight: 300; }

.collections-showcase-matrix { padding: 120px 8%; background: var(--editorial-pink); }
.collection-editorial-block { display: flex; gap: 8%; align-items: center; margin-bottom: 160px; }
.collection-editorial-block:nth-child(even) { flex-direction: row-reverse; }
.collection-massive-frame { width: 55%; height: 600px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.collection-massive-frame img { width: 100%; height: 100%; object-fit: cover; }
.collection-narrative-box { width: 37%; }
.collection-narrative-box span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: var(--primary-raspberry); font-weight: 600; display: block; margin-bottom: 15px; }
.collection-narrative-box h2 { font-size: 3.5rem; color: var(--dark-plum); margin-bottom: 25px; }
.collection-narrative-box p { color: var(--dark-plum); opacity: 0.8; margin-bottom: 30px; }

.rooms-asymmetric-navigation { display: flex; justify-content: center; gap: 25px; padding: 50px 8%; background: var(--soft-blush); flex-wrap: wrap; }
.asymmetric-room-tab { 
    padding: 14px 35px; border-radius: 0px; border: 2px solid var(--dark-plum); background: transparent; 
    cursor: pointer; font-family: var(--font-heading); color: var(--dark-plum); font-size: 1.1rem; transition: var(--transition-fast);
}
.asymmetric-room-tab.tab-selected, .asymmetric-room-tab:hover { background: var(--dark-plum); color: var(--editorial-pink); transform: translateY(-3px); }
.rooms-extended-container { padding: 120px 8%; background: var(--editorial-pink); }
.room-exhibition-panel { display: none; grid-template-columns: repeat(12, 1fr); gap: 60px; align-items: center; }
.room-exhibition-panel.panel-selected { display: grid; animation: fadeInPage 0.8s ease forwards; }
.room-panel-visuals { grid-column: 1 / 8; height: 650px; position: relative; }
.room-panel-visuals img { height: 100%; width: 100%; object-fit: cover; }
.room-panel-meta { grid-column: 8 / 13; }
.room-panel-meta h3 { font-size: 4rem; color: var(--royal-purple); margin-bottom: 25px; }
.room-panel-meta p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 35px; }

.editorial-magazine-stream { padding: 120px 8%; display: grid; grid-template-columns: repeat(12, 1fr); gap: 60px; background: var(--editorial-pink); }
.magazine-feature-spread { grid-column: span 6; background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.02); margin-bottom: 40px; }
.magazine-feature-spread img { height: 450px; width: 100%; object-fit: cover; }
.magazine-spread-body { padding: 45px; }
.magazine-spread-body span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-raspberry); font-weight: 600; }
.magazine-spread-body h3 { font-size: 2.2rem; margin: 15px 0; color: var(--dark-plum); }
.magazine-spread-body p { opacity: 0.8; font-size: 0.95rem; }

.stories-timeline-matrix { padding: 120px 8%; background: var(--editorial-pink); }
.timeline-jumbo-row { display: grid; grid-template-columns: 1fr 1fr; background: var(--soft-blush); overflow: hidden; margin-bottom: 80px; }
.timeline-jumbo-text { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.timeline-jumbo-text h3 { font-size: 3.5rem; margin-bottom: 25px; color: var(--royal-purple); }
.timeline-grid-sub-tier { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.timeline-mini-card { background: white; padding: 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.02); }
.timeline-mini-card img { height: 260px; object-fit: cover; margin-bottom: 20px; }
.timeline-mini-card h4 { font-size: 1.35rem; color: var(--dark-plum); }

.visit-studios-arrangement { display: grid; grid-template-columns: repeat(12, 1fr); gap: 60px; padding: 120px 8%; background: var(--editorial-pink); }
.visit-telemetry-panel { grid-column: span 5; display: flex; flex-direction: column; gap: 45px; }
.studio-location-block h3 { font-size: 2.4rem; color: var(--royal-purple); margin-bottom: 15px; }
.visit-abstract-cartography { grid-column: span 7; background: #f2e3e7; min-height: 550px; position: relative; border: 2px dashed var(--primary-raspberry); display: flex; align-items: center; justify-content: center; }
.cartography-grid-lines { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-raspberry); text-align: center; padding: 40px; }

/* FOOTER */
.avant-footer { background-color: var(--dark-plum); color: var(--editorial-pink); padding: 120px 8% 50px; text-align: center; }
.footer-brand-mark { font-size: 4rem; color: var(--soft-blush); margin-bottom: 30px; letter-spacing: -2px; }
.footer-statement-sentence { font-size: clamp(1.8rem, 5vw, 3.5rem); font-family: var(--font-heading); color: var(--editorial-pink); max-width: 1000px; margin: 0 auto 70px; line-height: 1.25; }
.footer-horizontal-nav { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-bottom: 70px; border-bottom: 1px solid rgba(255,245,248,0.1); padding-bottom: 50px; }
.footer-horizontal-nav a { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.75; transition: var(--transition-fast); cursor: pointer; }
.footer-horizontal-nav a:hover { opacity: 1; color: var(--primary-raspberry); }
.footer-base-meta { font-size: 0.85rem; opacity: 0.5; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 25px; }

/* LEGAL MODAL */
.legal-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(61,32,72,0.9);
    backdrop-filter: blur(20px); z-index: 2500; display: none; align-items: center; justify-content: center; padding: 25px;
}
.legal-modal-card {
    background: var(--editorial-pink); padding: 60px; border-radius: 0px; max-width: 750px; width: 100%;
    box-shadow: 0 40px 90px rgba(0,0,0,0.6); position: relative; max-height: 85vh; overflow-y: auto;
    border: 1px solid var(--primary-raspberry);
}
.legal-modal-card h2 { font-size: 2.8rem; margin-bottom: 25px; color: var(--royal-purple); }
.legal-modal-card h3 { font-size: 1.5rem; margin: 20px 0 10px; color: var(--dark-plum); }
.legal-modal-card p, .legal-modal-card ul { margin-bottom: 20px; font-size: 0.95rem; color: var(--dark-plum); opacity: 0.9; }
.legal-modal-card ul { padding-left: 25px; }
.legal-modal-card li { margin-bottom: 8px; }
.close-modal-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--primary-raspberry); }

/* TABLET & MOBILE */
@media (max-width: 768px) {
    .hero-section { height: auto; min-height: 100vh; padding: 140px 6% 60px; flex-direction: column; justify-content: center; text-align: center; }
    .hero-bg-wall-text { display: none; }
    .hero-images-container { position: relative; width: 100%; height: 45vh; right: auto; top: auto; margin-bottom: 40px; }
    .hero-content-foreground { max-width: 100%; margin-top: 0; }
    
    .ribbon-row, .ribbon-row:nth-child(even) { flex-direction: column; width: 100%; margin-left: 0; margin-bottom: 80px; gap: 30px; }
    .ribbon-clip-frame { width: 100%; height: 260px; clip-path: none !important; }
    .ribbon-text-panel { width: 100%; text-align: center; }
    
    .rotating-section { grid-template-columns: 1fr; gap: 50px; padding: 100px 6%; }
    .rotating-viewport { height: 450px; }
    .rotating-vertical-track img { height: 450px; }
    
    .wall-text-row { font-size: 2.8rem; -webkit-text-stroke: 1px var(--soft-blush); }
    .wall-hidden-media { display: none !important; }
    
    .mosaic-asymmetric-grid { grid-template-columns: 1fr; gap: 30px; }
    .m-block-1, .m-block-2, .m-block-3, .m-block-4, .m-block-5 { grid-column: 1 / -1 !important; height: 320px !important; transform: none !important; }
    
    .timeline-jumbo-row { grid-template-columns: 1fr; }
    .timeline-jumbo-text { padding: 40px; }
    .timeline-grid-sub-tier { grid-template-columns: 1fr; }
    
    .editorial-magazine-stream { grid-template-columns: 1fr; }
    .magazine-feature-spread { grid-column: span 1; }
    
    .visit-studios-arrangement { grid-template-columns: 1fr; gap: 40px; }
    .visit-telemetry-panel, .visit-abstract-cartography { grid-column: span 1; }
    .visit-abstract-cartography { min-height: 350px; }
    
    .subscription-capsule-pod { border-radius: 40px; padding: 50px 25px; }
    .form-dual-row { flex-direction: column; gap: 15px; }
    .footer-horizontal-nav { flex-direction: column; gap: 20px; text-align: center; }
}