/* ─────────────────────────────────────────────────────────────
   THE INITIAL SAMA — Landing Page
   Brand artwork inspired by Optimal Being Retreat reference:
   forest-green dominant tone, cream paper, soft lavender accent,
   elegant serif display, circular badge motif, amenity strip.
   ───────────────────────────────────────────────────────────── */

:root {
    /* ── Brand palette ── */
    --forest: #3b4038; /* deep green — primary brand */
    --forest-deep: #2f332d; /* darker green for hover & footer */
    --paper: #ebe8e5; /* warm light grey — primary surface */
    --paper-soft: #f3f1ef; /* slightly lighter variant */
    --white: #ffffff; /* pure white */

    --ink: #3b4038; /* text uses brand green for cohesion */
    --moss: #6e7268; /* muted green for secondary text */
    --taupe: #8a8c84; /* light muted for captions */
    --bone: #d9d6d2; /* subtle dividers */

    --lavender: #8b6faa;
    --lavender-dk: #74578f;

    --rust: #843c0b; /* terracotta accent */
    --rust-dk: #6b3008;
    --stone: #bab0a8; /* warm grey for route cards */
    --stone-dk: #a09588;

    /* ── Type stacks ── */
    --display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        sans-serif;
    --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    --script: "South Holland", "Pinyon Script", cursive;

    --maxw: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    font-weight: 300;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

/* Script accent — replaces all italic emphasis */
em,
.script {
    font-family: var(--script);
    font-style: normal;
    font-weight: 400;
    font-size: 1.15em;
    line-height: 0.9;
    letter-spacing: 0;
    color: var(--rust);
    display: inline-block;
    transform: translateY(0.04em);
}

/* Plain emphasis — keep in display font, inherit parent color */
em.plain {
    font-family: var(--display);
    font-style: normal;
    font-weight: inherit;
    font-size: 1em;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    display: inline;
    transform: none;
}

/* ─────────────── NAV ─────────────── */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 44px;
    color: #fff;
}
.logo {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.32em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}
.logo small {
    display: block;
    font-family: var(--display);
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 0.32em;
    margin-top: 6px;
    opacity: 0.85;
}
.nav-items {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    margin-left: 10px;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--rust);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover {
    color: var(--rust);
}
.nav-link:hover::after {
    width: 100%;
}
.menu-icon {
    width: 34px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    margin-left: 18px;
}
.menu-icon span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
}
.nav-cta {
    padding: 11px 22px !important;
    font-size: 10px !important;
    letter-spacing: 0.26em !important;
    margin-left: 8px;
}

/* ─────────────── HERO ─────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/initial-sama/hero-banner.png");
    background-size: cover;
    background-position: center 70%;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            265deg,
            rgba(20, 25, 22, 0.72) 0%,
            rgba(20, 25, 22, 0.5) 30%,
            rgba(20, 25, 22, 0.22) 58%,
            rgba(20, 25, 22, 0.05) 100%
        ),
        linear-gradient(
            180deg,
            rgba(20, 25, 22, 0.25) 0%,
            transparent 22%,
            transparent 70%,
            rgba(20, 25, 22, 0.4) 100%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 44px;
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
}
.hero-content {
    max-width: 560px;
    text-align: right;
}
.hero-eyebrow {
    font-family: var(--display);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: rise 0.9s ease-out 0.2s forwards;
    flex-direction: row-reverse;
}
.hero-eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}
.hero h1 {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(44px, 5.6vw, 76px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    margin-left: auto;
    max-width: 560px;
    opacity: 0;
    animation: rise 1s ease-out 0.35s forwards;
}
.hero h1 em {
    color: #ffffff;
    font-size: 1em;
    transform: translateY(0.04em);
    margin-left: 0.04em;
}
.hero p.lead {
    max-width: 440px;
    margin-left: auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 42px;
    opacity: 0;
    animation: rise 1s ease-out 0.55s forwards;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
}
.btn.primary {
    background: var(--forest);
    color: #fff;
}
.btn.primary:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
}
.btn.rust {
    background: var(--rust);
    color: #fff;
}
.btn.rust:hover {
    background: var(--rust-dk);
    transform: translateY(-2px);
}
.btn.outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn.outline-light:hover {
    background: #fff;
    color: var(--ink);
}
.btn.outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn.outline:hover {
    background: var(--ink);
    color: var(--paper);
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    opacity: 0;
    animation: rise 1s ease-out 0.75s forwards;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────── FOREST SECTION ─────────────── */
.forest-section {
    background: var(--forest);
    color: var(--paper);
    padding: 120px 44px 140px;
    position: relative;
    overflow: hidden;
}
.forest-section::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 50%;
    width: 340px;
    height: 340px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23ebe8e5' stroke-width='0.6' opacity='0.18'><path d='M100,20 Q60,60 100,100 Q140,60 100,20 Z'/><path d='M100,30 Q70,65 100,95 Q130,65 100,30'/><path d='M40,100 Q70,140 100,100 Q70,60 40,100'/><path d='M50,100 Q75,130 100,100'/><path d='M160,100 Q130,60 100,100 Q130,140 160,100'/><path d='M150,100 Q125,70 100,100'/><path d='M100,180 Q60,140 100,100 Q140,140 100,180'/><path d='M100,170 Q70,135 100,100'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    transform: translateY(-50%);
    pointer-events: none;
}
.forest-section::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 8%;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23ebe8e5' stroke-width='0.5' opacity='0.15'><circle cx='100' cy='100' r='40'/><path d='M60,100 Q100,40 140,100 Q100,160 60,100'/><path d='M100,60 Q160,100 100,140 Q40,100 100,60'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.forest-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.eyebrow {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(235, 232, 229, 0.75);
    margin-bottom: 30px;
}
.forest-h2 {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    max-width: 780px;
    margin: 0 auto 28px;
}
.forest-h2 em {
    color: #ebe8e5;
}
.forest-p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(235, 232, 229, 0.82);
}
.scroll-arrow {
    margin: 54px auto 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(235, 232, 229, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.scroll-arrow:hover {
    border-color: var(--lavender);
    background: rgba(139, 111, 170, 0.15);
}

/* ─────────────── HERITAGE / WELCOME PHOTO BLOCK ─────────────── */
.heritage {
    background: linear-gradient(
        180deg,
        var(--forest) 0%,
        var(--forest) 28%,
        var(--white) 28%,
        var(--white) 100%
    );
    padding: 0 44px 90px;
    position: relative;
}
.heritage-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
}
.heritage-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.25)
        ),
        url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=80")
            center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.4);
}
.play-btn {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(58, 74, 63, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.play-btn:hover {
    transform: scale(1.1);
    background: var(--lavender);
}
.play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 5px;
}

/* ─────────────── EXPERIENCES ─────────────── */
.experiences {
    background: var(--white);
    padding: 30px 44px 110px;
    position: relative;
}
.experiences::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 6%;
    width: 240px;
    height: 300px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><g fill='none' stroke='%23a8aaa3' stroke-width='0.7' opacity='0.35'><path d='M100,10 C70,40 80,80 100,110 C120,80 130,40 100,10'/><path d='M40,80 C70,90 95,110 100,140 C75,135 50,115 40,80'/><path d='M160,80 C130,90 105,110 100,140 C125,135 150,115 160,80'/><path d='M100,140 L100,240'/><path d='M100,170 L70,200'/><path d='M100,180 L130,210'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.experiences::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 8%;
    width: 220px;
    height: 280px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><g fill='none' stroke='%23a8aaa3' stroke-width='0.7' opacity='0.3'><path d='M100,240 C70,210 80,170 100,140 C120,170 130,210 100,240'/><path d='M40,170 C70,160 95,140 100,110 C75,115 50,135 40,170'/><path d='M160,170 C130,160 105,140 100,110 C125,115 150,135 160,170'/><path d='M100,110 L100,10'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.experiences-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.exp-eyebrow {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 18px;
}
.exp-title {
    font-family: var(--display);
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
    color: var(--ink);
}
.exp-intro {
    max-width: 580px;
    margin: 0 auto 64px;
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
}
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 60px;
}
.exp-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.exp-card:hover {
    transform: translateY(-6px);
}
.exp-img {
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    filter: saturate(0.92) contrast(1.02);
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.35);
}
.exp-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
}
.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.exp-card:hover .exp-img img {
    transform: scale(1.06);
}
.exp-card h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin-bottom: 6px;
}
.exp-card .meta {
    font-family: var(--display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--taupe);
}
.exp-cta {
    margin-top: 14px;
}

/* ─────────────── LOCATION INFO ROW ─────────────── */
.location {
    background: var(--paper-soft);
    padding: 90px 44px;
    border-top: 1px solid var(--bone);
    border-bottom: 1px solid var(--bone);
}
.location-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.location-text .eyebrow {
    color: var(--taupe);
}
.location-h {
    font-family: var(--display);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 200;
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin: 14px 0 22px;
    color: var(--ink);
}
.location-p {
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
    max-width: 480px;
}
.info-list {
    display: grid;
    gap: 0;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--bone);
    font-size: 13.5px;
}
.info-row:last-child {
    border-bottom: none;
}
.info-row .label {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}
.info-row .value {
    color: var(--taupe);
    font-family: var(--display);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

/* ─────────────── DARK CTA / IMMERSE BAND ─────────────── */
.immerse {
    background: var(--forest-deep);
    color: var(--paper);
    padding: 80px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.immerse::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 50%;
    width: 260px;
    height: 260px;
    border: 1px dashed rgba(235, 232, 229, 0.18);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: spin 60s linear infinite;
}
.immerse h3 {
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 200;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: -0.005em;
}
.immerse h3 em {
    color: #ebe8e5;
}

/* ─────────────── AMENITY STRIP ─────────────── */
.amenity-strip {
    background: var(--paper);
    padding: 60px 44px;
    border-bottom: 1px solid var(--bone);
}
.amenity-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.amenity {
    text-align: center;
    cursor: default;
}
.amenity .icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--moss);
    transition: color 0.3s, transform 0.3s;
}
.amenity:hover .icon {
    color: var(--lavender);
    transform: translateY(-3px);
}
.amenity .lbl {
    font-family: var(--display);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--taupe);
}

/* ─────────────── THREE WAYS / ROUTE CARDS ─────────────── */
.routes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 60px auto 0;
}
.route-card {
    border: 1px solid var(--stone-dk);
    text-align: left;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    background: var(--stone);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.route-card:hover {
    background: var(--stone-dk);
    border-color: var(--stone-dk);
    transform: translateY(-4px);
}
.route-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #ddd;
}
.route-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.route-card:hover .route-thumb img {
    transform: scale(1.05);
}
.route-body {
    padding: 30px 28px 30px;
}
.route-card .num {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.32em;
    color: rgba(59, 64, 56, 0.6);
    margin-bottom: 14px;
}
.route-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin-bottom: 12px;
}
.route-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(59, 64, 56, 0.82);
}
.route-card .arrow {
    margin-top: 22px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    font-family: var(--display);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.route-card:hover .arrow {
    gap: 14px;
}

/* ─────────────── WELCOME / HERITAGE SPLIT ─────────────── */
.welcome-split {
    background: var(--white);
    padding: 120px 44px;
}
.welcome-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.welcome-text .eyebrow {
    color: var(--taupe);
    margin-bottom: 18px;
}
.welcome-h {
    font-family: var(--display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 200;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 24px;
}
.welcome-text p {
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
    margin-bottom: 14px;
}
.welcome-img {
    width: 100%;
    aspect-ratio: 4/5;
    background-image: url("../img/initial-sama/welcome.png");
    background-size: 150%;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 80px -30px rgba(59, 64, 56, 0.35);
    position: relative;
    overflow: hidden;
}
.welcome-img::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

/* ─────────────── FOUR PILLARS ─────────────── */
.pillars {
    background: var(--white);
    padding: clamp(64px, 8vw, 100px) 44px clamp(72px, 9vw, 120px);
    border-top: 1px solid var(--bone);
}
.pillars-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.pillars-head {
    margin-bottom: clamp(32px, 5vw, 56px);
    max-width: 880px;
}
.pillars-head .eyebrow {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
}
.pillars-head h2 {
    font-family: var(--display);
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 200;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 18px;
}
.pillars-head p {
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
    max-width: 720px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}
.pillar {
    background: var(--stone);
    color: #fff;
    padding: clamp(28px, 4vw, 44px) clamp(18px, 3.6vw, 32px)
        clamp(24px, 4vw, 40px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.35s ease, transform 0.35s ease;
    cursor: default;
    min-width: 0;
}
.pillar:hover {
    background: var(--stone-dk);
    transform: translateY(-4px);
}
.pillar-icon {
    width: clamp(44px, 7vw, 54px);
    height: clamp(44px, 7vw, 54px);
    margin-bottom: clamp(16px, 3vw, 22px);
    color: #fff;
}
.pillar-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.pillar h3 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(18px, 3.2vw, 24px);
    letter-spacing: clamp(0.08em, 0.7vw, 0.18em);
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #fff;
    overflow-wrap: anywhere;
}
.pillar .descriptor {
    font-family: var(--display);
    font-size: clamp(12px, 2.2vw, 13px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(14px, 3vw, 22px);
    overflow-wrap: anywhere;
}
.pillar p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 30ch;
    overflow-wrap: anywhere;
}

/* ─────────────── APARTMENTS GRID ─────────────── */
.apartments {
    background: var(--paper);
    padding: 120px 44px;
    position: relative;
}
.apartments-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 60px;
}
.section-head .eyebrow {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
}
.section-head .title {
    font-family: var(--display);
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 200;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 22px;
}
.section-head .intro {
    max-width: 620px;
    margin: 0 auto;
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
}
.apt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.apt-card {
    cursor: pointer;
    background: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.apt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -30px rgba(59, 64, 56, 0.3);
}
.apt-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.apt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.apt-card:hover .apt-img img {
    transform: scale(1.05);
}
.apt-info {
    padding: 26px 28px 30px;
    border-top: none;
}
.apt-info h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}
.apt-meta {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
}
.apt-cta {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s, color 0.3s;
}
.apt-card:hover .apt-cta {
    gap: 14px;
    color: var(--rust-dk);
}

/* ─────────────── FACILITIES (forest band) ─────────────── */
.facilities {
    background: var(--forest);
    color: var(--paper);
    padding: 120px 44px;
    position: relative;
    overflow: hidden;
}
.facilities .section-head .eyebrow {
    color: rgba(235, 232, 229, 0.65);
}
.facilities .section-head .title {
    color: #ffffff;
}
.facilities .section-head .intro {
    color: rgba(235, 232, 229, 0.78);
}
.fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 48px;
}
.fac-tile {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}
.fac-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: saturate(0.92);
}
.fac-tile:hover img {
    transform: scale(1.08);
}
.fac-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 25, 22, 0.7));
}
.fac-tile .fac-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--paper);
}
.facilities .center-cta {
    text-align: center;
}
.facilities .btn.outline {
    color: var(--paper);
    border-color: rgba(235, 232, 229, 0.55);
}
.facilities .btn.outline:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}

/* ─────────────── GUEST REVIEWS ─────────────── */
.reviews {
    background: var(--white);
    padding: 120px 44px;
}
.reviews-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.testimonial {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
    padding: 48px 32px;
    border-top: 1px solid var(--bone);
    border-bottom: 1px solid var(--bone);
}
.testimonial .quote {
    font-family: var(--body);
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial .author {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--taupe);
}

/* ─────────────── NEWSLETTER ─────────────── */
.newsletter {
    background: var(--paper);
    padding: 100px 44px;
    text-align: center;
    border-top: 1px solid var(--bone);
}
.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
}
.newsletter h3 {
    font-family: var(--display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 18px;
}
.newsletter p {
    color: var(--moss);
    line-height: 1.85;
    font-size: 14.5px;
    margin-bottom: 32px;
}
.input-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--bone);
    background: var(--white);
}
.input-row input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 22px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    outline: none;
}
.input-row input::placeholder {
    color: var(--taupe);
}
.input-row .btn {
    border: none;
    flex-shrink: 0;
}

/* ─────────────── FOOTER ─────────────── */
footer {
    background: var(--ink);
    color: rgba(235, 232, 229, 0.7);
    padding: 80px 44px 30px;
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-family: var(--display);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 22px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s;
    cursor: pointer;
}
.footer-col a:hover {
    color: var(--rust);
}
.footer-brand {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 18px;
}
.footer-brand small {
    display: block;
    font-family: var(--display);
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 0.32em;
    margin-top: 8px;
    opacity: 0.7;
}
.footer-tag {
    font-family: var(--body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(235, 232, 229, 0.78);
}
.footer-bottom {
    max-width: var(--maxw);
    margin: 0 auto;
    border-top: 1px solid rgba(235, 232, 229, 0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(235, 232, 229, 0.45);
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 980px) {
    .nav-items .nav-link {
        display: none;
    }
    .main-nav {
        padding: 18px 24px;
    }
    .hero-inner {
        padding: 0 24px;
    }
    .hero-content {
        max-width: 100%;
    }
    .forest-section,
    .heritage,
    .experiences,
    .location,
    .immerse,
    .amenity-strip,
    .welcome-split,
    .apartments,
    .facilities,
    .reviews,
    .newsletter,
    .pillars,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    .routes {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .welcome-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .apt-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .location-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .amenity-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 640px) {
    .hero::after {
        background: linear-gradient(
            180deg,
            rgba(20, 25, 22, 0.45) 0%,
            rgba(20, 25, 22, 0.25) 30%,
            rgba(20, 25, 22, 0.55) 100%
        );
    }
    .nav-link {
        color: #3B4038;
    }
}
@media (max-width: 520px) {
    .hero h1 {
        font-size: 44px;
    }
    .forest-h2 {
        font-size: 30px;
    }
    .welcome-h,
    .section-head .title,
    .newsletter h3 {
        font-size: 28px;
    }
    .amenity-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .input-row {
        flex-direction: column;
    }
    .input-row .btn {
        width: 100%;
    }
    .testimonial .quote {
        font-size: 24px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillars-head {
        margin-bottom: 28px;
    }
    .pillars-head p {
        font-size: 14px;
    }
    .pillar p {
        max-width: 42ch;
    }
    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .pillars {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (hover: none) {
    .pillar:hover {
        transform: none;
    }
}
