/* ==========================================================================
   MAISON — Vertical Scroll Reveal (GSAP + ScrollTrigger)
   ========================================================================== */

:root {
    --stone: #f3ede2;
    --ink: #201c18;
    --ink-soft: #4a453e;
    --cream: #faf7f0;
    --terracotta: #b5613f;
    --overlay: 20, 17, 14;
}hozin

@font-face {
    font-family: 'Afterglow';
    src: url('../fonts/Afterglow_Regular/Afterglow-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Luminova';
    src: url('../fonts/luminova/Luminova.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CS Granvile';
    src: url('../fonts/cs-granvile/CSGranvile-Regular_demo-BF6902bfa6c3514.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agatho';
    src: url('../fonts/agatho/Agatho_Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agatho';
    src: url('../fonts/agatho/Agatho_Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agatho';
    src: url('../fonts/agatho/Agatho_Medium.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agatho';
    src: url('../fonts/agatho/Agatho_Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--cream);
    font-family: var(--font-sans);
    /* overflow-x removed from here on purpose: setting overflow on <body>
       breaks position:sticky for direct children (e.g. .heart-frame).
       Horizontal clipping is applied per-section instead — see .page-clip. */
}

body {
    overflow-x: hidden;
}

/* Apply horizontal clipping to individual sections that need it,
   instead of to <body>, so position: sticky keeps working. */
.page-clip {
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
    height: 100vh;
}

img {
    display: block;
    max-width: none;
}

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

::selection {
    background: var(--terracotta);
    color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

/* ==========================================================================
   LOADER
   ========================================================================== */
body.is-loading {
    overflow: hidden;
}

body.is-loading>*:not(#loader) {
    visibility: hidden;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: #F7F2F0;
    background: url('../images/hero/bg-loader.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-mark {
    width: 337px;
    height: auto;
}

.loader-count {
    position: absolute;
    right: 24px;
    bottom: 30px;
    font-family: "Afterglow";
    color: #E7E2E0;
    font-variant-numeric: tabular-nums;
    min-width: 2.4ch;
    text-align: right;
    font-weight: 400;
    font-style: Regular;
    font-size: 264.15px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(20px, 4vw, 48px);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 1s cubic-bezier(.16, .8, .24, 1), transform 1s cubic-bezier(.16, .8, .24, 1);
    mix-blend-mode: difference;
}

.site-nav.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-mark {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .3em;
    color: var(--cream);
}

.nav-links {
    display: flex;
    gap: clamp(16px, 3vw, 36px);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cream);
}

.nav-links a {
    opacity: .85;
    transition: opacity .3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-progress {
    width: 90px;
    height: 1px;
    background: rgba(250, 247, 240, .25);
}

.nav-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--cream);
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-progress {
        width: 50px;
    }
}

/* ==========================================================================
   PINNED VERTICAL STAGE
   One section, pinned for the whole scroll runway. Nothing slides
   left/right anymore — everything happens by layering + reveal.
   ========================================================================== */

.pin-wrap {
    position: relative;
    /* No fixed height here on purpose. This wraps a single 100vh .stage,
       so its natural document height is just 100vh. ScrollTrigger's
       `pin: stage` + the `end` value in script.js is what actually
       creates the scroll runway (via its own auto pin-spacer). Giving
       this element its own large height too double-counted the scroll
       distance and let .after creep into view before the sequence
       actually finished. */
}

.stage {
    /* No CSS sticky/fixed here on purpose — ScrollTrigger's `pin: stage`
       takes over positioning at runtime. Predefining sticky would fight
       it and cause a flash before JS initializes. */
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    will-change: filter, transform;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* stronger version used once the collage/polaroid stage kicks in —
   toggled purely with opacity from script.js, no separate element needed */
.overlay.is-strong {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    backdrop-filter: blur(10px);
}

/* ---- shared copy blocks ---- */

.panel-copy {
    /* position: relative; */
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panel-copy h1,
.panel-copy h2 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--cream);
    margin: 0 0 16px;
}

#s2-h1 {
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.22;
    letter-spacing: 0%;
    text-align: center;
    max-width: 882px;
}

.panel-copy p {
    color: #fff;
    max-width: 542px;
    margin: 0;
    font-family: "Agatho";
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.panel-copy em {
    font-style: italic;
    color: var(--cream);
}

.tick {
    display: block;
    width: 2px;
    height: 80px;
    border: 2px solid #FFFFFF;
    margin-top: 22px;
    background: rgba(250, 247, 240, .4);
    position: absolute;
    bottom: 30px;
}

.panel-copy-small {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.panel-copy-small h2,
.panel-copy-small p {
    opacity: 0;
    /* GSAP-driven; CSS default prevents a flash before JS runs */
}

.panel-copy-small h2 {
    font-family: 'CS Granvile';
    font-weight: 400;

    letter-spacing: 0%;
    text-align: center;
    max-width: 882px;
    margin: 0 auto 14px;
    font-weight: 400;
    font-size: clamp(30px, 6vw, 60px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.panel-copy-small p {
    color: #fff;
    max-width: 542px;
    margin: 0 auto;
    font-family: "Agatho";
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.panel-copy-center {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.panel-copy-center h2 {
    opacity: 0;
    /* GSAP-driven; CSS default prevents a flash before JS runs */
}

.panel-copy-center h2 {
    max-width: 770px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: clamp(30px, 6vw, 60px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

/* ==========================================================================
   POLAROID STACK — rises up from below the viewport on scroll
   (positions unchanged from your original design; script.js adds an
   extra downward offset on top of these for the "rise from bottom" entrance)
   ========================================================================== */

.polaroid-stack {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -9%;
    width: min(520px, 56vw);
    height: min(280px, 32vw);
    transform: translateX(-50%);
    pointer-events: none;
}

.polaroid {
    position: absolute;
    width: 44%;
    object-fit: cover;
    box-shadow: 0 24px 48px -14px rgba(0, 0, 0, .55);
    opacity: 0;
}

.polaroid[data-el="s3-p1"] {
    left: 0%;
    width: 610px;
    bottom: -84%;
    height: 500px;
}

.polaroid[data-el="s3-p2"] {
    left: 15%;
    bottom: -93%;
    z-index: 2;
    width: 496px;
    height: 475px;
}

.polaroid[data-el="s3-p3"] {
    left: 45%;
    bottom: -90%;
    width: 420px;
    height: 475px;
}

@media (max-width: 640px) {
    .polaroid-stack {
        left: 58%;
        bottom: -5%;
        height: min(220px, 46vw);
    }
}

/* ==========================================================================
   PHOTO COLLAGE — rises up from below the viewport on scroll
   ========================================================================== */

.collage {
    position: absolute;
    inset: clamp(16px, 3vw, 40px);
    z-index: 1;
}

.collage-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, .5);
    opacity: 0;
}

.collage-img[data-el="s4-tl"] {
    left: 0;
    top: -26%;
    width: 496px;
    height: 456px;
}

.collage-img[data-el="s4-tr1"] {
    right: -6%;
    top: -34%;
    width: 463px;
    height: 469px;
}

.collage-img[data-el="s4-bl"] {
    left: -7%;
    bottom: -35%;
    width: 438px;
    height: 505px;
}

.collage-img[data-el="s4-br"] {
    right: -6%;
    bottom: 0;
    width: 440px;
    height: 345px;
}

@media (max-width: 640px) {
    .collage {
        inset: 10px;
    }

    .collage-img[data-el="s4-tl"] {
        width: 58%;
        height: 34%;
    }

    .collage-img[data-el="s4-tr1"] {
        right: 0;
        width: 40%;
        height: 20%;
    }

    .collage-img[data-el="s4-bl"] {
        width: 26%;
        height: 22%;
    }

    .collage-img[data-el="s4-br"] {
        width: 45%;
        height: 22%;
    }
}

/* ==========================================================================
   CLOSING SECTION
   ========================================================================== */

.after {
    position: relative;
    background: var(--stone);
    color: var(--ink);
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 60px 24px;
}

.after-eyebrow {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0;
}

.after h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(24px, 4vw, 44px);
    max-width: 18ch;
    margin: 0;
}

.after-cta {
    margin-top: 12px;
    padding: 14px 30px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease;
}

.after-cta:hover {
    background: var(--ink);
    color: var(--cream);
}


/* ==========================================================================
   MAISON — Intro / About section
   Fonts assume 'CS Granvile' and 'Agatho' are already loaded on the page
   (same @font-face declarations as your hero section).
   ========================================================================== */

.intro * {
    box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {

    .intro,
    .intro * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

.intro {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* crops the mark's bleed off the left/bottom edges */
    display: flex;
    align-items: center;
    background: url('../images/hero/bg-pattern.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    font-family: 'Agatho', sans-serif;
}

.intro-inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 200px auto 200px;
    padding: 0 clamp(24px, 6vw, 90px);
    display: flex;
    grid-template-columns: 0.6fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    justify-content: end;
}

/* ---- monogram mark (parallax target) ---- */

.intro-mark-wrap {
    position: absolute;
    height: clamp(340px, 54vw, 580px);
    margin-left: clamp(-140px, -10vw, -40px);
    left: 0%;
}

.intro-mark {
    /* position: absolute;
    left: -47%; */
    /* bottom: clamp(-40px, -4vw, -10px); */
    height: 500px;
    width: 100%;
    color: #c9c2b6;
    opacity: 0;
    will-change: transform, opacity;
}

/* ---- copy column ---- */

.intro-copy {
    position: relative;
    z-index: 2;
}

.intro-kicker {
    display: inline-block;
    font-family: 'Agatho', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #6b6660;
    margin-bottom: 36px;
    opacity: 0;
    will-change: transform, opacity;
}

.intro-heading {
    font-family: 'CS Granvile', serif;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.3;
    margin: 0 0 52px;
    max-width: 663px;
    color: #000;
    opacity: 0;
    will-change: transform, opacity;
}

.intro-heading em {
    font-style: italic;
    color: #5f7488;
    /* muted blue-gray, matches "prestigious hotel" in the reference */
}

.intro-desc {
    font-family: 'CS Granvile', serif;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.3;
    margin: 0 0 52px;
    max-width: 663px;
    color: #5f7488;
    will-change: transform, opacity;
}

/* ---- word-by-word scroll fill ---- */

.intro-desc .word {
    display: inline-block;
    color: #5f7488;
    /* dim / "unfilled" state — tune to taste */
    will-change: color;
}

/* .intro-heading em {
    font-style: italic;
    color: #5f7488;
} */

.intro-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0px;
    border-bottom: 1px solid #435B70;
    min-width: 143px;
    justify-content: space-between;
    font-family: "Darker Grotesque", sans-serif;
    font-weight: 700;
    font-size: 11px;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: CAP_HEIGHT;
    line-height: 117%;
    letter-spacing: 0%;
    text-transform: uppercase;
    opacity: 0;
    will-change: transform, opacity;
}

.intro-cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #5f7488;
    transform-origin: left;
    transition: transform .45s cubic-bezier(.16, .8, .24, 1);
}

.intro-cta:hover::after {
    transform: scaleX(1.2);
}

.intro-cta svg {
    transition: transform .45s cubic-bezier(.16, .8, .24, 1);
}

.intro-cta:hover svg {
    transform: translate(2px, -2px);
}

/* ---- responsive ---- */

@media (max-width: 860px) {
    .intro-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        padding-top: 0px;
        margin: 100px auto 100px;
        gap: 50px
    }

	p.kh-para{
		    font-size: 21px;
	}
    .intro-mark-wrap {
        position: relative;
        top: 0;
        left: 0%;
        right: 0;
        height: auto;
        margin-left: 0px;
    }

    .intro-mark {
        height: 300px;
    }

    .pxl-row,
    .pxl-row2 {
        margin-top: 10px !important;
    }

    .pxl-col-text {
        padding-left: 0px !important;
    }
	.pxl-headline,
	.memories h1.headline{
		font-size:22px;
	}
	.pxl-body,
	.emerald .side-text{
		    font-size: 19px;
	}
	.pxl-heading-serif,
	.caption{
		font-size:22px;
	}
    .loader-count {
        font-size: 100px;
    }

    .pxl-section {
        padding: 62px 20px 50px !important;
    }

    .intro-copy {
        text-align: left;
    }
}


.pxl-section {
    position: relative;
    margin: 0 auto;
    padding: 62px 62px 157px;
    overflow: hidden;
    background: url('../images/hero/bg-pattern.jpg');
    color: #2a2622;
}

/* ---------- Row 1 ---------- */
.pxl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}
.pxl-col-text {
    padding-left: 100px;
}

.pxl-col-media {
    /* margin-top: 150px; */
}

.pxl-eyebrow {
    color: #435B70;
    margin: 0 0 25px;
    font-family: 'Darker Grotesque';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: CAP_HEIGHT;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;

}

.pxl-headline {
    margin: 0 0 97px;
    max-width: 414px;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    leading-trim: CAP_HEIGHT;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.pxl-body {
    color: #000;
    max-width: 440px;
    margin: 0 0 30px;
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 23px;
    line-height: 120%;
    letter-spacing: 0%;
}
.pxl-cta {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-family: 'Darker Grotesque';
    font-size: 16px;
    letter-spacing: .12em;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    padding: 20px 0px;
    border-bottom: 1px solid #c9c1b3;
    width: max-content;
}
.pxl-cta svg {
    width: 17px;
    height: 17px;
    transition: transform .3s ease;
}
.pxl-cta:hover svg {
    transform: translate(2px, -2px);
}

/* ---------- Media (boxed + cropped, matching the reference exactly) ---------- */
.pxl-media {
    overflow: hidden;
    /* belt-and-suspenders crop, in case parallax-frame isn't the only ancestor */
    position: relative;
}

.parallax-frame {
    position: relative;
    overflow: hidden;
    /* crops the oversized image — this is what makes motion visible */
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.parallax-frame img {
    position: absolute;
    top: -15%;
    /* oversized + centered so it can slide without leaving gaps */
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    /* establishes its own compositor layer */
}

.pxl-media img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills the exact box from the reference design at rest */
    will-change: transform;
    transform: translateY(0px);

}

.pxl-media img {
    /* transition: transform 0.15s linear; */
}

.pxl-media--tall {
    width: 589px;
    height: 760px;
}

/* matches the tall interior shot's proportions */
.pxl-media--portrait {
    width: 600px;
    height: 650px;
}


.pxl-media--wide {
    height: 600px;
    max-width: 900px;
    margin: 50px auto 0;
}

/* ---------- Row 2 (offset / staggered like the reference) ---------- */
.pxl-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    margin: 0 auto;
    align-items: start;
    max-width: 1440px;
}
.pxl-row2 .pxl-col-text {
    padding-top: 220px;
}

.pxl-italic {
    font-style: italic;
}
.pxl-heading-serif {
    margin: 0 0 24px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: 44px;
    max-width: 600px;
    line-height: 110%;
    letter-spacing: 0%;
}

.pxl-full-media {
    margin-top: 0px;
}

/* ---------- Scroll reveal (text) ---------- */
.pxl-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}

.pxl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pxl-reveal-group>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}

.pxl-reveal-group.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.pxl-reveal-group.is-visible>*:nth-child(1) {
    transition-delay: .02s;
}

.pxl-reveal-group.is-visible>*:nth-child(2) {
    transition-delay: .12s;
}

.pxl-reveal-group.is-visible>*:nth-child(3) {
    transition-delay: .22s;
}

.pxl-reveal-group.is-visible>*:nth-child(4) {
    transition-delay: .32s;
}

.pxl-media.pxl-reveal {
    transform: translateY(50px);
}

.pxl-media.pxl-reveal.is-visible {
    transform: translateY(0);
}

@media (max-width:860px) {

    .pxl-row,
    .pxl-row2 {
        grid-template-columns: 1fr;
    }

    .pxl-row2 .pxl-col-text {
        padding-top: 0;
        margin-top: 0px !important;
    }

    .pxl-full-media {
        margin-top: 0px !important;
    }

    .s1-copy h1 {
        font-size: 40px !important;
    }

    .pxl-media--tall {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 589 / 760;
        margin: 0 auto;
    }

    .pxl-media--portrait {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 600 / 650;
        margin-left: auto;
        margin-right: auto;
    }

    .pxl-media--wide {
        margin: 40px auto 0;
        max-width: 100%;
    }

    .pxl-headline {
        margin-bottom: 20px;
    }

    .img-main,
    .img-side {
        width: 100% !important;
        height: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pxl-reveal,
    .pxl-reveal-group>*,
    .pxl-media img {
        transition: none !important;
    }

    .pxl-media img {
        transform: none !important;
    }
}

/* [data-reveal-words] .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.16,.8,.24,1),
                transform .6s cubic-bezier(.16,.8,.24,1);
}

[data-reveal-words].is-visible .word {
    opacity: 1;
    transform: translateY(0);
} */


/* ==========================================================================
   GARDEN — expanding panel reveal
   ========================================================================== */

.garden-pin {
    position: relative;
}

.garden-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.garden-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.garden-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 72%;
    background: #3c4a5a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .4);
}

.garden-copy {
    position: relative;
    z-index: 3;
    max-width: 455px;
    padding: 0px;
    text-align: center;
    color: #fff;
}
.garden-side-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.garden-side-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.garden-copy h2 {
    margin: 0 0 40px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(26px, 5vw, 50px);
    leading-trim: NONE;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
}

.garden-copy h2 em {
    font-style: italic;
}

.garden-copy p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
    font-family: Agatho;
    font-weight: 400;
    font-size: 23px;
    line-height: 148%;
    letter-spacing: 0%;
    text-align: center;
}
.garden-cta {
    margin-top: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    opacity: 0;
    /* JS/GSAP fades this in once the box is full-bleed */

}

.garden-cta svg {
    width: 17px;
    height: 17px;
}

.garden-tick {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
}

/* .garden-side-img{
    position:absolute;
    top:50%;
    width:32%;
    height:50%;
    object-fit:cover;
    transform:translateY(-50%);
    opacity:0;
    z-index:2;
    
} */
.garden-side-img.garden-side-left {
    left: 34px;
    position: absolute;
    bottom: 36px;
    width: 399px;
    height: 462px;
    object-fit: cover;
    transform: translateY(0%);
    opacity: 0;
    z-index: 2;
}

.garden-side-img.garden-side-right {
    right: 34px;
    position: absolute;
    top: 36px;
    width: 420px;
    height: 488px;
    object-fit: cover;
    transform: translateY(0%);
    opacity: 0;
    z-index: 2;
}

@media (max-width:860px) {

    .garden-stage {
        height: auto;
        /* allow natural height */
        padding: 40px 20px;
    }

    .garden-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;

        width: 100%;
        height: auto;
        min-height: 100vh;

        padding: 60px 40px;
    }

    .garden-copy {
        max-width: 100%;
    }

    .garden-cta {
        opacity: 1 !important;
        transform: none !important;
    }

    .garden-tick {
        opacity: 1 !important;
    }

    .garden-bg {
        position: absolute;
        opacity: 1;
    }

    .garden-side-img {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .garden-stage {
        height: auto;
    }

    .garden-box {
        position: relative;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .garden-bg {
        opacity: 1;
    }

    .garden-side-img,
    .garden-cta,
    .garden-tick {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   MEMORY — sketch + quote + photo pair section
   ========================================================================== */

.memory {
    position: relative;
    background: url('../images/hero/bg-pattern.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--ink);
    padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 64px) clamp(90px, 10vw, 140px);
}

.memory-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- sketch (parallax target #1) ----
   overflow:hidden + aspect-ratio give the oversized image a real box to
   clip against; the img itself is absolutely positioned and oversized so
   translateY has room to move without revealing empty edges. */

.memory-sketch-wrap {
    margin-bottom: clamp(40px, 6vw, 64px);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    /* tune to your actual sketch art's proportions */
}

.memory-sketch {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

.memory-photo {
    overflow: hidden;
    /* background: #ddd6c8; */
    position: relative;
}

.memory-photo img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    /* was 100% — flush-fit images have nowhere to travel */
    object-fit: cover;
    will-change: transform;
}

.memory-quote {
    margin: 0 auto;
    max-width: 913px;
    color: #000;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: italic;
    font-size: 28px;
    line-height: 166%;
    letter-spacing: 0%;
}

.memory-label {
    max-width: 913px;
    margin: 40px auto 102px;
}

.memory-eyebrow {
    color: #435B70;
    margin: 0 0 16px;
    font-family: 'Darker Grotesque';
    font-weight: 600;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;
}

.memory-heading {
    color: #000;
    margin: 0;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.memory-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

/* ---- photos (parallax targets #2 and #3) ----
   position:relative on the frame + absolute/oversized img, same pattern
   as the sketch above. height:140% (was 100%) is what actually gives the
   parallax something to reveal — a flush-fit image has nowhere to travel. */

.memory-photo {
    overflow: hidden;
    /* background: #ddd6c8; */
    position: relative;
}

.memory-photo img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

.memory-photo--main {
    width: 723px;
    margin-left: -24%;
    height: 423px;
    margin-top: 170px;
}

.memory-copy-col {
    display: flex;
    flex-direction: column;
}

.memory-photo--small {
    width: 263px;
    margin: 0 0 24px auto;
    height: 329px;
}

.memory-desc {
    color: #000;
    margin: 120px 0 50px;
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}

.memory-cta {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    align-self: flex-start;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #435B70;
    padding: 20px 0px;
    border-bottom: 1px solid #435B70;
}

.memory-cta svg {
    width: 16px;
    height: 16px;
}

/* ---- word-by-word reveal ----
   Applied by JS: each word gets wrapped in <span class="word">. Starts
   hidden/offset here; JS/GSAP animates opacity + y to 1 / 0 on scroll. */

[data-el="memory-quote"] .word,
[data-el="memory-desc"] .word,
.memory-eyebrow .word,
.memory-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
}

@media (prefers-reduced-motion: reduce) {

    [data-el="memory-quote"] .word,
    [data-el="memory-desc"] .word,
    .memory-eyebrow .word,
    .memory-heading .word,
    .memory-sketch-wrap,
    .memory-photo--main,
    .memory-photo--small,
    .memory-cta {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width:760px) {
    .memory-row {
        grid-template-columns: 1fr;
    }

    .memory-photo--main {
        width: 100%;
        margin-left: 0;
        height: auto;
        aspect-ratio: 723 / 423;
        margin-top: 40px;
    }

    .memory-photo--small {
        margin: 0 0 20px 0;
        max-width: 180px;
    }

    .memory-desc,
    .memory-cta {
        text-align: left;
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    .memory-sketch-wrap,
    .memory-quote,
    .memory-label,
    .memory-photo--main,
    .memory-photo--small,
    .memory-desc,
    .memory-cta,
    [data-el="memory-quote"] .word,
    [data-el="memory-desc"] .word,
    .memory-eyebrow .word,
    .memory-heading .word {
        opacity: 1 !important;
        transform: none !important;
    }
}

.hotel-feature {
    position: relative;
    /* max-width: 1440px; */
    margin: 0 auto;
    background: #fff;
    padding: 158px 62px;
    overflow: visible;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7c8a6e;
    margin: 0 0 14px;
}

/* ---------- Intro headline ---------- */
.feature-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 90px;
}

.feature-intro .eyebrow {
    text-align: center;
}

.headline {
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 100%;
    color: #000;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}

.headline em {
    font-style: italic;
    font-weight: 500;
    color: #5c7a87;
}

/* the whole intro reveals on scroll-in, reverses on scroll-out */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(.22, .61, .36, 1), transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

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

.reveal.delay-1.in-view {
    transition-delay: 0.08s;
}

.reveal.delay-2.in-view {
    transition-delay: 0.16s;
}

.reveal.delay-3.in-view {
    transition-delay: 0.24s;
}

/* ---------- Collage grid ---------- */
.feature-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin: 0 auto;
    align-items: start;
    max-width: 1440px;
}

.story-copy .eyebrow {
    color: #435B70;
    margin: 0 0 14px;
    font-family: 'Darker Grotesque';
    font-weight: 600;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.story-copy h3 {
    color: #000;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 22px;
    width: 414px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    margin: 0 0 38px;
    text-transform: uppercase;
}

.story-text {
    font-family: 'Agatho';
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    max-width: 440px;
}

/* ---------- Photo cards ---------- */
.photo {
    margin: 0;
    position: relative;
    background: var(--paper);
    /* padding:8px 8px 0;
    box-shadow:0 30px 60px -30px rgba(36,37,31,0.28); */
    border-radius: 2px;
    will-change: transform;
}

.photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
}

.photo figcaption {
    padding: 14px 4px 16px;
}

.cap-eyebrow {
    display: block;
    font-family: 'CS Granvile';
    font-style: italic;
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 2px;
}

.cap-title {
    display: block;
    font-family: 'Darker Grotesque';
    font-size: 19px;
    color: #000;
    margin-bottom: 10px;
}

.cap-meta {
    display: block;
    font-family: 'Afterglow';
    font-size: 12px;
    /* letter-spacing: 0.12em; */
    text-transform: uppercase;
    color: #000;
}

/* column A : kitchen (top) + house (bottom-left, offset) */
.col-a {
    position: relative;
    z-index: 1;
}

.photo--kitchen {
    height: 503px;
    width: 100%;
}

.photo--house {
    height: 519px;
    width: 435px;
    margin-top: 180px;
}

/* column B : eyebrow/copy (top) then living-room photo overlapping upward */
.col-b {
    position: relative;
    padding-top: 2vh;
}

.photo--living {
    height: 508px;
    width: 661px;
    margin-left: -23%;
    margin-top: 21%;
    z-index: 3;
}

.story-footer p {
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    max-width: 602px;
    margin: 26px 0 53px -20%;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 16px;
    line-height: 117%;
    text-transform: uppercase;
    color: #5c7a87;
    text-decoration: none;
    padding: 20px 0px;
    transition: border-color 0.3s ease, gap 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid rgba(36, 37, 31, 0.14);
    margin-left: -20%;
}

.cta:hover {
    gap: 12px;
    border-color: #5c7a87;
    color: #24251f;
}

.cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 860px) {
    .hotel-feature {
        padding: 90px 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    .story-copy h3 {
        width: 100%;
        max-width: 100%;
    }

    .photo--kitchen,
    .photo--house,
    .photo--living {
        width: 100%;
        margin: 0 0 22px;
        height: 260px;
    }

    .col-b {
        padding-top: 0;
    }

    .story-footer p,
    .cta {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo {
        transform: none !important;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}


/* ==========================================================================
   GALLERY — intro copy + main viewer + thumbnail strip
   ========================================================================== */

.gallery {
    position: relative;
    background: #fff;
    color: var(--ink);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 48px) clamp(70px, 8vw, 110px);
}

.gallery-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-tick {
    display: block;
    width: 1px;
    height: 60px;
    background: #9aa6ae;
    margin-bottom: 0;
    position: relative;
}

.gallery-tick i {
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5f7488;
    display: block;
}

.gallery-eyebrow {
    margin: 20px 0 4px;
    color: #435B70;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Italic;
    font-size: clamp(26px, 5vw, 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.gallery-heading {
    margin: 20px 0 0 0;
    max-width: 640px;
    color: #000;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: clamp(26px, 5vw, 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.gallery-viewer {
    position: relative;
    margin-bottom: 20px;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1180 / 660;
    overflow: hidden;
    /* background: #e7e2d8; */
}

.gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    z-index: 2;
}

.gallery-arrow svg {
    width: 22px;
    height: 22px;
}

.gallery-arrow--prev {
    left: -60px;
}

.gallery-arrow--next {
    right: -60px;
}

.gallery-arrow:hover {
    opacity: .6;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    margin-bottom: clamp(32px, 5vw, 60px);
}

.gallery-thumb {
    padding: 0;
    border: 2px solid #435B701C;
    background: none;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
    transition: border-color .25s ease, opacity .25s ease;
    opacity: .65;
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.is-active {
    opacity: 1;
    border-color: #5f7488;
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: max-content;
    margin: 0 auto;
    color: #5f7488;
    padding: 20px 0px;
    font-family: Darker Grotesque;
    font-weight: 700;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: 0%;
    text-transform: uppercase;
    border-bottom: 1px solid #435B70;
}

.gallery-cta svg {
    width: 12px;
    height: 12px;
}

@media (max-width:760px) {
    .gallery-thumbs {
        grid-template-columns: repeat(5, 1fr);
    }

    .gallery-arrow--prev {
        left: 4px;
    }

    .gallery-arrow--next {
        right: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gallery-intro,
    .gallery-viewer,
    .gallery-thumbs,
    .gallery-cta {
        opacity: 1 !important;
        transform: none !important;
    }
}

.estate {
    position: relative;
    background: #3c4a5a;
    color: #fff;
    padding: clamp(60px, 8vw, 135px) clamp(20px, 6vw, 56px) clamp(90px, 18vw, 360px);
}

.estate-inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* ---------- Top heading ---------- */

.estate-heading {
    text-align: center;
    max-width: 639px;
    margin: 0 auto clamp(50px, 7vw, 80px);
}

.estate-heading-text {
    color: rgba(255, 255, 255, .92);
    margin: 0;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(28px, 5vw, 48px);
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.estate-heading-text em {
    font-style: italic;
}

/* ---------- Plan + copy row ---------- */

.estate-plan-row {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.estate-plan-wrap {
    position: relative;
    /* CRITICAL FIX: grid items default to a min-width equal to their
       content's intrinsic size, and an <img> reports its full natural
       pixel width as that intrinsic size — even with width:100% on the
       image itself. Without this, the image was forcing this grid
       track (and the whole row) to blow out far past the section,
       swallowing the viewport and pushing the heading/walk-card off
       screen. min-width:0 lets the item actually shrink to its track. */
    min-width: 0;
    overflow: hidden;
    /* gives the image a real, bounded box to sit in (same pattern as
       .stack-photo / .memory-photo elsewhere in this file) instead of
       an unconstrained height:auto that let it balloon */
    aspect-ratio: 4 / 3;
}

.estate-plan-copy {
    /* same fix on the other column, so it can't blow out either if its
       content (e.g. a long word) is ever wider than the track */
    min-width: 0;
    padding-top: 200px;
}

.estate-plan-img {
    display: block;
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    opacity: .9;
    will-change: transform;
}

.estate-eyebrow {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 6px;
}

.estate-copy-heading {
    color: rgba(255, 255, 255, .85);
    margin: 0 0 100px;
    max-width: 414px;
    font-family: Darker Grotesque;
    font-weight: 700;
    font-size: 22px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.estate-desc {
    color: rgb(255 255 255);
    max-width: 440px;
    margin: 0 0 31px;
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 18px;
    line-height: 127%;
    letter-spacing: 0%;
}

.estate-cta {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    color: #fff;
    padding: 20px 0px;
    border-bottom: 1px solid #fff;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.estate-cta svg {
    width: 16px;
    height: 16px;
}

/* ---------- Floating "walk time" card ---------- */

.estate-walk-card {
    position: absolute;
    right: 99px;
    bottom: -250px;
    height: 700px;
    width: 700px;
    background: #fff;
    color: #000;
    padding: 77px 67px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
    z-index: 3;
}

.walk-eyebrow {
    font-family: 'Darker Grotesque';
    font-weight: 600;
    color: #435B70;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: CAP_HEIGHT;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;
    margin-bottom: 25px;

}

.walk-heading {
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;

}

.walk-circle {
    width: 314px;
    height: 314px;
    border-radius: 50%;
    border: 0.63px solid #435B70;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
}

.walk-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: -20px;
}

.walk-number em {
    font-family: 'Agatho';
    font-weight: 400;
    font-style: Italic;
    font-size: 147.29px;
    color: #435B70;
    line-height: 100%;
    letter-spacing: 0%;
}

.walk-number small {
    color: #435B70;
    font-family: CS Granvile;
    font-weight: 400;
    font-style: Italic;
    font-size: 34.94px;
    line-height: 100%;
    letter-spacing: 0%;
}

.walk-caption {
    margin: 0;
    color: #26241F;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-style: Bold;
    font-size: 33px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.walk-caption strong {
    font-weight: 700;
}

/* ---------- Stacking photo pair ---------- */

.estate-stack {
    position: relative;
    /* was clamp(320px, 40vw, 480px) — far shorter than the photos it
       contains, which are absolutely positioned and don't add to a
       parent's height. ScrollTrigger uses this box's real height to
       compute start/end, so the old short box made the scrub
       animation finish almost instantly, then sit frozen for the
       rest of the scroll. Sized to actually wrap photo A + photo B. */
    height: clamp(640px, 48vw, 760px);
}

.stack-photo {
    position: absolute;
    overflow: hidden;
    /* box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .5); */
    will-change: transform;
}

.stack-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-photo--a {
    left: 0;
    top: 0;
    width: 509px;
    height: 599px;
    z-index: 2;
    margin-top: 90px;
}

.stack-photo--b {
    right: 0;
    /* was `top: 129%` — a percentage of the (broken) short container,
       which made the container's real height depend on itself. Fixed
       px value so it's decoupled from that circularity. */
    top: 235px;
    width: 433px;
    height: 395px;
    z-index: 1;
}

@media (max-width: 860px) {
    .estate-plan-row {
        grid-template-columns: 1fr;
    }

    .estate-plan-copy {
        padding-top: 30px;
    }

    .estate-copy-heading {
        margin-bottom: 40px;
    }

    .estate-walk-card {
        position: static;
        margin: 30px auto 0;
        width: 100%;
        max-width: 420px;
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 40px 28px;
    }

    .walk-circle {
        width: 200px;
        height: 200px;
    }

    .walk-caption {
        font-size: 20px;
    }

    .estate-stack {
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stack-photo {
        position: static;
        width: 100% !important;
        height: 400px !important;
        margin-top: 20px !important
    }

    .stack-photo--b {
        margin-top: 120px !important;
    }
}

/* ---------- Reveal / motion safety ---------- */

@media (prefers-reduced-motion: reduce) {

    [data-reveal-group]>*,
    .estate-plan-img,
    .stack-photo {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* ============ CLOUD REVEAL SECTION — STYLES ============ */

/* ---- Pin driver ----
   Tall scroll track. Its height controls how long the section stays
   stuck on screen while clouds clear, then the photo zooms in. */
.pin-driver {
    position: relative;
    width: 100%;
    height: 340vh;
    background: #12140f;
}

/* ---- Sticky frame ----
   Stays fixed in the viewport for the entire scroll distance of
   .pin-driver, then releases naturally when the driver ends. */
.heart-frame {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* image scale + clouds are clipped here, nothing escapes */
}

.heart-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--img-scale, 1));
    transform-origin: center center;
    will-change: transform;
}

/* ---- Cloud layers: inline SVG, no external files needed ---- */
.cloud {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    will-change: transform, opacity;
}

.cloud-top {
    top: -40%;
    left: -20%;
    width: 70%;
    height: 55%;
    transform: translate3d(var(--top-x, 0), 0, 0);
    opacity: var(--top-o, 1);
}
.cloud-top img {
    width: 1900px;
    height: 900px;
    object-fit: cover;
}
.cloud-bottom {
   bottom: 0%;
    right: 0%;
    width: 70%;
    height: 55%;
    transform: translate3d(var(--bottom-x, 0), 0, 0);
    opacity: var(--bottom-o, 1);
}
.cloud-bottom img {
    width: 1900px;
    height: 900px;
    object-fit: cover;
}


/* .cloud svg,
.cloud img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    object-fit: contain;
} */

@media (prefers-reduced-motion: reduce) {
    .heart-photo {
        transform: none !important;
    }

    .cloud {
        transform: none !important;
        opacity: 0 !important;
    }
}




.property {
    margin: 0 auto;
    padding: 90px 40px 120px;
    background: url('../images/hero/bg-pattern.jpg');
}

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

/* ---------- Top strip image ---------- */

/* ---------- Heading ---------- */
.property .eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: #6f6c66;
    display: flex;
    font-weight: 500;
    margin: 0 auto 36px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

.property h1.headline {
    max-width: 663px;
    margin: 0 auto 96px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Italic;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.property h1.headline span {
    display: block;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}

.property h1.headline.in-view span {
    opacity: 1;
    transform: translateY(0);
}

.property h1.headline span.accent {
    color: #435B70;
}

.property h1.headline span:nth-child(2) {
    transition-delay: .12s;
}

/* ---------- Table ---------- */
.unit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.unit-table thead th {
    font-family: 'Luminova';
    font-weight: 900;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;

    text-align: left;
    font-family: 'Luminova';
    font-weight: 600;
    color: #000000;
    padding: 0 18px 18px 18px;
    border-bottom: 1px solid #000000;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
}

.unit-table thead.in-view th {
    opacity: 1;
    transform: translateY(0);
}

.unit-table tbody td {
    padding: 40px 18px;
    border-bottom: 1px solid #d8d3c9;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Darker Grotesque';
    vertical-align: middle;
}

.unit-table tbody tr {
    transition: background .25s ease,
        opacity .6s cubic-bezier(.22, .61, .36, 1),
        transform .6s cubic-bezier(.22, .61, .36, 1);
    opacity: 0;
    transform: translateY(22px);
}

.unit-table tbody tr.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* staggered delay per row */
.unit-table tbody tr:nth-child(1) {
    transition-delay: .05s;
}

.unit-table tbody tr:nth-child(2) {
    transition-delay: .13s;
}

.unit-table tbody tr:nth-child(3) {
    transition-delay: .21s;
}

.unit-table tbody tr:nth-child(4) {
    transition-delay: .29s;
}

.unit-table tbody tr:nth-child(5) {
    transition-delay: .37s;
}

.unit-table tbody tr:hover {
    background: #ffffff;
}

.unit-table tbody tr.is-active {
    background: #ffffff;
}

.status {
    color: #3f7a4f;
}

.dl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    border-bottom: 1px solid #1c1c1a;
    padding-bottom: 2px;
    font-family: 'CS Granvile';
    font-weight: 900;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: none;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.dl svg {
    width: 14px;
    height: 14px;
}

/* Explicit stacking order: text content always sits above the gallery
   images now that the images continuously drift via [data-speed] parallax
   and can shift outside their original box on scroll. */
.property .eyebrow,
.property h1.headline,
.property .unit-table,
.property .caption,
.property .inquiry {
    position: relative;
    z-index: 2;
}

/* ---------- Gallery ---------- */
.property .gallery {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 90px;
    padding: 0px;
    background: none;
    align-items: start;
    position: relative;
    z-index: 1;
}

.property .reveal-img {
    overflow: hidden;
    position: relative;
}

.property .reveal-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* start pushed down and hidden — slides UP into place on reveal */
    transform: translateY(65%);
    opacity: 0;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1), opacity 1s cubic-bezier(.22, .61, .36, 1);
    will-change: transform, opacity;
}

.property .reveal-img.in-view img {
    transform: translateY(0);
    opacity: 1;
}

.img-kitchen {
    height: 519px;
    width: 399px;
}


.img-courtyard {
    height: 582px;
    width: 800px;
    position: absolute !important;
    right: -40px;
    margin-top: 100px;
}

/* stagger the two images slightly */
.img-kitchen img {
    transition-delay: 0s;
}

.img-courtyard img {
    transition-delay: .15s;
}

/* ---------- Caption / CTA ---------- */
.caption {
    text-align: center;
    max-width: 662px;
    margin: 250px auto 0;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 25px;
    color: #000;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}


.property .inquiry {
    display: flex;
    justify-content: center;
    margin-top: 41px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1) .1s, transform .8s cubic-bezier(.22, .61, .36, 1) .1s;
}

.property .inquiry a {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-family: 'Darker Grotesque';
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 1px solid #1c1c1a;
    padding: 20px 0px;
}

.property .inquiry svg {
    width: 21px;
    height: 21px;
    transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.property .inquiry a:hover svg {
    transform: translate(3px, -3px);
}

/* ---------- reveal trigger state (applies to text blocks) ---------- */
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .property {
        padding: 60px 22px 80px;
    }

    .property .gallery {
        grid-template-columns: 1fr;
    }

    .img-kitchen {
        width: 100%;
        height: 320px;
    }

    .img-courtyard {
        position: static !important;
        width: 100%;
        height: 400px;
        right: auto;
        margin-top: 20px;
    }

    .caption {
        margin-top: 20px !important;
    }

    .unit-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .top-strip {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .property .eyebrow,
    .property h1.headline span,
    .unit-table,
    .property .reveal-img img,
    .caption,
    .property .inquiry {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}



.emerald {
    margin: 0 auto;
    background: url(../images/hero/bg-pattern.jpg);
    padding: 70px 40px 90px;
}

/* ---------- Top line + dot ---------- */
.marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    height: 84px;
}

.marker .line {
    width: 1px;
    height: 70px;
    background: #1c1c1a;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}

.marker .line.in-view {
    opacity: 1;
    transform: scaleY(1);
}

.marker .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1c1c1a;
    margin-top: -1px;
    opacity: 0;
    transform: translateY(10px) scale(.5);
    transition: opacity .5s cubic-bezier(.22, .61, .36, 1) .5s,
        transform .5s cubic-bezier(.22, .61, .36, 1) .5s;
}

.marker .dot.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---------- Heading ---------- */
.emerald .eyebrow {
    color: #435B70;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Italic;
    font-size: clamp(26px, 5vw, 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 20px;
    text-transform: inherit;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}

.emerald h1.headline {
    max-width: 639px;
    margin: 0 auto 70px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-style: Italic;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1) .1s, transform .8s cubic-bezier(.22, .61, .36, 1) .1s;
}

/* Explicit stacking order: text content always sits above the gallery
   images now that the images continuously drift via [data-speed] parallax
   and can shift outside their original box on scroll. */
.emerald .marker,
.emerald .eyebrow,
.emerald h1.headline,
.emerald .side-text,
.emerald .inquiry {
    position: relative;
    z-index: 2;
}

/* ---------- Gallery ---------- */
.emerald .gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 34px;
    padding: 0px;
    background-color: transparent;
    align-items: start;
    position: relative;
    z-index: 1;
}

.emerald .reveal-img {
    overflow: hidden;
    position: relative;
}

.emerald .reveal-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* start pushed down and hidden — slides UP into place on reveal */
    transform: translateY(65%);
    opacity: 0;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1), opacity 1s cubic-bezier(.22, .61, .36, 1);
    will-change: transform, opacity;
}

.emerald .reveal-img.in-view img {
    transform: translateY(0);
    opacity: 1;
}

.img-main {
    height: 647px;
    width: 718px;
    margin-top: 90px;
}

.img-side {
    height: 334px;
    margin-bottom: 104px;
    width: 434px;
}

.img-main img {
    transition-delay: 0s;
}

.img-side img {
    transition-delay: .15s;
}

.emerald .side-col {
    display: flex;
    flex-direction: column;
}

/* ---------- Side text ---------- */
.emerald .side-text {
    color: #000;
    margin: 0 0 60px;
    font-family: 'Agatho';
    max-width: 440px;
    font-weight: 400;
    font-size: 22px;
    line-height: 119%;
    letter-spacing: 0%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1) .25s, transform .8s cubic-bezier(.22, .61, .36, 1) .25s;
}

.emerald .inquiry {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1) .35s, transform .8s cubic-bezier(.22, .61, .36, 1) .35s;
}

.emerald .inquiry a {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-family: 'Luminova';
    font-weight: 900;
    font-style: Umbra;
    font-size: 12px;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    letter-spacing: .15em;
    font-weight: 600;
    border-bottom: 1px solid #000;
    padding: 20px 0px;
}

.emerald .inquiry svg {
    width: 17px;
    height: 17px;
    transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.emerald .inquiry a:hover svg {
    transform: translate(3px, -3px);
}

/* shared reveal state for text elements */
.emerald .fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 760px) {
    .emerald {
        padding: 50px 22px 70px;
    }

    .emerald .gallery {
        grid-template-columns: 1fr;
    }

    .img-main {
        width: 100%;
        height: 380px;
        margin-top: 30px;
    }

    .img-side {
        width: 100%;
        height: 400px;
        margin-bottom: 30px;
    }

    .kh-title {
        font-size: 38px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .marker .line,
    .marker .dot,
    .emerald .eyebrow,
    .emerald h1.headline,
    .emerald .reveal-img img,
    .emerald .side-text,
    .emerald .inquiry {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}



.memories {
    background-color: #fff;
    margin: 0 auto;
    padding: 147px 60px 200px;
    overflow-x: hidden;
}

/* ---------- Heading ---------- */
.memories .eyebrow {
    font-family: 'Darker Grotesque';
    font-weight: 600;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: 12%;
    text-transform: uppercase;
    text-align: center;
    color: #435B70;
    margin: 0 0 23px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}

.memories .eyebrow.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Explicit stacking order: text/eyebrow/headline/form stay above the
   continuously-parallaxing images. */
.memories .eyebrow,
.memories h1.headline,
.memories .col-center {
    position: relative;
    z-index: 2;
}

.memories .col-left,
.memories .col-right,
.memories .reveal-img {
    position: relative;
    z-index: 1;
}

.memories h1.headline {
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 130%;
    max-width: 600px;
    margin: 0 auto 102px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1) .1s, transform .8s cubic-bezier(.22, .61, .36, 1) .1s;
}

.memories h1.headline.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Layout ---------- */
.memories .layout {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
    gap: 40px;
    align-items: start;
}

.memories .col-left,
.memories .col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 370px;
}


.memories .col-right {
    margin-top: 40px;
}

.memories .col-left {
    margin-top: 190px;
}

.memories .reveal-img {
    overflow: hidden;
    position: relative;
}

.memories .reveal-img img {
    display: block;
    width: 100%;
    height: 115%;
    object-fit: cover;
    /* base position is centered; JS shifts this up/down continuously as you scroll */
    transform: translateY(0);
    will-change: transform;
}

.memories .img-house {
    height: 345px;
    width: 343px;
    left: -18%;
}

.memories .img-exterior {
    height: 396px;
    width: 355px;
    right: -37%;
}

.memories .img-interior {
    height: 293px;
    width: 362px;
}

/* ---------- Form ---------- */
form {
    display: flex;
    flex-direction: column;
}

.field {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

.field.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* staggered delays for form rows */
.field:nth-of-type(1) {
    transition-delay: .05s;
}

.field:nth-of-type(2) {
    transition-delay: .11s;
}

.field:nth-of-type(3) {
    transition-delay: .17s;
}

.field:nth-of-type(4) {
    transition-delay: .23s;
}

.field:nth-of-type(5) {
    transition-delay: .29s;
}

.field:nth-of-type(6) {
    transition-delay: .35s;
}

.field:nth-of-type(7) {
    transition-delay: .41s;
}

.field:nth-of-type(8) {
    transition-delay: .47s;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.first-row {
    display: grid;
    grid-template-columns: 0.2fr 1fr 1fr;
    gap: 13px;
}

label {
    display: block;
    color: #000;
    font-family: 'Luminova';
    font-weight: 600;
    font-style: Regular;
    font-size: 12px;
    leading-trim: CAP_HEIGHT;
    line-height: 164%;
    letter-spacing: 2%;
    margin-bottom: 17px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B2B2B2;
    background: transparent;
    color: #000;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: 15.89px;
    line-height: 164%;
    letter-spacing: 0%;
    padding: 0px 2px 10px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    transition: border-color .25s ease;
}

input::placeholder,
textarea::placeholder {
    color: #a8a49c;
}

input:focus,
select:focus,
textarea:focus {
    border-bottom-color: #1c1c1a;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231c1c1a' stroke-width='1.4' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    cursor: pointer;
}

textarea {
    resize: none;
    height: 26px;
}

/* ---------- checkboxes ---------- */
.checkbox-grid {
    display: flex;
    grid-template-columns: repeat(3, auto);
    gap: 0px 22px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6E6E6E;
    cursor: pointer;
    margin-bottom: 9px;
}

.check-item input {
    width: 14px;
    height: 14px;
    accent-color: #1c1c1a;
    cursor: pointer;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #2c2b28;
    margin-top: 6px;
}

.consent input {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: #1c1c1a;
    cursor: pointer;
}

.consent a {
    color: #1c1c1a;
    font-weight: 600;
    text-decoration: underline;
}

/* ---------- Inquiry button ---------- */
.memories .inquiry-btn {
    /* margin-top: 34px; */
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1) .5s, transform .7s cubic-bezier(.22, .61, .36, 1) .5s;
}

.memories .inquiry-btn.in-view {
    opacity: 1;
    transform: translateY(0);
}

.memories .inquiry-btn button {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: none;
    border: none;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: CAP_HEIGHT;
    line-height: 117%;
    letter-spacing: 0%;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    color: #000;
    padding: 20px 0px;
    cursor: pointer;
}

.memories .inquiry-btn svg {
    width: 17px;
    height: 17px;
    transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.memories .inquiry-btn button:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 940px) {
    .memories {
        padding: 90px 24px 120px;
    }

    .memories h1.headline {
        margin: 0 auto 50px;
    }

    .memories .layout {
        grid-template-columns: 1fr;
    }

    .memories .col-left,
    .memories .col-right {
        margin-top: 0;
        flex-direction: row;
        gap: 20px;
    }

    .memories .img-house,
    .memories .img-exterior,
    .memories .img-interior {
        width: 100%;
        height: 200px;
        left: auto;
        right: auto;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, auto);
    }
}

@media (max-width: 560px) {
    .memories {
        padding: 60px 20px 90px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .memories .col-left,
    .memories .col-right {
        /* flex-direction: column; */
        gap: 16px;
    }

    .memories .img-house,
    .memories .img-exterior,
    .memories .img-interior {
        height: 220px;
    }

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

@media (prefers-reduced-motion: reduce) {

    .memories .eyebrow,
    .memories h1.headline,
    .field,
    .memories .inquiry-btn {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


footer.site-footer {
    background-color: #fff;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

/* ---------- Top: mark + two contact columns ---------- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    gap: 20px;
    margin-bottom: 70px;
}

.contact-col {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
    margin-top: 100px;
}

.contact-col.in-view {
    opacity: 1;
    transform: translateY(0);
}

.contact-col.col-right {
    transition-delay: .1s;
}

.contact-col h3 {
    margin: 0 0 16px;
    font-family: 'Luminova';
    font-weight: 900;
    font-style: Umbra;
    color: #000;
    font-size: 14px;
    line-height: 118%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
}

.contact-col p {
    color: #000;
    margin: 0 0 47px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
}

.contact-col .label {
    color: #435B70;
    margin: 0 0 6px;
    font-family: 'Luminova';
    font-weight: 900;
    font-size: 11.44px;
    line-height: 144%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
}

.contact-col a {
    color: #435B70;
    text-decoration: underline;
    font-family: Luminova;
    font-weight: 900;
    font-size: 12.53px;
    /* padding-bottom: 10px; */
    line-height: 144%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;

}

.contact-block {
    margin-bottom: 30px;
}

/* ---------- Center M mark (parallax, like the images in other sections) ---------- */
.mark-wrap {
    overflow: hidden;
    /* height: 300px; */
    display: flex;
    justify-content: center;
}

.mark-wrap svg {
    height: 140%;
    width: auto;
    display: block;
    will-change: transform;
}

/* ---------- Big wordmark ---------- */
.wordmark {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    /* border-top: 1px solid #e6e2da; */
    padding-top: 28px;
    max-width: 1440px;
    margin: 0 auto;
}

.wordmark h2 {
    margin: 0;
    font-size: clamp(40px, 8vw, 92px);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #1c1c1a;
    display: flex;
}

.wordmark h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

.wordmark h2 span.in-view {
    opacity: 1;
    transform: translateY(0);
}

.wordmark h2 span.space {
    width: 0.5em;
}

.wordmark img {
    width: 100%;
	height:auto
}

/* ---------- Bottom line ---------- */
.footer-bottom {
    padding-top: 20px;
    font-size: 14px;
    font-family: 'Luminova';
    color: #000;
    margin: 0 auto;
    max-width: 1440px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1) .3s, transform .7s cubic-bezier(.22, .61, .36, 1) .3s;
}

.footer-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
    }

    .mark-wrap {
        order: -1;
        height: 400px;
    }

    .wordmark {
        flex-wrap: wrap;
        gap: 6px;
    }

    .wordmark h2 {
        font-size: clamp(30px, 12vw, 60px);
    }

    .mark-wrap svg {
        height: 70%;
    }

    .contact-col {
        margin-top: 0px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .contact-col,
    .wordmark h2 span,
    .footer-bottom {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   KUDANIL-STYLE HERO (kh- prefix — namespaced, no clashes with the rules
   above). Lives inside the existing #stage / #pinWrap pinned stage; the
   loader above is untouched. Sequence: headline holds -> bg blurs/dims and
   headline fades -> 4 photos rise from a pile below the fold and spread to
   their corners -> centered bold line fades in -> on continued scroll,
   photos fly upward off-screen and the line fades out -> pin releases into
   the next section.
   ========================================================================== */

.kh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kh-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    transform: scale(1.14);
    transform-origin: center;
    will-change: transform, filter;
}

.kh-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.kh-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgb(var(--overlay));
    opacity: 0;
}

.kh-headline-wrap {
    position: absolute;
    inset: 0;
    flex-direction: column;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 0 clamp(20px, 6vw, 90px);
}
.kh-title {
    max-width: 900px;
    font-family: 'CS Granvile';
    margin: 0 auto 14px;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.kh-line {
    display: block;
    overflow: hidden;
}

.kh-word {
    display: inline-block;
    transform: translateY(110%);
}

.kh-word.kh-italic {
    /* font-style: italic;
    color: var(--terracotta); */
}

p.kh-para{
        color: #fff;
    max-width: 650px;
    margin: 0;
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 29px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}
.kh-corner {
    position: absolute;
    z-index: 2;
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
    opacity: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.kh-corner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kh-corner-tl {
    left: 20px;
    top: -16%;
    width: 496px;
    height: 456px;
}

.kh-corner-tr {
    right: 0px;
    top: -14%;
    width: 463px;
    height: 469px;
}

.kh-corner-bl {
    left: 0;
    bottom: -20vh;
    width: 438px;
    height: 505px;
}

.kh-corner-br {
    right: 0;
    bottom: -14vh;
    width: 440px;
    height: 345px;
}

.kh-copy-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.kh-copy {
    max-width: 850px;
    font-family: 'CS Granvile';
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    opacity: 0;
}
@media (max-width: 860px) {
    /* Sized/positioned to match the reference mobile layout: two
       smaller images tucked under the top bar (left = smaller square,
       right = taller landscape shot), and two images lower down that
       purposely overlap the edges of the headline text, left/right. */

    .kh-corner-tl {
        left: 0;
        top: 22vh;
        width: 26vw;
        height: 15vh;
    }

    .kh-corner-tr {
        right: 0;
        top: 12vh;
        width: 38vw;
        height: 17vh;
    }

    .kh-corner-bl {
        left: 0;
        bottom: 24vh;
        width: 27vw;
        height: 19vh;
    }

    .kh-corner-br {
        right: 0;
        bottom: 32vh;
        width: 30vw;
        height: 16vh;
    }

    .kh-copy {
        max-width: 88%;
        font-size: clamp(1.35rem, 5.6vw, 2rem);
    }
}
/* ---------- horizontal pinned section ---------- */
/* ---------- horizontal pinned section ---------- */
.horizontal-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-image: url('../images/hero/bg-pattern.jpg');
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
}

.track {
    display: flex;
    height: 100vh;
    width: 400vw;
}

.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 clamp(24px, 7vw, 90px);
    position: relative;
}

/* ===== Slide 1 ===== */
#slide-1 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 0;
}

.s1-copy {
    max-width: 759px;
    z-index: 2;
    margin-bottom: 6vh;
}

.s1-copy h1 {
    margin: 0;
    font-family: CS Granvile;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
}

.s1-copy h1 em {
    color: #435B70;
}

.horizontal-section .tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 600;
    margin-bottom: 14px;
}

.horizontal-section .tag::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--sage-deep);
    display: inline-block;
}

.s1-art {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    padding-bottom: 6vh;
}

.s1-art img {
    width: 100%;
    height: 700px;
    object-fit: contain;
}

.s1-art svg {
    width: min(56vw, 720px);
    height: auto;
    display: block;
}

.sketch-line {
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sketch-fill {
    fill: var(--paper);
    stroke: var(--ink);
    stroke-width: 1;
}

.sketch-hatch {
    fill: none;
    stroke: var(--ink-soft);
    stroke-width: .6;
}

.sketch-ground {
    fill: none;
    stroke: var(--ink-soft);
    stroke-width: 1;
}

/* ===== Slide 2 ===== */
#slide-2 {
    align-items: flex-start;
    padding-top: 90px;
    gap: 70px;
    justify-content: space-around;
}

.s2-copy {
    max-width: 900px;
    flex-shrink: 0;
    /* padding-top:2vh; */
}

.s2-copy p.quote {
    color: #000;
    font-family: CS Granvile;
    font-weight: 400;
    font-style: Italic;
    font-size: 28px;
    line-height: 166%;
    letter-spacing: 0%;
    margin: 0 0 38px;
}

.s2-copy .label {
    margin-bottom: 6px;
}

.s2-copy .label-bold {
    color: #000;
    font-family: Darker Grotesque;
    font-weight: 700;
    font-size: 22px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.frame {
    border-radius: 1px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--paper);
}

.frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s2-images {
    position: relative;
    flex: 1;
    height: 62vh;
    max-width: 640px;
}

#slide-2 .frame.tall {
    position: absolute;
    top: 0;
    right: 6%;
    width: 441px;
    height: 552px;
}

#slide-2 .frame.wide {
    position: absolute;
    left: 10%;
    bottom: 50px;
    width: 723px;
    height: 419px;
}

.s2_text {
    font-family: 'Agatho';
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;

}

.s2_slide_text {
    position: absolute;
    top: 110%
}

/* ===== Slide 3 ===== */
#slide-3 {
    gap: 44px;
    align-items: flex-start;
    padding-top: 16vh;
    flex-direction: column;
    padding-bottom: 8vh;
}

.s3-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 759px;
    margin: 0 auto 90px auto;
    flex-shrink: 0;
}

.s3-left h2 {
    margin: 0;
    font-family: CS Granvile;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
}

.s3-textcol .frame.reveal-img {
    width: 661px;
    height: 503px;
}

.s3-textcol {
    /* max-width: 220px; */
    flex-shrink: 0;
    padding-top: 6px;
    display: flex;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
    gap: 87px;
}

.s3-textcol .headline-block {
    font-family: Darker Grotesque;
    font-weight: 700;
    font-size: 22px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    margin: 20px 0 38px;
    /* max-width: 414px; */
    color: #000;
    text-transform: uppercase;
}

.s3-textcol p {
    color: #000;
    margin: 0 0 14px;
    font-family: Agatho;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    /* max-width: 440px; */
}

.s3-mid {
    flex-shrink: 0;
    width: 20%;
    align-self: center;
}

.s3-mid .frame {
    aspect-ratio: 4/3.3;
}

.s3-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 520px;
}

.s3-right-cluster {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* width: 38%; */
    top: -5%;
    flex-shrink: 0;
}
.s3_text_col{
 max-width: 414px;
}
#slide-3 .frame.square {
    width: 435px;
    height: 519px;
}

#slide-3 .frame.big {
    width: 56%;
    aspect-ratio: 3/4.4;
    flex-shrink: 0;
}

.s3-right-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s3-right-copy .tag {
    text-transform: uppercase;
    letter-spacing: 1%;
    font-size: 16px;
    color: #000;
    font-family: 'Darker Grotesque';
}

.s3-right-copy .tag::before {
    display: none;
}

.s3-right-copy .caption {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    margin: 0 0 3px;
    color: #000;
}

.s3-right-copy .caption-sub {
    font-size: 19px;
    color: #000;
    font-family: 'Afterglow';
    text-transform: capitalize;
}

/* .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      align-self: flex-start;
      padding: 14px 22px;
      border: 1px solid var(--ink);
      border-radius: 2px;
      background: transparent;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      transition: background .3s ease, color .3s ease;
      cursor: pointer;
    }

    .cta:hover {
      background: var(--ink);
      color: var(--paper);
    } */

/* ===== Slide 4 ===== */
#slide-4 {
    align-items: center;
    padding-top: 0;
	padding-right:0px;
	padding-bottom: 0px;
}

.s4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
    width: 100%;
    align-items: start;
	
}
.s4-left {
    padding: 50px 0px;
}

.s4-left .frame {
    width: 661px;
    height: 508px;
}
.s4-left-text {
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #000;
    margin: 20px 0 0;
}

.s4-right {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 125px;   
	background: #6C7C8A;
	padding:90px
}

/* .s4-right-item .frame {
    width: 100%;
    aspect-ratio: 4 / 5;
} */
.s4-right-item .frame {
    width: 441px;
    height: 552px;
	margin-left:70px;
	opacity: 1 !important;
	    margin-bottom: 90px;
}

.s4-right-text {
    font-family: 'Agatho';
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #fff;
    margin: 20px 0 18px;
}

.s4-right-item .memory-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Darker Grotesque';
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.s4-right-item .memory-cta svg {
    width: 14px;
    height: 14px;
}
.frame.reveal-img.s4-right-item2-img img {
    height: 370px;
    width: 440px;
    margin-top: 80px;
}
@media (max-width: 900px) {

    /* Vertical stack on mobile — no horizontal scroll-hijack at all.
         The pin/xPercent scroll-jacking only ever gets built by the JS's
         "(min-width: 901px)" branch; this just makes sure the layout
         underneath matches that (auto height, no 400vw track) rather
         than sitting there sized for a horizontal page that never comes. */
    .horizontal-section {
        height: auto;
        width: 100%;
        overflow: visible;
    }

    .track {
        display: block;
        width: 100%;
        height: auto;
    }

    .slide {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 60px 20px;
    }

    .s1-art img {
        display: block;
        width: 88vw;
        max-width: 100%;
        height: auto;
    }

    #slide-1 {
        padding-top: 14vh;
    }

    .s1-copy {
        max-width: 100%;
        margin-bottom: 3vh;
    }

    .s1-art {
        padding-bottom: 3vh;
    }

    .s1-art svg {
        width: 88vw;
    }

    .s3-left h2 {
        font-size: 40px;
    }

    #slide-2 {
        flex-direction: column;
        padding-top: 0px;
        gap: 26px;
    }

    .s2-copy {
        max-width: 100%;
    }

    .s2-images {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #slide-2 .frame.tall,
    #slide-2 .frame.wide {
        position: static;
        width: 100%;
        height: 500px;
        margin-top: 30px;
    }

    .s2-copy p.quote {
        font-size: 23px;
    }

    #slide-3 {
        flex-direction: column;
        padding-top: 28vh;
        gap: 18px;
        overflow-y: auto;
    }

    .s3-textcol .frame.reveal-img {
        width: 100%;
    }

    .s3-left,
    .s3-textcol {
        max-width: 100%;
    }

    .s3-textcol {
        flex-direction: column;
        gap: 40px
    }

    .s3-mid {
        width: 60%;
        align-self: flex-start;
    }

    .s3-right {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .s3-right-cluster {
        width: 100%
    }

    #slide-3 .frame.square {
        width: 100%;
        height: auto;
        aspect-ratio: 435 / 300;
    }

    #slide-3 .frame.big {
        width: 48%;
    }

    #slide-4 {
        flex-direction: column;
        padding-top: 0px;
        gap: 26px;
    }

    .s4-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .s4-right {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 30px;
		        padding: 50px 20px 50px 20px;
    }

    .s4-left .frame,
    .s4-right-item .frame {
              width: 100%;
        height: 400px;
        margin-left: 0px;
        margin-bottom: 50px;
	}
	.cloud-top{
		width:100%;
	}
	.cloud-top img {
    width: 600px;
	}
	.cloud-bottom img {
    width: 600px;
	}
	.cloud-bottom{
		width:100%
	}
	#slide-4{
		padding-left:0px;
	}
.s4-left {
    padding: 50px 20px;
}
    .walk-number em {
        font-size: 100px
    }
}
/* =====================================================================
   EMERALD OASIS — SPLIT INTRO SECTION (.oasis-split)
   Dark full-bleed section: floor-plan art on the left, heading/paragraph
   + CTA top-right, a white "walk time" card overlapping below it, and
   two images along the bottom. Text/description reveal upward on scroll
   entry (.fade-up), all images drift continuously with scroll position
   (.reveal-img), same conventions used elsewhere in this theme.
   ===================================================================== */

.oasis-split {
    position: relative;
    background: #3f5163;
    color: #fff;
    padding: 100px 40px 80px;
    overflow: hidden;
    isolation: isolate;
}

.oasis-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    z-index: 0;
    opacity: 0.9;
    overflow: hidden;
}

.oasis-split-bg img {
    display: block;
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    transform: translateY(0);
    will-change: transform;
}

.oasis-split-inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    column-gap: 60px;
}

/* ---------- Top-right heading/paragraph/CTA ---------- */
.oasis-top-text {
    grid-column: 2;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}

.oasis-split .fade-up.in-view,
.oasis-top-text.in-view,
.oasis-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.oasis-top-heading {
    font-family: 'Darker Grotesque';
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .01em;
    margin: 0 0 22px;
    max-width: 340px;
}

.oasis-top-paragraph {
    font-family: 'Darker Grotesque';
    font-size: 15px;
    line-height: 1.75;
    opacity: .82;
    margin: 0 0 30px;
    max-width: 340px;
}

.oasis-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: 'Darker Grotesque';
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 10px;
}

.oasis-cta svg {
    width: 16px;
    height: 16px;
    transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.oasis-cta:hover svg {
    transform: translate(3px, -3px);
}

/* ---------- White "walk time" card ---------- */
.oasis-card {
    grid-column: 2;
    background: #fff;
    color: #1c1c1a;
    padding: 44px 40px 40px;
    margin-top: 46px;
    max-width: 420px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s cubic-bezier(.22, .61, .36, 1) .12s, transform .9s cubic-bezier(.22, .61, .36, 1) .12s;
}

.oasis-card-eyebrow {
    font-family: 'Darker Grotesque';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #435B70;
    margin: 0 0 16px;
}

.oasis-card-heading {
    font-family: 'Darker Grotesque';
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 36px;
    max-width: 280px;
}

.oasis-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #435B70;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0 auto 22px;
}

.oasis-badge-number {
    font-family: 'CS Granvile', serif;
    font-style: italic;
    font-size: 52px;
    color: #435B70;
    line-height: 1;
}

.oasis-badge-unit {
    font-family: 'CS Granvile', serif;
    font-style: italic;
    font-size: 20px;
    color: #435B70;
    margin-left: 3px;
}

.oasis-badge-caption {
    text-align: center;
    font-family: 'Darker Grotesque';
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0;
}

/* ---------- Bottom images ---------- */
.oasis-images {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    margin-top: 90px;
}

.oasis-image-left,
.oasis-image-right {
    overflow: hidden;
    position: relative;
}

.oasis-image-left {
    height: 380px;
    align-self: end;
}

.oasis-image-right {
    height: 340px;
    align-self: end;
    margin-top: 90px;
}

.oasis-image-left img,
.oasis-image-right img {
    display: block;
    width: 100%;
    height: 115%;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
}

@media (max-width: 900px) {
    .oasis-split {
        padding: 70px 22px 60px;
    }

    .oasis-split-bg {
        position: relative;
        width: 100%;
        height: 320px;
        margin-bottom: 40px;
    }

    .oasis-split-inner {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .oasis-top-text,
    .oasis-card {
        grid-column: 1;
        max-width: none;
    }

    .oasis-top-heading,
    .oasis-top-paragraph {
        max-width: none;
    }

    .oasis-card {
        margin-top: 0;
    }

    .oasis-images {
        grid-template-columns: 1fr;
        row-gap: 24px;
        margin-top: 40px;
    }

    .oasis-image-left,
    .oasis-image-right {
        height: 280px;
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oasis-top-text,
    .oasis-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
