:root {
    --forest: #1c2b20;
    --forest-deep: #111a14;
    --forest-soft: #2c4030;
    --sand: #c9a876;
    --sand-light: #e7d9b8;
    --ivory: #f7f3ea;
    --charcoal: #24211d;
    --gold: #b8863b;
    --gold-light: #d9ac5c;
    --olive: #6b7048;
    --terracotta: #b5573c;
    --shadow: 0 12px 40px rgba(17, 26, 20, 0.16);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--forest-deep);
    letter-spacing: .2px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

section {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 16px 34px;
    border-radius: 2px;
    font-size: 12.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .45s var(--ease);
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--forest-deep);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ivory);
    transform: translateY(-2px);
}

.btn-forest {
    background: var(--forest);
    color: var(--ivory);
    border: 1px solid var(--forest);
}

.btn-forest:hover {
    background: transparent;
    color: var(--forest);
    transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.exp-hero {
    height: 92vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--forest-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.exp-hero-scene {
    position: absolute;
    inset: 0;
}

.exp-hero-scene svg {
    width: 100%;
    height: 100%;
}

.exp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 26, 20, .42) 0%, rgba(17, 26, 20, .15) 40%, rgba(17, 26, 20, .62) 100%);
}

.exp-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--ivory);
    max-width: 760px;
    padding: 0 24px;
}

.exp-hero-content .eyebrow {
    color: var(--gold-light);
    margin-bottom: 22px;
    justify-content: center;
}

.exp-hero-content .eyebrow::before {
    display: none;
}

.exp-hero h1 {
    font-size: clamp(38px, 5.8vw, 66px);
    color: var(--ivory);
    margin-bottom: 22px;
    line-height: 1.1;
}

.exp-hero p {
    font-size: 17.5px;
    color: var(--sand-light);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ivory);
    opacity: .8;
}

.scroll-indicator .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--gold-light), transparent);
    animation: scrollpulse 2.2s infinite;
}

@keyframes scrollpulse {
    0% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ---------- INTRO ---------- */
.exp-intro {
    padding: 120px 0 30px;
    background: var(--ivory);
    text-align: center;
}

.exp-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--forest-deep);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ---------- CHAPTER OPENER (big immersive intro per experience) ---------- */
.chapter-opener {
    height: 82vh;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chapter-opener svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chapter-opener .co-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 26, 20, .2) 0%, rgba(17, 26, 20, .25) 55%, rgba(17, 26, 20, .85) 100%);
}

.co-content {
    position: relative;
    z-index: 3;
    padding: 70px 40px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    color: var(--ivory);
}

.co-numeral {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.co-content h2 {
    color: var(--ivory);
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 16px;
    line-height: 1.08;
}

.co-content p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--sand-light);
    max-width: 640px;
    line-height: 1.5;
}

/* ---------- NARRATIVE MOMENTS ---------- */
.moments {
    padding: 100px 0 40px;
    background: var(--ivory);
}

.moment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 90px 0;
    border-bottom: 1px solid rgba(28, 43, 32, .08);
}

.moment:last-child {
    border-bottom: none;
}

.moment.reverse .moment-visual {
    order: 2;
}

.moment.reverse .moment-text {
    order: 1;
}

.moment-visual {
    aspect-ratio: 6/5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.moment-visual img {
    width: 100%;
    height: 100%;
    transition: transform 1.1s var(--ease);
}

.moment-visual:hover img {
    transform: scale(1.05);
}

.moment-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ivory);
    background: rgba(17, 26, 20, .55);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.moment-text .moment-time {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.moment-text h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    margin-bottom: 18px;
    line-height: 1.25;
}

.moment-text p {
    color: #4a473f;
    font-size: 15.5px;
    max-width: 480px;
}

/* ---------- FACTS STRIP ---------- */
.facts-strip {
    padding: 70px 0 110px;
    background: var(--ivory);
}

.facts-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28, 43, 32, .12);
    border-bottom: 1px solid rgba(28, 43, 32, .12);
}

.fact-col {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 36px 24px;
    border-right: 1px solid rgba(28, 43, 32, .12);
}

.fact-col:last-child {
    border-right: none;
}

.fact-col .k {
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.fact-col .v {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--forest-deep);
}


/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .moment {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 0;
    }

    .moment.reverse .moment-visual {
        order: 1;
    }

    .moment.reverse .moment-text {
        order: 2;
    }

    .fact-col {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(28, 43, 32, .12);
    }
}

@media(max-width:768px) {
    .container {
        padding: 0 24px;
    }

    .exp-intro,
    .pull-quote,
    .final-cta {
        padding: 90px 24px;
    }

    .chapter-opener {
        height: 60vh;
        min-height: 420px;
        margin-top: 60px;
    }

    .co-content {
        padding: 44px 24px;
    }

    .moments {
        padding: 60px 0 20px;
    }

    .moment {
        padding: 44px 0;
    }

    .facts-strip {
        padding: 50px 0 70px;
    }

    .fact-col {
        flex: 1 1 100%;
    }
}