/* =========================================
   CUSTOM LOCAL TYPOGRAPHY LOADER
   ========================================= */
@font-face {
    font-family: 'Kuano';
    src: url('fonts/Kuano_otf.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Bk BT Book.ttf') format('truetype');
    font-weight: 400; /* Book/Regular Weight */
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Bk BT Book Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Md BT Medium.ttf') format('truetype');
    font-weight: 500; /* Medium Weight */
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Md BT Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Md BT Bold.ttf') format('truetype');
    font-weight: 700; /* Bold Weight */
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Md BT Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* =========================================
   CORE VARIABLES & TYPOGRAPHY
   ========================================= */
:root {
    --bg-color: #faf9f8; 
    --text-color: #1c1a1a; 
    --accent-color: #c88d7b; 
    --manifesto-bg: #1c1a1a;
    --manifesto-text: #faf9f8;
    --brand-gray: #888888;
    --card-bg: #ffffff; 
    
    --font-heading: 'Kuano', serif;
    --font-body: 'Futura', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); 
    color: var(--text-color); 
    background-color: var(--bg-color); 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }

.section-spacer { padding: 100px 0; }
.section-action { text-align: center; margin-top: 50px; }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header { 
    position: fixed;            
    top: 0; left: 0; width: 100%;            
    display: flex; justify-content: space-between; align-items: center; 
    padding: 30px 5%; z-index: 1000;            
    transition: var(--transition);        
}

header.scrolled {            
    background-color: rgba(255, 255, 255, 0.95);            
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);            
    padding: 20px 5%;        
}                

.menu-left, .header-icons {            
    display: flex; align-items: center; gap: 25px; width: 33%;        
    color: var(--text-color); transition: var(--transition);
    cursor: pointer;
}

.hero ~ header .menu-left, 
.hero ~ header .header-icons { 
    color: var(--bg-color); 
}
header.scrolled .menu-left, 
header.scrolled .header-icons { 
    color: var(--text-color) !important; 
}

.header-icons { justify-content: flex-end; font-size: 1.15rem; }
.header-icons i, .menu-left i { cursor: pointer; transition: var(--transition); }
.header-icons i:hover, .menu-left i:hover { color: var(--accent-color); }                

.logo-center {            
    width: 33%; text-align: center; transition: var(--transition);        
}

.header-logo-img {
    max-height: 75px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
    transition: var(--transition);
}

header.scrolled .header-logo-img { transform: scale(0.9); }

.menu-text {            
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;            
    font-weight: 500; cursor: pointer; display: none; 
}

@media(min-width: 768px) { .menu-text { display: block; } }

/* =========================================
   SIDE DRAWER & NESTED MENU
   ========================================= */
.overlay {            
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4);            
    opacity: 0; pointer-events: none; transition: var(--transition); 
    z-index: 1001; backdrop-filter: blur(4px);
}
.overlay.active { opacity: 1; pointer-events: auto; }                

.side-drawer {            
    position: fixed; top: 0; left: -400px; width: 100%; max-width: 380px; 
    height: 100vh; background: #ffffff; z-index: 1002; 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);            
    padding: 40px; overflow-y: auto; display: flex; flex-direction: column;        
    box-shadow: 20px 0 50px rgba(0,0,0,0.05);
}
.side-drawer.open { transform: translateX(400px); }

.close-drawer { 
    font-size: 1.3rem; cursor: pointer; align-self: flex-end; 
    margin-bottom: 40px; transition: var(--transition);
}
.close-drawer:hover { transform: rotate(90deg); color: var(--accent-color); }

.drawer-nav li { margin-bottom: 5px; }
.drawer-nav a:not(.submenu-list a) { 
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 400;
    display: flex; justify-content: space-between; padding: 15px 0;
    border-bottom: 1px solid #f5f5f5; transition: var(--transition);
}
.drawer-nav a:hover:not(.submenu-list a) { padding-left: 10px; color: var(--accent-color); }
.drawer-nav a i { font-size: 0.7rem; align-self: center; opacity: 0.5; }

.menu-row {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #f5f5f5; padding: 15px 0; cursor: pointer;
    user-select: none; transition: var(--transition);
}
.menu-row:hover { padding-left: 4px; }
.menu-parent-title { font-size: 1.05rem; font-weight: 400; }
.menu-child-title { font-size: 0.95rem; color: #444; font-weight: 400; }
.menu-grandchild-title { font-size: 0.9rem; color: #666; font-style: italic; }

.menu-row:hover .menu-parent-title,
.menu-row:hover .menu-child-title,
.menu-row:hover .menu-grandchild-title { color: var(--accent-color); }

.menu-indicator-group { display: flex; align-items: center; gap: 10px; color: var(--brand-gray); }
.action-hint { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; opacity: 0.4; }
.toggle-icon { font-size: 0.75rem; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }

.has-submenu.active > .menu-row .toggle-icon { transform: rotate(180deg); }
.has-submenu.active > .menu-row span { font-weight: 500; }

.submenu-list { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); background-color: #faf7f6; }
.has-submenu.active > .tier-1-list { max-height: 1200px; padding-left: 15px; }
.has-submenu.active > .tier-2-list { max-height: 400px; padding-left: 15px; background: #f5f0ee; }
.has-submenu.active > .tier-3-list { max-height: 300px; padding-left: 15px; background: #eee6e3; }

.submenu-list li a { font-size: 0.95rem; color: var(--brand-gray); border-bottom: none; padding: 12px 0; display: block; }
.overview-link { font-style: italic; color: var(--text-color) !important; font-weight: 500; }

/* =========================================
   HERO VIDEO SECTION
   ========================================= */
.hero { 
    position: relative; height: 100vh; width: 100%; overflow: hidden; 
    display: flex; align-items: center; justify-content: center; flex-direction: column; 
}
.hero video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-overlay { 
    position: absolute; inset: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.5)); z-index: 0; 
}                
.hero-content { 
    position: relative; z-index: 1; text-align: center; color: #ffffff; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 0 20px;
}
.hero-logo { 
    font-family: var(--font-heading); font-size: clamp(3.5rem, 8vw, 6.5rem); 
    letter-spacing: -2px; margin-bottom: 30px; animation: fadeIn 2s cubic-bezier(0.16, 1, 0.3, 1); 
}                

.btn { 
    display: inline-block; padding: 16px 36px; border: 1px solid var(--text-color); 
    color: var(--text-color); text-transform: uppercase; letter-spacing: 2px; 
    font-size: 0.75rem; font-weight: 600; transition: var(--transition); 
    cursor: pointer; background: transparent; 
}
.btn:hover { background: var(--text-color); color: #ffffff; transform: translateY(-2px); }

.btn-hero { border-color: #ffffff; color: #ffffff; backdrop-filter: blur(5px); background: rgba(255,255,255,0.05); }
.btn-hero:hover { background: #ffffff; color: var(--text-color); }
.btn-dark { border-color: var(--text-color); color: var(--text-color); }
.btn-dark:hover { background: var(--text-color); color: #ffffff; }

.scroll-indicator { 
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); 
    text-align: center; color: #ffffff; font-size: 0.75rem; letter-spacing: 1.5px; z-index: 1; opacity: 0.8;
}
.scroll-indicator i { display: block; margin-top: 12px; animation: bounce 2s infinite; }

/* ===================================================
   VIBRANT COLOR-MATCHED EXPERIENTIAL SQUARES
   =================================================== */
.experience-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    background: #ffffff;
}

.experience-column {
    position: relative; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-end; 
    padding: 50px 40px; 
    color: #ffffff;
    cursor: pointer; 
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: filter 0.6s ease;
    z-index: 1;
}

.experience-column::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.experience-column:nth-child(1)::before {
    background: linear-gradient(to top, rgba(23, 64, 71, 0.9) 0%, rgba(23, 64, 71, 0.15) 50%, transparent 100%);
}
.experience-column:nth-child(2)::before {
    background: linear-gradient(to top, rgba(84, 33, 47, 0.9) 0%, rgba(84, 33, 47, 0.15) 50%, transparent 100%);
}
.experience-column:nth-child(3)::before {
    background: linear-gradient(to top, rgba(64, 29, 74, 0.9) 0%, rgba(64, 29, 74, 0.15) 50%, transparent 100%);
}

.experience-column img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover !important; 
    opacity: 0.9;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease;
    z-index: 0;
}

.experience-content {
    position: relative; z-index: 6; text-align: left;
    transform: translateY(0); transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}
.experience-content h3 {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 5px; font-weight: 400; letter-spacing: -0.5px;
    color: #ffffff; 
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}
.experience-content span {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    opacity: 0.9; display: block; color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.experience-section:hover .experience-column { filter: brightness(85%); }
.experience-section .experience-column:hover {
    filter: brightness(100%); 
}

.experience-column:hover img { 
    transform: scale(1.015); 
    opacity: 1; 
}
.experience-column:hover .experience-content { transform: translateY(-5px); }

@media (max-width: 900px) {
    .experience-section { grid-template-columns: 1fr; }
    .experience-column { aspect-ratio: 1 / 1; min-height: auto; padding: 40px 30px; }
    .experience-section:hover .experience-column { filter: none; }
}

/* =========================================
   SECTION TITLES & GRIDS
   ========================================= */
.section-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-header h2 { 
    font-family: var(--font-body); font-size: 1.1rem; letter-spacing: 4px; 
    text-transform: uppercase; font-weight: 500; position: relative; display: inline-block; padding-bottom: 10px;
}

.slider-wrapper { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 50px; }
.slider-container { width: 100%; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; scroll-behavior: smooth; }
.slider-container::-webkit-scrollbar { display: none; }
.product-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 30px; }                

@media(min-width: 768px) { .product-slider { grid-auto-columns: calc(33.333% - 20px); } }
@media(min-width: 1200px) { .product-slider { grid-auto-columns: calc(25% - 22.5px); } }

.slider-arrow {
    position: absolute; top: 40%; transform: translateY(-50%); background: var(--card-bg);
    border: 1px solid #eaeaea; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    z-index: 10; color: var(--text-color); transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.slider-arrow:hover { background: var(--text-color); color: var(--card-bg); border-color: var(--text-color); }
.prev-arrow { left: 0; }
.next-arrow { right: 0; }
@media (max-width: 768px) { .slider-arrow { display: none; } .slider-wrapper { padding: 0 5%; } }

/* =========================================
   PRODUCT CARDS FLUID TRANSITION FIXES
   ========================================= */
.product-card { 
    scroll-snap-align: start; 
    text-align: center; 
    cursor: pointer; 
    padding-bottom: 20px; 
    position: relative; 
    background: transparent; 
}
.product-card h3 { font-family: var(--font-heading); font-size: 1.35rem; margin-bottom: 6px; font-weight: 400; color: var(--text-color); }
.product-card h3 a { transition: var(--transition); }
.product-card h3 a:hover { color: var(--accent-color); }
.product-card p { font-size: 0.8rem; color: var(--brand-gray); text-transform: uppercase; letter-spacing: 1px; }

.badge { 
    position: absolute; top: 15px; left: 15px; display: inline-block; background: #f4e9da; 
    color: var(--text-color); padding: 6px 14px; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; z-index: 5;
}

.product-img-wrapper {
    position: relative !important; 
    display: block !important; 
    width: 100% !important;
    height: auto !important; 
    aspect-ratio: 1 / 1; 
    background: transparent; 
    margin-bottom: 24px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
}
.product-img-wrapper img {
    position: absolute !important; 
    top: 0; left: 0; 
    width: 100% !important; 
    height: 100% !important;
    object-fit: cover !important; 
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important; 
    padding: 0 !important; 
}
.product-img-primary { opacity: 1 !important; z-index: 1 !important; }
.product-img-hover { opacity: 0 !important; z-index: 2 !important; }

.product-card:hover .product-img-primary.has-hover { opacity: 0 !important; transform: scale(1.04); }
.product-card:hover .product-img-hover { opacity: 1 !important; transform: scale(1.04); }
.product-card:hover .product-img-primary.no-hover { transform: scale(1.04); }

/* ===================================================
   INTERACTIVE VENN DIAGRAM PILLARS SETUP
   =================================================== */
.venn-section {
    padding: 120px 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eaeaea;
    width: 100%;
}
.venn-header {
    text-align: center;
    margin-bottom: 60px;
}
.venn-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #9c6052;
    font-weight: 400;
    margin-bottom: 10px;
}
.venn-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: #8c3b2b;
    margin: 0;
}
.venn-container {
    position: relative;
    width: 680px;
    height: 680px;
    margin: 0 auto;
}
.venn-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    mix-blend-mode: multiply; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
    cursor: pointer;
}
.venn-circle h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.venn-circle p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 2;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

/* UPDATED: Shifted the entire text block higher in the Mind circle so Gratitude clears the intersection */
.circle-mind h4 {
    margin-top: -30px;
}
.circle-mind p {
    margin-top: -10px;
    margin-bottom: 40px;
}

.circle-mind {
    top: 0; left: 50%; transform: translateX(-50%);
    background-color: rgba(246, 169, 168, 0.75); color: #702621;
}
.circle-body {
    bottom: 40px; left: 0;
    background-color: rgba(179, 194, 175, 0.75); color: #2b3a28;
}
.circle-soul {
    bottom: 40px; right: 0;
    background-color: rgba(247, 195, 125, 0.75); color: #6e4313;
}
.circle-mind:hover { transform: translateX(-50%) translateY(-5px); box-shadow: 0 15px 30px rgba(246,169,168,0.3); }
.circle-body:hover { transform: translateY(5px) translateX(-5px); box-shadow: 0 15px 30px rgba(179,194,175,0.3); }
.circle-soul:hover { transform: translateY(5px) translateX(5px); box-shadow: 0 15px 30px rgba(247,195,125,0.3); }

/* Adjusted Intersecting Texts for Geometric Alignment */
.venn-intersection {
    position: absolute; font-family: var(--font-body); font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 1.5px; text-align: center; color: #555555; line-height: 1.6; width: 100px; font-weight: 600; pointer-events: none; 
}
.intersect-mind-body { top: 290px; left: 160px; }
.intersect-mind-soul { top: 290px; right: 190px; }
.intersect-body-soul { bottom: 140px; left: 50%; transform: translateX(-50%); }

/* Perfected Centroid Alignment for "Kindness" Core */
.venn-center-core {
    position: absolute; 
    top: 54.5%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 140px; 
    text-align: center; 
    z-index: 10; 
    cursor: pointer;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    transition: transform 0.3s ease;
}
.venn-center-core:hover { transform: translate(-50%, -50%) scale(1.05); }
.venn-center-core h5 { 
    font-family: var(--font-heading); 
    font-size: 1.25rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #782617; 
    margin-bottom: 4px; 
    font-weight: 400; 
}
.venn-center-core p { 
    font-size: 0.65rem; 
    line-height: 1.4; 
    color: #782617; 
    font-weight: 400; 
    text-transform: none; 
    margin: 0 auto; 
    max-width: 100px;
}

@media (max-width: 768px) { .venn-container { transform: scale(0.55); margin: -140px auto; } }

/* Universal Discovery Popups Layout */
.anatomy-modal-overlay {
    position: fixed; inset: 0; background: rgba(28, 26, 26, 0.4); backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; z-index: 10000; display: flex; justify-content: center; align-items: center;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.anatomy-modal-overlay.active { opacity: 1; pointer-events: auto; }
.anatomy-modal-card {
    background: #ffffff; width: 90%; max-width: 500px; padding: 45px; border: 1px solid #eaeaea;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); position: relative; transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-align: center;
}
.anatomy-modal-overlay.active .anatomy-modal-card { transform: translateY(0); }
.close-anatomy-modal { position: absolute; top: 20px; right: 25px; font-size: 1.2rem; color: var(--brand-gray); cursor: pointer; transition: var(--transition); }
.close-anatomy-modal:hover { color: var(--text-color); transform: scale(1.1); }
.anatomy-modal-card h3 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 400; margin-bottom: 15px; letter-spacing: -0.5px; }
.anatomy-modal-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent-color); margin-bottom: 25px; font-weight: 600; }
.anatomy-modal-card p { font-size: 1rem; line-height: 1.8; color: #555555; margin-bottom: 0; font-weight: 300; }

/* ===================================================
   REFACTORED: HIGH-END EDITORIAL MANIFESTO CANVAS
   =================================================== */
.manifesto { 
    background-color: #f6f1ee; 
    padding: 130px 10%; 
    text-align: center; 
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    width: 100%;
}
.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.manifesto-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #9c6052;
    margin-bottom: 24px;
    font-weight: 500;
}
.manifesto-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 30px;
    max-width: 800px;
    letter-spacing: -0.3px;
}
.manifesto-divider {
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
    margin-bottom: 35px;
    opacity: 0.7;
}
.manifesto-body {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.85;
    color: #555555;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 35px;
}
.manifesto-punchline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    color: #8c3b2b; 
    letter-spacing: -0.2px;
}

/* ===================================================
   SPLIT SHOWCASE REFACTORS
   =================================================== */
.split-showcase { 
    display: flex; flex-direction: column; 
    background-color: var(--card-bg); width: 100%; align-items: stretch; 
}
.split-showcase.reverse { flex-direction: column; }

@media(min-width: 900px) { 
    .split-showcase { flex-direction: row; min-height: 75vh; }
    .split-showcase.reverse { flex-direction: row-reverse; } 
    .split-showcase .split-visual, 
    .split-showcase .split-product { 
        width: 50%; flex: 0 0 50%; box-sizing: border-box; 
    }
}
.split-visual { 
    position: relative; display: block; overflow: hidden; background: #1c1a1a; height: 50vh; 
}
@media(min-width: 900px) { .split-visual { height: auto; align-self: stretch; } }

.visual-img-wrapper { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; }
.visual-img-wrapper img.visual-primary, .visual-img-wrapper img.visual-hover {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: opacity 0.6s ease, transform 0.6s ease;
}
.visual-img-wrapper img.visual-primary { opacity: 1; z-index: 1; transform: scale(1); }
.visual-img-wrapper img.visual-hover { opacity: 0; z-index: 2; transform: scale(1.03); }
.split-visual:hover .visual-primary { opacity: 0; transform: scale(1.03); }
.split-visual:hover .visual-hover { opacity: 1; transform: scale(1); }
.split-visual > img:not(.visual-primary):not(.visual-hover) { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.split-product { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 8%; text-align: center; background: var(--card-bg); position: relative; overflow: hidden; 
}
.split-product-content { max-width: 400px; width: 100%; }
.split-product h3 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 10px; font-weight: 400; }
.product-subtext { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand-gray); margin-bottom: 25px; }

.showcase-img-wrapper {
    position: relative; width: 100%; max-width: 400px; height: 240px; margin: -10px auto 35px; overflow: visible; z-index: 3; transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.showcase-img-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; transform: scale(1.0); transform-origin: center center; }
.showcase-primary { opacity: 1; z-index: 3; }

.full-bleed-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; opacity: 0; z-index: 0; transform: scale(1.0); transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-product::after {
    content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); opacity: 0; z-index: 1; pointer-events: none; transition: opacity 0.5s ease;
}
.split-product-content { position: relative; z-index: 2; transition: var(--transition); }

.split-product:hover .full-bleed-bg { opacity: 1; transform: scale(1.05); }
.split-product:hover::after { opacity: 1; }
.split-product:hover .showcase-img-wrapper { opacity: 0 !important; visibility: hidden !important; transform: scale(0.95); pointer-events: none; }

.dynamic-text { position: relative; z-index: 10; transition: color 0.3s ease, text-shadow 0.3s ease; }
.split-product:hover .dynamic-text { color: #ffffff; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }

.dynamic-btn { position: relative; z-index: 10; transition: var(--transition); }
.split-product:hover .dynamic-btn { background: #ffffff; color: #1c1a1a; border-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.split-product:hover .dynamic-btn:hover { background: #1c1a1a; color: #ffffff; border-color: #1c1a1a; }

/* =========================================
   STICKY FOOTER MODULE
   ========================================= */
#footer-placeholder { margin-top: auto; width: 100%; }
.site-footer { background-color: var(--manifesto-bg); color: var(--manifesto-text); padding: 80px 5% 40px; width: 100%; }
.footer-logo { text-align: center; margin-bottom: 60px; }
.footer-logo h2 { font-family: var(--font-heading); font-size: 3.5rem; letter-spacing: -1px; font-weight: 400; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; border-bottom: 1px solid #2e2a2b; padding-bottom: 60px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; color: #ffffff; font-weight: 600; }
.footer-col ul li { margin-bottom: 15px; font-size: 0.9rem; }
.footer-col ul li a { color: #cbcbcb; transition: var(--transition); display: inline-block; }
.footer-col ul li a:hover { color: var(--accent-color); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; font-size: 0.8rem; color: #767676; letter-spacing: 0.5px; }
.socials { display: flex; gap: 20px; }
.socials a i { font-size: 1.2rem; color: #ffffff; cursor: pointer; transition: var(--transition); }
.socials a i:hover { color: var(--accent-color); transform: translateY(-3px); }

@media (max-width: 768px) {            
    .section-spacer { padding: 60px 0; }
    .split-visual { height: 45vh; }            
    .split-product { padding: 60px 20px; }
    .footer-logo { margin-bottom: 40px; }
    .footer-logo h2 { font-size: 2.5rem; }
    .footer-grid { gap: 30px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* =========================================
   COLLECTION PAGE GRID SYSTEM
   ========================================= */
.collection-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 55vh; 
    padding: 120px 5% 60px;
    text-align: center;
    background-color: #fdfaf9;
    border-bottom: 1px solid #eaeaea;
    transition: background 0.4s ease;
    position: relative;
}

.collection-header.has-bg {
    background-size: cover !important;
    background-position: center center !important; 
    background-repeat: no-repeat !important;
    border-bottom: none;
}

.collection-header.has-bg h1,
.collection-header.has-bg p {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.collection-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem); 
    margin-bottom: 15px;
    font-weight: 400;
}

.collection-header p {
    color: var(--brand-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.collection-wrapper {
    width: 100%;
    padding: 80px 0 100px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

@media(min-width: 600px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1200px) { .collection-grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================
   OLFACTIVE JOURNEY PAGE
   ========================================= */
.olfactive-hero {
    padding: 160px 5% 40px;
    text-align: center;
    background-color: #fdfaf9;
}

.olfactive-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.olfactive-hero p {
    font-size: 0.95rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.scent-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 40px;
}

.scent-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 22px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.scent-btn:hover, .scent-btn.active {
    border-color: var(--text-color);
    background-color: var(--text-color);
    color: var(--bg-color);
}

.olfactive-container {
    padding: 60px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.olfactive-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    gap: 50px 30px;
}

@media(min-width: 600px) { .olfactive-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .olfactive-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1200px) { .olfactive-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===================================================
   PHILOSOPHY PAGE & ANATOMY OF A BOTTLE
   =================================================== */
.philosophy-hero { padding: 220px 5% 60px; text-align: center; background-color: #ffffff; }
.philosophy-hero span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; color: var(--brand-gray); display: block; margin-bottom: 15px; }
.philosophy-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 30px; font-weight: 400; letter-spacing: -1px; }
.luxury-line { width: 60px; height: 1px; background: var(--text-color); margin: 0 auto; }

.corporate-story-section { padding: 120px 5%; background-color: #fdfaf9; border-top: 1px solid #eaeaea; }
.story-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
@media(min-width: 900px) { .story-container { flex-direction: row; align-items: flex-start; } }
.story-meta-panel { flex: 1; }
.story-meta-panel h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400; line-height: 1.3; margin-bottom: 20px; }
.story-meta-panel h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent-color); font-weight: 600; margin-bottom: 15px; }
.story-text-panel { flex: 1.5; font-size: 1.05rem; line-height: 1.9; color: #444; }
.story-text-panel p { margin-bottom: 25px; }
.founder-quote { font-size: 1.25rem; font-family: var(--font-heading); font-style: italic; border-left: 2px solid var(--accent-color); padding-left: 30px; margin: 40px 0; color: var(--text-color); }
.quote-author { display: block; font-family: var(--font-body); font-size: 0.9rem; font-style: normal; font-weight: 600; margin-top: 15px; color: var(--brand-gray); }

.pillars-section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; text-align: center; }
.pillars-section h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 400; margin-bottom: 80px; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; }
.pillar-card { text-align: left; padding: 40px; background: #ffffff; border: 1px solid #eaeaea; transition: var(--transition); }
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.02); border-color: var(--text-color); }
.pillar-number { font-family: var(--font-heading); font-size: 2rem; color: var(--accent-color); font-style: italic; margin-bottom: 20px; display: block; }
.pillar-card h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px; font-weight: 600; }
.pillar-card p { font-size: 0.95rem; line-height: 1.7; color: var(--brand-gray); }

.anatomy-section { background: radial-gradient(circle at 50% 40%, #fcedf0 0%, #fbe0e6 40%, #f5d3dc 100%); padding: 120px 5% 90px; display: flex; justify-content: center; align-items: center; border-top: 1px solid #eaeaea; overflow-x: auto; }
.canvas { position: relative; width: 1100px; min-width: 1100px; padding: 20px; color: #2b2b2b; font-family: 'Courier Prime', monospace; }
.anatomy-title-container { text-align: center; margin-bottom: 90px; position: relative; }
.anatomy-title-container h2 { font-family: 'Great Vibes', cursive; font-size: 4.5rem; font-weight: normal; margin: 0; letter-spacing: 2px; color: #2b2b2b; }
.title-underline { width: 600px; height: 15px; border-top: 2px solid #2b2b2b; border-radius: 50%; margin: -15px auto 0; transform: rotate(-1deg); }
.bottles-layout { display: flex; justify-content: center; gap: 240px; }
.bottle-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; width: 180px; }
.interactive-bottle { cursor: pointer; display: flex; flex-direction: column; align-items: center; position: relative; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
.interactive-bottle:hover { transform: scale(1.03); }
.interactive-bottle::before { content: '\f002'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: -35px; font-size: 1rem; color: var(--brand-gray); opacity: 0; transition: var(--transition); }
.interactive-bottle:hover::before { opacity: 1; top: -25px; }

.sketchy-border { border: 1.5px solid #2b2b2b; border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; }
.nozzle { width: 28px; height: 25px; border-bottom: none; position: relative; }
.spray-hole { position: absolute; width: 6px; height: 6px; border: 1.5px solid #2b2b2b; border-radius: 50%; right: 5px; top: 8px; }
.collar { width: 55px; height: 15px; margin-top: -2px; }
.cap-base { width: 65px; height: 40px; margin-top: -2px; }
.bottle-body { width: 135px; height: 290px; margin-top: -2px; position: relative; display: flex; flex-direction: column; align-items: center; padding: 20px 10px; box-sizing: border-box; background: rgba(255,255,255,0.15); }
.logo-circle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid #2b2b2b; display: flex; align-items: center; justify-content: center; font-size: 0.42rem; text-align: center; line-height: 1.1; margin-bottom: 25px; }
.brand-text { font-family: var(--font-heading); font-size: 2.2rem; line-height: 0.9; text-align: center; margin-bottom: 25px; -webkit-text-stroke: 1px #2b2b2b; color: transparent; }
.fragrance-name { font-size: 0.7rem; letter-spacing: 3px; font-weight: bold; margin-bottom: 20px; }
.description { font-size: 0.52rem; text-align: center; line-height: 1.4; padding: 0 5px; font-weight: bold; margin-bottom: 20px; }
.footer-box { font-size: 0.5rem; text-align: center; font-weight: bold; }
.footer-box span { display: inline-block; border: 1px solid #2b2b2b; padding: 2px 5px; margin-top: 3px; }
.vertical-text { writing-mode: vertical-rl; font-size: 0.95rem; letter-spacing: 4px; font-weight: bold; height: 100%; display: flex; justify-content: center; transform: rotate(180deg); }
.side-line { position: absolute; left: 25px; top: 20px; bottom: 20px; width: 1px; background-color: #2b2b2b; opacity: 0.4; }

.annotation { position: absolute; font-family: 'Caveat', cursive; font-size: 1.5rem; color: #2b2b2b; white-space: nowrap; line-height: 1.2; }
.arrow { position: absolute; overflow: visible; pointer-events: none; }
.arrow path { stroke: #2b2b2b; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.anno-shape { top: 90px; left: -140px; }
.arrow-shape { top: 110px; left: -35px; width: 55px; height: 30px; }
.anno-window { top: 110px; right: -130px; }
.arrow-window { top: 125px; right: -15px; width: 40px; height: 20px; }
.anno-liner { bottom: 15px; left: -190px; text-align: right; }
.arrow-liner { bottom: 25px; left: -25px; width: 45px; height: 30px; }
.anno-brand { top: 170px; right: -115px; }
.arrow-brand { top: 185px; right: -25px; width: 45px; height: 10px; }
.anno-type { top: 250px; right: -155px; text-align: left; }
.arrow-type { top: 265px; right: -25px; width: 45px; height: 20px; }

.labels-deck { display: flex; justify-content: center; gap: 240px; margin-top: 40px; width: 100%; }
.labels-deck .deck-title { width: 180px; text-align: center; }
.view-label { font-family: 'Great Vibes', cursive; font-size: 2.6rem; margin: 0; display: inline-block; }

.pledge-banner { background-color: var(--manifesto-bg); color: var(--manifesto-text); padding: 100px 5%; text-align: center; }
.pledge-inner { max-width: 800px; margin: 0 auto; }
.pledge-inner i { font-size: 2rem; color: var(--accent-color); margin-bottom: 25px; }
.pledge-inner h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 400; margin-bottom: 25px; letter-spacing: 0.5px; }
.pledge-inner p { font-size: 1.05rem; line-height: 1.8; color: #cbcbcb; font-weight: 300; }
.journey-section { background-color: #ffffff; padding: 140px 5%; text-align: center; border-top: 1px solid #eaeaea; }
.journey-section h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 15px; font-weight: 400; }
.journey-section p { font-size: 1rem; color: var(--brand-gray); margin-bottom: 40px; letter-spacing: 0.5px; }