/* Reset and Core Variables */
:root {
    --bg-obsidian: #0A0A0A;
    --bg-card: #121212;
    --text-ivory: #F5F2EB;
    --text-muted: #8E877D;
    --accent-gold: #C5A578; /* Champagne / muted antique gold */
    --accent-gold-hover: #D8B98F;
    --stone-neutral: #EAE5DB;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --border-color: rgba(197, 165, 120, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important; /* Hide default cursor site-wide */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-obsidian);
    color: var(--text-ivory);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    max-width: 100vw;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════════════════
   LUXURY CUSTOM CURSOR — BAAMANN
   ════════════════════════════════════════════════════════ */

/* Outer trailing ring */
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 165, 120, 0.70);   /* --accent-gold */
    background: transparent;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
    /* Silky transition for size/opacity changes only (NOT transform — that's driven by rAF) */
    transition:
        width  0.35s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.35s ease,
        box-shadow   0.35s ease,
        opacity      0.35s ease;
    box-shadow:
        0 0 10px rgba(197, 165, 120, 0.18),
        inset 0 0 8px rgba(197, 165, 120, 0.06);
    animation: cursor-ring-pulse 3s ease-in-out infinite;
}

/* Inner precise dot */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C5A578;                             /* --accent-gold */
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
    transition:
        width  0.25s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        background 0.25s ease,
        opacity    0.25s ease;
    box-shadow: 0 0 7px rgba(197, 165, 120, 0.80);
}

/* Subtle breathing pulse on the ring */
@keyframes cursor-ring-pulse {
    0%,  100% {
        box-shadow:
            0 0 10px rgba(197, 165, 120, 0.18),
            inset 0 0 8px rgba(197, 165, 120, 0.06);
    }
    50% {
        box-shadow:
            0 0 20px rgba(197, 165, 120, 0.32),
            0  0  6px rgba(197, 165, 120, 0.14),
            inset 0 0 10px rgba(197, 165, 120, 0.10);
    }
}

/* ── Hover state: ring expands & brightens, dot grows ── */
#cursor-ring.is-hover {
    width: 58px;
    height: 58px;
    border-color: rgba(216, 185, 143, 0.90);         /* --accent-gold-hover */
    box-shadow:
        0 0 22px rgba(197, 165, 120, 0.40),
        0 0  8px rgba(197, 165, 120, 0.20),
        inset 0 0 14px rgba(197, 165, 120, 0.10);
    animation: cursor-ring-pulse-hover 2s ease-in-out infinite;
}

@keyframes cursor-ring-pulse-hover {
    0%,  100% {
        box-shadow:
            0 0 22px rgba(197, 165, 120, 0.40),
            0 0  8px rgba(197, 165, 120, 0.20),
            inset 0 0 14px rgba(197, 165, 120, 0.10);
    }
    50% {
        box-shadow:
            0 0 35px rgba(216, 185, 143, 0.55),
            0 0 12px rgba(197, 165, 120, 0.30),
            inset 0 0 18px rgba(197, 165, 120, 0.14);
    }
}

#cursor-dot.is-hover {
    width: 8px;
    height: 8px;
    background: #D8B98F;                             /* --accent-gold-hover */
    box-shadow: 0 0 14px rgba(216, 185, 143, 0.90);
}

/* ── Click state: ring compresses, dot pulses ── */
#cursor-ring.is-clicking {
    width: 28px;
    height: 28px;
    border-color: rgba(245, 242, 235, 0.85);         /* --text-ivory flash */
    box-shadow:
        0 0 28px rgba(197, 165, 120, 0.60),
        0 0 10px rgba(245, 242, 235, 0.30);
    transition-duration: 0.10s;
}

#cursor-dot.is-clicking {
    width: 3px;
    height: 3px;
    background: #F5F2EB;
    box-shadow: 0 0 10px rgba(245, 242, 235, 1);
    transition-duration: 0.10s;
}

/* ── Hide cursor on touch devices so it doesn't ghost ── */
@media (hover: none) and (pointer: coarse) {
    #cursor-ring,
    #cursor-dot {
        display: none !important;
    }
    * { cursor: auto !important; }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.hidden {
    display: none !important;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    animation: fadeInVar 1.5s forwards ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInVar {
    to { opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-obsidian);
}

.btn-secondary {
    border-color: var(--text-ivory);
    color: var(--text-ivory);
}

.btn-secondary:hover {
    background-color: var(--text-ivory);
    color: var(--bg-obsidian);
}

.btn-nav-cta {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-nav-cta:hover {
    background-color: var(--accent-gold);
    color: var(--bg-obsidian);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 4rem;
}

.header-logo-img {
    height: 90px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    filter: drop-shadow(0 0 8px rgba(212,160,20,0.25));
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-toggle .line {
    width: 25px;
    height: 1px;
    background-color: var(--text-ivory);
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.open .line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-nav-toggle.open .line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #0c0a07;
    display: block;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

/* Background scene image - fully visible, no cropping, no black bars */
.hero-bg-scene {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: contrast(1.08) saturate(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    vertical-align: top;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Main product image layered over background */
.hero-bg-img {
    display: block;
    width: 100%;
    height: 92%;
    margin: auto;
    object-fit: contain;
    object-position: center bottom;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.animated-hero {
    animation: zoom-in-pan 20s infinite alternate ease-in-out;
}

@keyframes zoom-in-pan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-0.5%, 0.5%);
    }
}

/* Cinematic Video Overlay Effects */
.cinematic-smoke {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.05) 0%, transparent 60%);
    opacity: 0;
    animation: smoke-drift 15s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

.cinematic-smoke.layer-2 {
    background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: smoke-drift 20s infinite alternate-reverse ease-in-out;
}

@keyframes smoke-drift {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.2) translate(5%, -5%); opacity: 0.3; }
}

.cinematic-light-rays {
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 215, 0, 0.02) 10%,
        transparent 20%
    );
    z-index: 3;
    pointer-events: none;
    animation: light-sweep 12s infinite linear;
    mix-blend-mode: color-dodge;
}

@keyframes light-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cinematic-reflection {
    position: absolute;
    top: 0; left: 0; width: 200%; height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    z-index: 4;
    pointer-events: none;
    transform: skewX(-20deg) translateX(-150%);
    animation: lens-flare 8s infinite ease-in-out;
    mix-blend-mode: overlay;
}

@keyframes lens-flare {
    0%, 50% { transform: skewX(-20deg) translateX(-150%); }
    100% { transform: skewX(-20deg) translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.hero-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.8rem;
}

.hero-logo-main {
    height: 175px;
    width: auto;
    display: block;
    margin: 0 auto 0.8rem auto;
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.hero-logo-main:hover {
    transform: scale(1.02);
}

.hero-tagline-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.45em;
    color: #F5E5DF;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    word-spacing: 0.1em;
    line-height: 1.4;
}

.hero-title .accent-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-serif);
    text-transform: capitalize;
}

.hero-cta-wrapper {
    margin-bottom: 4rem;
}

.hero-intro-text {
    max-width: 700px;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: auto;
    padding-bottom: 3rem;
}

.intro-headline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-ivory);
    margin-bottom: 1rem;
    font-style: italic;
}

.intro-body {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.intro-highlight {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-dot {
    width: 2px;
    height: 40px;
    background-color: var(--border-color);
    position: relative;
    overflow: hidden;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--accent-gold);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% { transform: translateY(-100%); }
    80% { transform: translateY(300%); }
    100% { transform: translateY(300%); }
}

/* Statement Block (Luxury Statement) */
.statement-section {
    padding: 10rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.statement-container {
    max-width: 900px;
    margin: 0 auto;
}

.brand-blockquote {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--text-ivory);
    margin-bottom: 2rem;
    font-style: italic;
    white-space: nowrap;
}

.statement-body {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
}

/* Sections Grid Layout (House, Origin) */
.section-grid {
    display: flex;
    min-height: 90vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.grid-image-column {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    /* flex centering so img sits at its true pixel size */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* House section — side-by-side: TALL VERTICAL image LEFT, text RIGHT */
.house-section .section-grid {
    flex-direction: row;
    align-items: stretch;      /* both columns fill full section height */
    min-height: 100vh;
    gap: 0;
    padding: 0;
    background: var(--bg-obsidian);
}

/* Left image column — tall vertical portrait */
.house-image-column {
    flex: 0 0 42%;
    width: 42%;
    padding: 0;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 100vh;
}

/* Right text column */
.house-section .grid-content-column {
    flex: 1;
    padding: 7rem 6% 7rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}
.house-section .grid-content-column .content-subblock {
    text-align: left;
    max-width: none;
    margin: 0;
}
.house-section .section-label,
.house-section .section-title,
.house-section .section-lead {
    text-align: left;
    display: block;
    max-width: none;
    margin: 0 0 2rem;
}

/* House Scroller */
.house-scroller-viewport {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    display: flex;
    align-items: center;
    cursor: grab;
}
.house-scroller-viewport::-webkit-scrollbar {
    display: none;
}
.house-scroller-viewport:active {
    cursor: grabbing;
}
.house-scroller-track {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}
.house-scroller-item {
    flex: 0 0 80%; /* Takes up 80% of the viewport width */
    height: 80%;
    max-height: 700px;
    scroll-snap-align: center;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.house-scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* prevents image dragging interfering with touch scroll */
}

.house-bottle-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.45);
    z-index: 1;
}

/* House section: no overlay — show the image clean and sharp */
.house-section .image-overlay {
    display: none;
}

.origin-section .image-overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.45) 100%);
    z-index: 1;
}

.grid-content-column {
    flex: 1;
    background-color: var(--bg-obsidian);
    padding: 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-label {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.55), 0 2px 8px rgba(0,0,0,0.45);
    line-height: 1.15;
    text-align: center;
}

.section-label::after {
    content: '';
    display: block;
    margin: 0.55rem auto 0;
    width: 52px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 175, 55, 0.85) 30%,
        rgba(212, 175, 55, 0.85) 70%,
        transparent
    );
    border-radius: 1px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.house-section .section-title {
    white-space: nowrap;
    font-size: 2.2rem;
}

.ingredients-section .section-title {
    white-space: nowrap;
    font-size: 2.2rem;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-ivory);
    font-family: var(--font-serif);
    font-style: italic;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.content-subblock {
    margin-bottom: 2.5rem;
}

.content-subblock h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-ivory);
}

.content-subblock p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.baamann-code-list {
    list-style: none;
    margin-top: 1.5rem;
}

.baamann-code-list li {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.baamann-code-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.baamann-code-list li strong {
    color: var(--text-ivory);
    font-weight: 500;
}

.grid-reverse {
    flex-direction: row-reverse;
}

.provenance-statement {
    border-left: 2px solid var(--accent-gold);
    padding-left: 2rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Ingredients Section */
.ingredients-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background-color: var(--bg-primary);
}

.ingredients-section .image-overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.45) 100%);
}

.materials-showcase {
    margin-top: 3rem;
    max-width: 100%;
}

.materials-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem 1.8rem;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.6;
}

.material-tag {
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.material-tag:hover {
    color: var(--text-ivory);
    transform: scale(1.06);
}

.material-divider {
    color: var(--text-ivory);
    opacity: 0.35;
}


/* Centred section header (used in Cosmetics & Private Access) */
.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}


/* ═══════════════════════════════════════════════
   PERFUME CAROUSEL — Infinite Auto-Scroll
   ═══════════════════════════════════════════════ */

@keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.perfume-carousel-section {
    padding: 7rem 0 6rem;
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(197, 165, 120, 0.08);
    border-bottom: 1px solid rgba(197, 165, 120, 0.08);
    overflow: hidden;
}

/* ── Header ── */
.carousel-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.carousel-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--text-ivory);
    letter-spacing: 0.06em;
    margin: 0.6rem 0 1.2rem;
}

.carousel-gold-rule {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* ── Viewport ── */
.carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Gradient fade edges */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.carousel-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.carousel-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

/* ── Scrolling track ── */
.carousel-track {
    display: flex;
    align-items: stretch;        /* all cards same total height */
    gap: 2rem;
    width: max-content;
    animation: carouselScroll 32s linear infinite;
    will-change: transform;
    padding: 0.5rem 0 1.5rem;   /* room for box-shadow on hover */
}

.carousel-viewport:hover .carousel-track {
    animation-play-state: paused;
}

/* ══════════════════════════════════════
   CARD — uniform flex column layout
   ══════════════════════════════════════ */
.carousel-item {
    flex-shrink: 0;
    width: 380px;               /* fixed card width — same for all */
    display: flex;
    flex-direction: column;     /* image on top, caption below */
    background-color: #0b0b0b;
    border: 1px solid rgba(197, 165, 120, 0.12);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.carousel-item:hover {
    border-color: rgba(197, 165, 120, 0.45);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
    transform: translateY(-4px);
}

/* ── Image box — fixed height, contain so full image shows ── */
.carousel-img-box {
    width: 100%;
    height: 260px;              /* fixed height — identical across all cards */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0b0b;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;        /* full image — no cropping, no stretching */
    object-position: center;
    image-rendering: auto;
}

/* ── Caption — below image, centered ── */
.carousel-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.2rem 1rem 1.4rem;
    border-top: 1px solid rgba(197, 165, 120, 0.10);
    text-align: center;
    background-color: #0b0b0b;
    flex-shrink: 0;
}

.carousel-perfume-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.carousel-perfume-category {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
}

/* Media queries removed in favor of fluid global scaling at bottom of file */

/* Cosmetics Section */
.cosmetics-section {
    padding: 10rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background-color: var(--bg-primary);
}

/* Enlarged COSMETICS heading & subtitle */
.cosmetics-section .section-header-centered .section-label {
    font-size: 2.8rem;
    letter-spacing: 0.45em;
}

.cosmetics-section .section-header-centered .section-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cosmetics-section .section-header-centered .section-lead {
    font-size: 1.5rem;
}

/* Auto-Rotating Cosmetics Scroller Styles */
.cosmetics-scroller-container {
    overflow: hidden;
    width: 100%;
    padding: 3rem 0;
    margin: 2rem 0 5rem 0;
    position: relative;
    background: rgba(18, 18, 18, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    touch-action: pan-x;
}

/* Subtle mask overlay to fade the edges for premium luxury feel */
.cosmetics-scroller-container::before,
.cosmetics-scroller-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
    top: 0;
}

.cosmetics-scroller-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-obsidian) 0%, rgba(10, 10, 10, 0) 100%);
}

.cosmetics-scroller-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-obsidian) 0%, rgba(10, 10, 10, 0) 100%);
}

.cosmetics-scroller-track {
    display: flex;
    width: calc(250px * 16 + 3rem * 16); /* 16 items (8 original + 8 duplicates) */
    animation: scrollRotate 26.45s linear infinite;
    gap: 3rem;
}

.cosmetics-scroller-track:hover {
    animation-play-state: paused;
}

.cosmetics-scroller-item {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(25, 25, 25, 0.3);
    border: 1px solid rgba(197, 165, 120, 0.08);
    padding: 2.2rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cosmetics-scroller-item:hover {
    border-color: var(--accent-gold);
    background: rgba(25, 25, 25, 0.6);
    transform: translateY(-5px);
}

.cosmetics-scroller-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

/* Elegant zoom on hover */
.cosmetics-scroller-item:hover img {
    transform: scale(1.06);
}

.scroller-item-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-ivory);
    font-weight: 400;
}

@keyframes scrollRotate {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8 - 3rem * 8)); /* Move half the length (8 items) */
    }
}



.cosmetics-intro-block {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    text-align: center;
    padding: 2.5rem 3rem;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid var(--border-color);
}

.cosmetics-brand-text {
    font-size: 1.1rem;
    color: var(--text-ivory);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.cosmetics-brand-text strong {
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

.cosmetics-brand-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.collection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.collection-header .sub-label {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.55), 0 2px 8px rgba(0,0,0,0.45);
    line-height: 1.15;
}

.collection-header .collection-title {
    font-size: 2.2rem;
    color: var(--text-ivory);
    font-weight: 300;
}

.cosmetics-grid {
    max-width: 1300px;
    margin: 0 auto;
}

.cosmetic-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.cosmetic-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cosmetic-card .cosmetic-title {
    font-size: 1.4rem;
    color: var(--text-ivory);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.4;
}

.cosmetic-card .cosmetic-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Hair Care Showcase Container & Image Frame */
.haircare-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
}

.haircare-showcase-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

/* Skin Care Showcase Container & Image Frame */
.skincare-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
}

.skincare-showcase-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.skincare-image-wrap {
    background: #080808;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
}

.skincare-product-img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
    transition: var(--transition-smooth);
}

.skincare-product-img:hover {
    transform: scale(1.02);
}

.haircare-image-wrap {
    background: #080808;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

.haircare-product-img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
    transition: var(--transition-smooth);
}

.haircare-product-img:hover {
    transform: scale(1.02);
}

.haircare-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.cosmetics-highlights-grid {
    max-width: 1200px;
    margin: 6rem auto 0 auto;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem 3rem;
}

.highlight-card h3 {
    font-size: 1.8rem;
    color: var(--text-ivory);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-ivory);
}

.why-list .bullet-icon {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.disclaimer-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.promise-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-ivory);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.promise-signature {
    display: flex;
    flex-direction: column;
}

.promise-signature .brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.promise-signature .tagline {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Archive Section */
.archive-section {
    padding: 10rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background-color: var(--bg-primary);
}

.archive-intro {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    text-align: center;
    font-size: 1.05rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.archive-details-card h3, .archive-legacy-card h3 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-ivory);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.archive-details-list {
    list-style: none;
}

.archive-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.detail-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-ivory);
    font-family: var(--font-serif);
    font-style: italic;
}

.archive-legacy-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.legacy-closing {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.closing-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-gold);
    line-height: 1.5;
}

/* Interactive Olfactory Quiz */
.interactive-quiz-section {
    padding: 8rem 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    background-color: var(--bg-obsidian);
}

.quiz-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.quiz-intro p {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.quiz-progress-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.progress-fill {
    height: 100%;
    background-color: var(--accent-gold);
    transition: width 0.4s ease;
}

.quiz-step-indicator {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.quiz-step-content h3 {
    font-size: 1.6rem;
    margin: 1.5rem 0 3rem 0;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quiz-option-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 1.2rem 2rem;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quiz-option-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-ivory);
    background-color: rgba(197, 165, 120, 0.02);
}

.result-highlight {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-gold);
    margin: 1.5rem 0;
    font-style: italic;
}

.result-desc {
    margin-bottom: 3rem;
}

/* Private Access Section / Form */
.private-access-section {
    padding: 10rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background-color: var(--bg-primary);
}

.access-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.enquiry-info-column {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.enquiry-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-ivory);
}

.investment-block h4, .baamann-code-box h4 {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.investment-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-ivory);
    margin-bottom: 1rem;
}

.investment-detail {
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-vertical-list {
    list-style: none;
}

.code-vertical-list li {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem;
    color: var(--text-ivory);
}

/* Form Styles */
.baamann-enquiry-form {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    background-color: var(--bg-obsidian);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-ivory);
    padding: 1rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

/* Phone input with country code wrapper */
.phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.country-code-select-container {
    width: 110px;
    flex-shrink: 0;
    min-width: 100px;
}

.country-code-select-container select {
    background-position: right 0.8rem center;
    padding-right: 2.2rem;
    padding-left: 0.8rem;
    text-align: left;
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
    min-width: 0;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-gold);
    color: var(--bg-obsidian);
    border: none;
    font-weight: 500;
}

.btn-submit:hover {
    background-color: var(--accent-gold-hover);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-muted);
}

.form-success-message {
    background-color: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 5rem 3rem;
    text-align: center;
    animation: fadeInVar 0.8s forwards;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-ivory);
}

/* Final Statement Section */
.final-statement-section {
    padding: 12rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.brand-signature-block {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-brand-logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 0.8rem auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.brand-sub {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: #F5E5DF;
}

.final-slogan {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-top: -0.5rem;
    margin-bottom: 3rem;
}

/* Footer Section */
.site-footer {
    background-color: #070707;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.01);
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.footer-brand-info {
    max-width: 400px;
}

.footer-tag {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-desc {
    font-size: 0.85rem;
}

.footer-links h4 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem 0 2rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE DESIGN — FLUID SCALING ADAPTATION
   ============================================================ */

/* ============================================================
   RESPONSIVE DESIGN — MOBILE OPTIMIZED STACKING
   ============================================================ */

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
    .container { padding: 0 2.5rem; }
    .header-container { padding: 0.8rem 2.5rem; }
    .grid-2, .grid-3, .haircare-showcase-grid, .skincare-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .section-grid { min-height: unset; }
    .grid-content-column { padding: 4rem 3rem; }
    .archive-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top-grid { flex-direction: column; gap: 3rem; }
    .cosmetics-section .section-header-centered .section-title { font-size: 3.5rem; }
    .skincare-showcase-container, .haircare-showcase-container { padding: 2.5rem; }
    .baamann-enquiry-form { padding: 3rem; }
    .access-content-wrapper { padding: 0 2.5rem; }
    
    /* Perfume Carousel Tablet */
    .carousel-item    { width: 320px; }
    .carousel-img-box { height: 220px; }
    .carousel-track   { gap: 1.6rem; animation-duration: 26.8s; }
    .carousel-fade    { width: 90px; }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {
    /* Prevent any horizontal overflow on mobile body */
    body, html { overflow-x: hidden; width: 100%; position: relative; }

    /* Base Typography Scaling */
    html { font-size: 15px; }

    * { max-width: 100vw; }

    .container { padding: 0 1.2rem; }

    /* Header */
    .site-header { padding: 0; }
    .header-container { padding: 0.7rem 1.2rem; min-height: 70px; }
    .header-logo-img { height: 60px; max-width: 160px; }

    /* Mobile Nav Menu */
    .mobile-nav-toggle {
        display: flex; padding: 10px; min-width: 44px; min-height: 44px;
        align-items: center; justify-content: center;
    }
    .primary-nav {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: rgba(10, 10, 10, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color); padding: 2rem 1.5rem; display: none; z-index: 999;
    }
    .primary-nav.active { display: block; }
    .primary-nav ul { flex-direction: column; gap: 1.8rem; align-items: center; }
    .nav-link { font-size: 1rem; letter-spacing: 0.18em; display: block; padding: 0.5rem 1rem; }
    .header-action .btn-nav-cta { display: none; }

    /* Hero Section Fixes */
    .hero-section {
        min-height: 100svh;
        height: auto; /* Fix huge blank space */
        padding: 8rem 1.2rem 4rem;
    }
    .hero-bg-scene {
        aspect-ratio: 9 / 16;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
    .hero-logo-main { height: 110px; max-width: 90vw; }
    .hero-title { font-size: 1.5rem; word-break: break-word; }
    .hero-title .accent-text { font-size: 1.2rem; }
    .hero-tagline-sub { font-size: 0.6rem; letter-spacing: 0.35em; }
    .scroll-indicator { bottom: 1.5rem; }

    /* Statement */
    .statement-section { padding: 4rem 1.2rem; }
    .brand-blockquote { font-size: 1.1rem; }
    .statement-body { font-size: 0.95rem; }

    /* Vertical Stacking for Grids (House / Origin / Ingredients) */
    .section-grid { flex-direction: column; min-height: unset; height: auto; }
    .grid-reverse { flex-direction: column; }

    /* House Section Image Optimization */
    .house-section .section-grid { flex-direction: column !important; padding: 0 !important; align-items: stretch !important; }
    .house-image-column { flex: none !important; width: 100% !important; height: 60vh !important; max-height: 500px; min-height: unset !important; }
    .house-aesthetic-image-wrap { height: 100% !important; min-height: unset !important; }
    .house-aesthetic-img { object-position: center 30% !important; }
    .house-section .grid-content-column { padding: 3rem 1.4rem !important; width: 100% !important; flex: none !important; }
    
    .grid-image-column {
        height: 400px;
        flex: none; width: 100%;
        background-size: cover !important; /* contain creates blank space */
        background-position: center !important;
    }
    .house-bottle-img {
        width: 100%; height: 400px; min-height: unset;
        object-fit: contain; background: #050505;
    }

    .grid-content-column { padding: 3rem 1.2rem; flex: none; width: 100%; }

    /* Typography Adjustments */
    .section-title { font-size: 1.9rem; }
    .house-section .section-title, .ingredients-section .section-title { font-size: 1.45rem; text-align: center; margin: 0 auto 1.5rem; }
    .house-section .section-label, .house-section .section-lead { text-align: center; margin: 0 auto 1.5rem; }
    .section-lead { font-size: 1rem; }
    .content-subblock h3 { font-size: 1.15rem; text-align: center; }
    .materials-cloud { font-size: 1.2rem; gap: 0.8rem 1rem; }

    /* Cosmetics Section */
    .cosmetics-section { padding: 4rem 0; }
    .cosmetics-section .section-header-centered .section-label { font-size: 1.6rem; }
    .cosmetics-section .section-header-centered .section-title { font-size: 2.4rem; }

    /* Cosmetics Horizontal Scroller */
    .cosmetics-scroller-container { padding: 1rem 0; margin: 1.5rem 0 2rem; overflow: hidden; width: 100vw; }
    .cosmetics-scroller-container::before, .cosmetics-scroller-container::after { width: 40px; }
    .cosmetics-scroller-item { width: 160px; padding: 1.2rem 0.8rem; }
    .cosmetics-scroller-item img { width: 120px; height: 120px; }
    .cosmetics-scroller-track { width: calc(160px * 16 + 2rem * 16); gap: 2rem; animation: scrollRotateMobile 18s linear infinite; }
    
    @keyframes scrollRotateMobile {
        0%   { transform: translateX(0); }
        100% { transform: translateX(calc(-160px * 8 - 2rem * 8)); }
    }

    /* Skincare / Haircare Showcases */
    .skincare-showcase-container, .haircare-showcase-container { padding: 1.2rem; }
    .skincare-showcase-grid, .haircare-showcase-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .skincare-image-wrap, .haircare-image-wrap { min-height: 240px; padding: 1rem; }
    .skincare-product-img, .haircare-product-img { max-height: 240px; }
    
    .cosmetics-grid.grid-1 { grid-template-columns: 1fr; gap: 1.2rem; }
    .cosmetic-card { padding: 1.8rem 1.2rem; width: 100%; height: auto; } /* Fix card overflow */
    .cosmetics-highlights-grid.grid-2 { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }

    /* Perfume Carousel Mobile */
    .perfume-carousel-section { padding: 4rem 0; }
    .carousel-title            { font-size: 1.8rem; }
    .carousel-item             { width: 240px; }
    .carousel-img-box          { height: 170px; }
    .carousel-perfume-name     { font-size: 0.9rem; }
    .carousel-track            { gap: 1.2rem; animation-duration: 22s; }
    .carousel-fade             { width: 55px; }

    /* Private Access / Form */
    .private-access-section { padding: 4rem 0; }
    .access-content-wrapper { padding: 0 1.2rem; gap: 2rem; }
    .access-content-wrapper.grid-2 { grid-template-columns: 1fr; }
    .enquiry-info-column { gap: 1.5rem; }
    .baamann-enquiry-form { padding: 1.8rem 1.2rem; }
    .form-row.grid-2 { grid-template-columns: 1fr; gap: 0; }
    .phone-input-wrapper { flex-direction: column; gap: 0.5rem; }
    .country-code-select-container { width: 100%; max-width: 100%; }

    .form-group input, .form-group textarea, .form-group select { font-size: 16px; padding: 0.9rem 1rem; }
    .btn-submit { padding: 1.1rem; font-size: 0.8rem; min-height: 48px; letter-spacing: 0.15em; }

    /* Footer */
    .site-footer { padding: 3rem 0 2rem 0; }
    .footer-top-grid { flex-direction: column; gap: 2rem; padding: 0 1.2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.2rem 0; }

    /* Ensure images never overflow */
    img { max-width: 100%; height: auto; }
}

/* ---------- Small Phones (≤480px) ---------- */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 1rem; }
    .header-container { padding: 0.7rem 1rem; min-height: 65px; }
    .header-logo-img { height: 50px; }
    
    .hero-section { padding: 7rem 1rem 3rem; }
    .hero-logo-main { height: 85px; }
    .hero-title { font-size: 1.25rem; }

    /* House section overrides for small phones */
    .house-image-column { height: 50vh !important; }
    .house-section .grid-content-column { padding: 2rem 1rem !important; }

    .cosmetics-section .section-header-centered .section-title { font-size: 1.9rem; }
    
    /* Perfume Carousel Small */
    .carousel-item    { width: 190px; }
    .carousel-img-box { height: 135px; }
    .carousel-track   { gap: 1rem; animation-duration: 18s; }
    .carousel-fade    { width: 36px; }

    .baamann-enquiry-form { padding: 1.5rem 1rem; }
}

/* ════════════════════════════════════════════════════════
   HOUSE SECTION — AESTHETIC IMAGE (portrait, left column)
   ════════════════════════════════════════════════════════ */

.house-aesthetic-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;              /* fills the entire vertical column */
    min-height: 100vh;
    overflow: hidden;
}

.house-aesthetic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.88) contrast(1.08) saturate(0.95);
    transition: transform 1.4s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease;
    will-change: transform;
}

.house-aesthetic-image-wrap:hover .house-aesthetic-img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.08);
}

.house-aesthetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 55%, rgba(10, 10, 10, 0.80) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(10, 10, 10, 0.40) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(10, 10, 10, 0.20) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 3D Scroll Optimizations */
.grid-image-column, .house-aesthetic-img, .skincare-product-img, .haircare-product-img, .cosmetic-card { will-change: transform; }
.hero-video-wrapper, .house-aesthetic-image-wrap { overflow: hidden; }

