:root {
    --bg: #050505;
    --accent: #b91c1c;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}


body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0; /* Reset body margin */
}

/* --- Common --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive clamp */
    text-align: center; margin-bottom: 10px; font-weight: 400;
    line-height: 1.2;
}

.section-desc {
    text-align: center; color: var(--text-muted); margin-bottom: 60px; font-weight: 300; font-size: 1rem;
}

/* --- SECTION 1: HERO --- */
.exp-hero {
    min-height: 90vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #150505 0%, #000 80%);
    padding: 20px 20px 40px; /* Top padding increased for navbar space */
    position: relative;
}

.eyebrow {
    text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); font-size: 0.75rem; margin-bottom: 20px; display: block;
}

.exp-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
}
.exp-hero h1 em { font-style: italic; color: var(--accent); }

.exp-hero p {
    font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.6;
}

.scroll-indicator {
    margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); opacity: 0.7;
}
.scroll-indicator .line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); }

/* --- SECTION 2: SCENT JOURNEY (Text Cards) --- */
.scent-journey { padding: 80px 0; }

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto stack on mobile */
    gap: 30px;
}

.note-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.4s ease;
}

.note-card:hover {
    border-color: var(--accent); transform: translateY(-5px); background: rgba(20, 5, 5, 0.4);
}

.note-content { padding: 40px; text-align: center; }

.note-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); display: block; margin-bottom: 15px;
}

.note-content h3 {
    font-family: var(--font-heading); font-size: 1.8rem; margin: 0 0 15px; color: #fff;
}
.note-content p {
    font-size: 0.95rem; color: #ccc; line-height: 1.6; margin-bottom: 25px;
}

.audio-btn {
    min-height: 44px;
    background: transparent; border: 1px solid var(--border); color: var(--text-muted);
    padding: 12px 28px; border-radius: 50px; cursor: pointer;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; transition: 0.3s;
}

.audio-btn:hover, .audio-btn.playing {
    border-color: var(--accent); color: #fff; background: var(--accent);
}

/* --- SECTION 3: FRAGRANCE NOTES (Circular Icons) --- */
.scent-composition {
    padding: 100px 0;
    background: #050505;
}

.composition-grid {
    display: grid;
    /* Desktop: Auto fit (approx 5 items in a row) */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 60px;
    justify-content: center; /* Center items if fewer than full row */
}

.note-item { display: flex; flex-direction: column; align-items: center; }

.icon-circle {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.note-item:hover .icon-circle {
    background: rgba(185, 28, 28, 0.1); transform: scale(1.05); box-shadow: 0 0 15px rgba(185, 28, 28, 0.2);
}

.icon-circle svg { width: 32px; height: 32px; stroke: var(--accent); stroke-width: 1.2; fill: none; }

.note-item h4 {
    font-family: var(--font-heading); font-size: 1.4rem; margin: 0 0 8px; color: #fff; font-weight: 400;
}

.note-item .descriptor {
    font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); opacity: 0.8; margin: 0; font-weight: 500;
}

/* --- SECTIONS 4 & 5 (Stories & CTA) --- */
.scent-stories { padding: 100px 0; border-top: 1px solid var(--border); }
.story-carousel { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.story-card { background: rgba(255,255,255,0.02); padding: 40px; border-left: 2px solid var(--accent); }
.quote { font-family: var(--font-heading); font-size: 1.4rem; font-style: italic; line-height: 1.5; color: #e5e5e5; margin-bottom: 20px; }
.author .name { font-size: 0.9rem; color: var(--accent); font-weight: 600; }

.exp-cta { padding: 100px 20px; text-align: center; background: radial-gradient(circle, rgba(185,28,28,0.1) 0%, transparent 60%); }
.exp-cta h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 30px; }
.btn.pill { padding: 14px 36px; border-radius: 50px; background: var(--accent); color: #fff; text-transform: uppercase; font-weight: 600; letter-spacing: 0.1em; text-decoration: none; transition: 0.3s; }
.btn.pill{
    background-color: #991b1b;
    transform: translateY(-2px);
}

/* --- ANIMATION --- */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========================================= */
/* MOBILE RESPONSIVENESS FIXES       */
/* ========================================= */

@media (max-width: 900px) {
    /* Tablet Adjustments */
    .exp-hero h1 { font-size: 3.5rem; }
    .composition-grid { gap: 30px; }
}

@media (max-width: 768px) {
    /* Phone Adjustments */
    
    /* 1. Hero Section */
    .exp-hero {
        padding: 80px 20px 60px; /* More top padding for navbar */
        min-height: auto; /* Allow flexible height */
    }
    .exp-hero h1 { font-size: 2.5rem; }
    .scroll-indicator { margin-top: 40px; }

    /* 2. Scent Journey (Cards) */
    .scent-journey { padding: 60px 0; }
    .notes-grid {
        grid-template-columns: 1fr; /* Force single column */
        gap: 20px;
    }
    .note-content { padding: 30px 20px; } /* Less padding inside cards */

    /* 3. Fragrance Notes (Icons) */
    .scent-composition { padding: 60px 0; }
    .composition-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for icons */
        gap: 30px 15px; /* Vertical gap 30, horizontal 15 */
        margin-top: 40px;
    }
    /* Last item (Spicy) ko center karne ke liye agar odd number ho */
    .note-item:last-child:nth-child(odd) {
        grid-column: span 2; /* Full width if needed, or keep standard */
    }
    
    .icon-circle { width: 70px; height: 70px; margin-bottom: 15px; } /* Smaller icons */
    .icon-circle svg { width: 24px; height: 24px; }
    .note-item h4 { font-size: 1.2rem; }

    /* 4. Stories & CTA */
    .scent-stories { padding: 60px 0; }
    .story-carousel { grid-template-columns: 1fr; }
    .quote { font-size: 1.2rem; }
    
    .exp-cta { padding: 80px 20px; }
    .exp-cta h2 { font-size: 1.8rem; }
    .btn.pill { width: 100%; display: block; box-sizing: border-box; } /* Full width button */
}