: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);
}

.btn-outline {
    border: 1px solid rgba(28, 43, 32, .3);
    color: var(--forest);
    background: transparent;
}

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


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

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

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

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

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

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

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

.acc-hero h1 {
    font-size: clamp(40px, 6vw, 70px);
    color: var(--ivory);
    margin-bottom: 22px;
    line-height: 1.08;
}

.acc-hero p {
    font-size: 18px;
    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 ---------- */
.acc-intro {
    padding: 130px 0 40px;
    background: var(--ivory);
    text-align: center;
}

.acc-intro p.lead {
    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 30px;
    line-height: 1.55;
}

.acc-intro p.sub {
    font-size: 15.5px;
    color: #5a564c;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 300;
}

/* ---------- WALKTHROUGH ROWS ---------- */
.walkthrough {
    padding: 20px 0 60px;
    background: var(--ivory);
}

.w-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
    padding: 100px 0;
    border-bottom: 1px solid rgba(28, 43, 32, .08);
}

.w-row:last-child {
    border-bottom: none;
}

.w-row.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.w-row.reverse .w-visual {
    order: 2;
}

.w-row.reverse .w-text {
    order: 1;
}

.w-visual {
    aspect-ratio: 6/5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.w-visual:hover svg {
    transform: scale(1.05);
}

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

.w-text h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.w-text>p {
    color: #4a473f;
    font-size: 15.5px;
    margin-bottom: 0;
    max-width: 460px;
}

/* ---------- DETAIL THUMBS (secondary imagery under each row) ---------- */
.w-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}

.w-thumb {
    aspect-ratio: 4/3;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.w-thumb img {
    width: 100%;
    height: 100%;
}

/* ---------- AMENITIES STRIP ---------- */
.amenities {
    padding: 140px 0;
    background: var(--forest);
    color: var(--ivory);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-head h2 {
    color: var(--ivory);
    font-size: clamp(30px, 3.6vw, 46px);
    margin: 18px auto 0;
}

.amenities .section-head .eyebrow {
    justify-content: center;
}

.amenities .section-head .eyebrow::before {
    display: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(247, 243, 234, .14);
}

.amenity-card {
    background: var(--forest);
    padding: 44px 30px;
    transition: background .45s var(--ease);
}

.amenity-card:hover {
    background: var(--forest-soft);
}

.amenity-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    stroke: var(--gold-light);
}

.amenity-card h3 {
    color: var(--ivory);
    font-size: 16.5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.amenity-card p {
    color: var(--sand-light);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    padding-top: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    border: 1px solid rgba(247, 243, 234, .55);
    color: var(--ivory);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ---------- QUOTE ---------- */
.quote-section {
    padding: 150px 24px;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184, 134, 59, .10), transparent 60%);
}

.quote-section p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 40px);
    color: var(--ivory);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.45;
    position: relative;
}

.quote-section cite {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {

    .w-row,
    .w-row.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 64px 0;
    }

    .w-row.reverse .w-visual {
        order: 1;
    }

    .w-row.reverse .w-text {
        order: 2;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .m1,
    .m2 {
        grid-column: span 4;
    }

    .m3,
    .m4,
    .m5,
    .m6,
    .m7,
    .m8 {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width:768px) {
    header.menu-open {
        background: rgba(17, 26, 20, .98);
        padding-bottom: 24px;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        margin-top: 22px;
        padding: 0 40px;
    }

    header.menu-open .mobile-menu {
        display: flex;
    }

    .mobile-menu a {
        color: var(--ivory);
        padding: 14px 0;
        border-bottom: 1px solid rgba(247, 243, 234, .1);
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .mobile-menu .nav-cta {
        display: inline-block;
        margin-top: 18px;
        width: fit-content;
    }

    .container {
        padding: 0 24px;
    }

    .acc-intro,
    .quote-section,
    .final-cta,
    .amenities,
    .mosaic {
        padding: 90px 24px;
    }

    .walkthrough {
        padding: 10px 0 20px;
    }

    .w-row {
        padding: 50px 0;
    }

    .w-thumbs {
        grid-template-columns: 1fr 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .m1,
    .m2 {
        grid-column: span 2;
    }

    .m3,
    .m4,
    .m5,
    .m6,
    .m7,
    .m8 {
        grid-column: span 1;
    }

    .immersive-break {
        height: 46vh;
        min-height: 320px;
        margin: 60px 0;
    }

    .immersive-break .ib-overlay {
        padding: 30px;
    }
}