@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

:root {
    --bg: #F7F5F1;
    /* warm paper background */
    --surface: #F1EDE6;
    --surface-strong: #E8E3DA;
    --card: transparent;
    --ink: #2c241c;
    --muted: #55514C;
    --muted-strong: #2C2926;
    --accent: #1A1816;
    --accent-soft: #6f6258;
    --white: #FFFFFF;
    --line: rgba(44, 36, 28, 0.08);
    --line-strong: rgba(44, 36, 28, 0.18);
    --menu-bg: rgba(54, 50, 47, 0.9);
    --menu-ink: rgba(255, 255, 255, 0.94);
    --menu-muted: rgba(255, 255, 255, 0.58);
    --menu-line: rgba(255, 255, 255, 0.12);
    --menu-glow: rgba(20, 18, 16, 0.28);
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 1px 0 rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-warm: 0 2px 8px rgba(107, 79, 56, 0.06);
    --radius-lg: 0px;
    --radius-md: 0px;
    --radius-sm: 0px;
    --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
    /* March 2026 redesign tokens */
    --space-hero-top: clamp(7rem, 12vw, 10rem);
    --space-hero-bottom: clamp(3rem, 5vw, 4.5rem);
    --space-section-lg: clamp(5rem, 10vw, 9rem);
    --space-section-md: clamp(3.25rem, 6vw, 5rem);
    --space-section-sm: clamp(2rem, 4vw, 3rem);
    --page-measure: 34rem;
    --paper: #f5f1ea;
    --stone: #e7e1d9;
    --ocean: #6b4f38;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow: hidden;
}

body.has-menu-open {
    overflow: hidden;
}

body.has-book-modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

picture {
    display: contents;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover {
    opacity: 0.7;
}

a:focus-visible {
    opacity: 1;
}

button,
input,
select,
textarea {
    font: inherit;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    border-radius: 2px;
}

.container,
.container-wide {
    width: min(100% - 2.5rem, 1180px);
    margin: 0 auto;
}

.container-wide {
    width: min(100% - 2.5rem, 1440px);
}

/* Typography */
.eyebrow {
    margin: 0 0 1.5rem;
    color: var(--muted-strong);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.display,
h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.display {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.title-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.title-lg {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.title-md {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.lead,
.body-lg {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.72;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Spacing */
.section {
    padding: var(--space-section-lg) 0;
}

.section-tight {
    padding: var(--space-section-md) 0;
}

/* Backgrounds */
.surface {
    background: var(--surface);
}

.surface-strong {
    background: var(--surface-strong);
}

.surface-dark {
    background: var(--accent);
    color: var(--white);
}

.surface-dark .display,
.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4 {
    color: var(--white);
}

.surface-dark .muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 1rem 0;
    background: transparent;
    transition:
        background 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .container-wide {
    width: calc(100% - 2rem);
    max-width: none;
}

@media (min-width: 960px) {
    .site-header .container-wide {
        width: calc(100% - 4rem);
    }

    .gallery-section .container-wide {
        width: calc(100% - 4rem);
    }
}

.site-header.is-scrolled {
    background: var(--bg);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-link {
    color: var(--ink);
}

.site-header.is-scrolled .book-pill {
    color: var(--ink);
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.brand {
    justify-self: start;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--white);
    transition: color 0.3s ease;
}

.brand__word {
    margin-right: 0.18em;
}

.brand__accent {
    font-style: italic;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-width: 0;
}

.site-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2.25rem, 4.5vw, 5rem);
    white-space: nowrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-family: "Cormorant Garamond", serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: inherit;
    opacity: 0.7;
}

.book-pill {
    display: inline;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Cormorant Garamond", serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 0;
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    transition: opacity 0.3s ease, color 0.3s ease, text-decoration-color 0.3s ease;
}

.book-pill:hover {
    background: transparent;
    color: inherit !important;
    text-decoration-color: currentColor;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: clamp(1.25rem, 2vw, 1.75rem);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.site-header.is-scrolled .nav-toggle {
    color: var(--ink);
}

body.has-menu-open .site-header,
body.has-menu-open .site-header.is-scrolled {
    background: transparent;
    border-bottom-color: transparent;
}

body.has-menu-open .site-header .brand,
body.has-menu-open .site-header .nav-link,
body.has-menu-open .site-header .book-pill,
body.has-menu-open .site-header .nav-toggle {
    color: var(--menu-ink);
}

.nav-toggle__lines {
    position: relative;
    display: inline-block;
    width: 1.2rem;
    height: 0.8rem;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after,
.nav-toggle__lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: "";
    transition: all 0.3s ease;
}

.nav-toggle__lines::before {
    top: 0;
}

.nav-toggle__lines span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle__lines::after {
    bottom: 0;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 7.5rem 1.75rem 2.5rem;
    background:
        radial-gradient(circle at 50% 36%, var(--menu-glow), transparent 28rem),
        linear-gradient(180deg, rgba(102, 95, 91, 0.18) 0%, rgba(55, 50, 49, 0.1) 100%),
        var(--menu-bg);
    backdrop-filter: blur(20px) saturate(115%);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease-in-out,
        visibility 0s linear 0.35s;
}

.mobile-nav::before,
.mobile-nav::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.mobile-nav::before {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18rem),
        linear-gradient(0deg, rgba(27, 24, 23, 0.18), transparent 16rem);
}

.mobile-nav::after {
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "Paradise";
    color: rgba(80, 60, 40, 0.38);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(8rem, 28vw, 18rem);
    font-style: italic;
    line-height: 0.9;
    filter: blur(28px);
    opacity: 0.52;
    white-space: nowrap;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.mobile-nav__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    min-height: calc(100vh - 10rem);
}

.mobile-nav__group {
    max-width: 27rem;
}

.mobile-nav__eyebrow {
    margin: 0 0 1.25rem;
    color: var(--menu-muted);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

@keyframes mobile-nav-reveal {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav__item,
.mobile-nav__meta-block {
    opacity: 0;
    transform: translateY(26px);
}

.mobile-nav.is-open .mobile-nav__item,
.mobile-nav.is-open .mobile-nav__meta-block {
    animation: mobile-nav-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--menu-delay, 0ms);
}

.mobile-nav__item {
    color: var(--menu-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.05rem, 3.8vw, 2.45rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    text-transform: none;
    line-height: 1.06;
    transition: color 0.15s ease;
}

.mobile-nav.is-open .mobile-nav__item:hover,
.mobile-nav.is-open .mobile-nav__item:focus-visible {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-nav__meta {
    display: grid;
    gap: 1rem;
}

.mobile-nav__meta-block {
    padding-top: 0.9rem;
    border-top: 1px solid var(--menu-line);
    max-width: 18rem;
}

.mobile-nav__meta-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--menu-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mobile-nav__meta-block p,
.mobile-nav__meta-block a {
    margin: 0;
    color: var(--menu-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    line-height: 1.2;
}

.mobile-nav__meta-block a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.15s ease;
}

.mobile-nav__meta-block a::after {
    content: "";
    width: 1.75rem;
    height: 1px;
    margin-left: 0.75rem;
    background: currentColor;
    opacity: 0.34;
    transform: translateX(0);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.mobile-nav.is-open .mobile-nav__meta-block a:hover,
.mobile-nav.is-open .mobile-nav__meta-block a:focus-visible {
    opacity: 0.7;
}

.mobile-nav.is-open .mobile-nav__meta-block a:hover::after,
.mobile-nav.is-open .mobile-nav__meta-block a:focus-visible::after {
    opacity: 0.56;
    transform: translateX(0.2rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.page-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    transition: opacity 1s ease-in-out;
    content: "";
}

@media (min-width: 900px) {
    .page-hero::before {
        background-image: var(--hero-image-large, var(--hero-image));
    }
}

/* Stronger dark gradient behind hero text for readability without boxes */
.page-hero::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 12, 8, 0.66) 0%, rgba(16, 12, 8, 0.6) 42%, rgba(16, 12, 8, 0.78) 100%);
    content: "";
}

.page-hero--short {
    min-height: 70vh;
    min-height: 70svh;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    width: 100%;
    max-width: none;
    margin: 0;
    padding:
        clamp(6rem, 10vh, 8rem)
        clamp(1rem, 3.5vw, 3.75rem)
        clamp(2rem, 5vw, 3.75rem);
}

.page-hero__content {
    max-width: 40rem;
}

.page-hero__content h1,
.page-hero__content h2,
.page-hero__content p,
.page-hero__content a,
.page-hero__content span {
    text-shadow: 0 1px 2px rgba(16, 12, 8, 0.45), 0 2px 6px rgba(16, 12, 8, 0.25);
}

.page-hero [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.page-hero .display,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero .lead,
.page-hero .body-lg,
.page-hero .eyebrow {
    color: var(--white);
}

.page-hero__content p {
    max-width: 33rem;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero--home .page-hero__content {
    max-width: 35.5rem;
}

.page-hero--home .display {
    font-size: clamp(3rem, 5.8vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.page-hero--home .lead {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.58;
}

.hero-word-accent {
    padding: 0 0.1em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.82);
}

/* Actions & Buttons */
.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0 1.45rem;
    border: 1px solid transparent;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
}

.btn:focus-visible {
    box-shadow: var(--focus-ring);
}

.btn-light {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.btn-light:active {
    transform: translateY(0);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
}

.btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:active {
    background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--muted-strong);
    transform: translateY(-1px);
}

.btn-dark:active {
    transform: translateY(0);
}

.btn-outline-dark {
    border-color: var(--line-strong);
    background: transparent;
    color: var(--ink);
}

.btn-outline-dark:hover {
    border-color: var(--ink);
    background: rgba(0, 0, 0, 0.03);
}

.btn-outline-dark:active {
    background: rgba(0, 0, 0, 0.06);
}

/* Quiet text links */
.kicker-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 0.3rem;
    transition: border-color 0.3s ease;
}

.kicker-link:hover {
    border-color: var(--ink);
    opacity: 1;
    /* override general a hover */
}

.kicker-link:focus-visible {
    opacity: 1;
    border-color: var(--ink);
}

.hero-link,
.text-link {
    display: inline-flex;
    width: fit-content;
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(44, 36, 28, 0.28);
    transition: opacity 0.25s ease, text-decoration-color 0.25s ease;
}

.text-link:hover {
    text-decoration-color: rgba(44, 36, 28, 0.6);
}

.hero-link:focus-visible,
.text-link:focus-visible {
    opacity: 1;
    text-decoration-color: var(--ink);
}

.hero-link {
    margin-top: 1.75rem;
    color: var(--white);
    text-decoration: none;
}

.hero-link--underlined {
    position: relative;
    padding-bottom: 0.35rem;
    color: var(--white);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
}

.hero-link--underlined::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
    content: "";
}

.hero-link--underlined:hover::after {
    background: rgba(255, 255, 255, 0.75);
}

.text-link--light {
    color: rgba(255, 255, 255, 0.92);
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

.text-link:hover,
.text-link:focus-visible {
    opacity: 1;
    text-decoration-color: rgba(44, 36, 28, 0.65);
}

.text-link--light:hover,
.text-link--light:focus-visible {
    text-decoration-color: rgba(255, 255, 255, 0.75);
}

/* Layouts */
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(4rem, 8vw, 10rem);
    /* Wider gap */
    align-items: center;
}

.offer-section {
    background: var(--bg);
}

.offer-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.82fr) minmax(20rem, 0.9fr);
    gap: clamp(3rem, 7vw, 9rem);
    align-items: center;
}

.offer-layout__image {
    max-width: 37rem;
}

.offer-layout__copy {
    max-width: 32rem;
}

.split--welcome {
    align-items: start;
}

.about-editorial {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    max-width: 70rem;
    margin: 0 auto;
}

.about-editorial__copy {
    max-width: 32rem;
    order: 2;
}

.about-editorial__media {
    order: 1;
}

.about-editorial__figure {
    position: relative;
    width: 100%;
}

.about-editorial__main {
    width: 100%;
    aspect-ratio: 1180 / 1600;
    background: transparent;
}

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

.about-editorial--single .about-editorial__main {
    aspect-ratio: 980 / 1320;
}

.intro-copy {
    max-width: 34rem;
}

.welcome-art {
    display: flex;
    justify-content: center;
}

.gallery-section {
    padding-top: 1rem;
}

.gallery-section .container-wide {
    width: calc(100% - 2rem);
    max-width: none;
}

.residences-gallery-section {
    padding-top: 0;
}

.residences-gallery-section__intro {
    max-width: 40rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.residences-gallery-section__intro .eyebrow {
    margin-bottom: 1rem;
}

.residences-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.4vw, 1.4rem);
}

.residences-mosaic__item {
    grid-column: span 6;
    margin: 0;
}

.residences-mosaic__item--wide {
    grid-column: 1 / -1;
}

.residences-mosaic__frame {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.residences-mosaic__item--portrait .residences-mosaic__frame {
    aspect-ratio: 9 / 13;
}

.residences-mosaic__item--wide .residences-mosaic__frame {
    aspect-ratio: 16 / 9;
}

.residences-mosaic__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition:
        transform 0.8s ease,
        filter 0.4s ease;
}

.residences-mosaic__item:hover .residences-mosaic__frame img {
    transform: scale(1);
}

.editorial-stories {
    align-items: start;
}

.editorial-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.editorial-story:nth-child(2) {
    margin-top: 0;
}

.editorial-story:nth-child(3) {
    margin-top: 0;
}

.editorial-story__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.95rem;
}

.editorial-story__body h3 {
    font-size: clamp(1.7rem, 2.45vw, 2.45rem);
    line-height: 0.98;
}

.editorial-story__body p {
    margin: 0;
    color: var(--muted);
    flex: 1;
}

.editorial-story__body .text-link {
    margin-top: 0.6rem;
    font-size: clamp(1.05rem, 1.55vw, 1.45rem);
    line-height: 1.05;
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

[data-reveal].will-reveal {
    opacity: 1;
    transform: none;
    transition:
        opacity 1s ease-in-out,
        transform 1s ease-out;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].will-reveal.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .media-frame img,
    .page-hero::before,
    [data-reveal],
    .gallery-arrow,
    .site-header,
    .booking-modal,
    .booking-modal__panel,
    .book-pill,
    .btn,
    .nav-link,
    .brand {
        transition: none !important;
    }

    [data-reveal],
    [data-reveal].will-reveal {
        opacity: 1;
        transform: none;
    }

    .page-hero::before {
        transform: none;
    }
}

/* Grid systems - flatter, no cards */
.grid-2,
.grid-3,
.grid-4,
.card-grid {
    display: grid;
    gap: 3rem;
    /* More space */
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.stack>*+* {
    margin-top: 1.5rem;
}

/* Media Frame - No borders, no radius */
.media-frame {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition:
        transform 1.2s ease,
        opacity 0.4s ease;
}

.media-frame:hover img {
    transform: scale(1.03);
}

.media-frame--portrait {
    aspect-ratio: 4 / 5;
}

.media-frame--landscape {
    aspect-ratio: 3 / 2;
}

.media-frame--wide {
    aspect-ratio: 16 / 9;
}

.media-frame--square {
    aspect-ratio: 1;
}

/* Flat blocks (formerly cards) */
.feature-card,
.card,
.callout,
.quote-card {
    padding: 0;
    /* Remove padding */
    border: none;
    /* Remove border */
    background: transparent;
    /* Remove background */
    box-shadow: none;
    /* Remove shadow */
}

.feature-card h3,
.card h3,
.callout h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.feature-card p,
.card p,
.callout p {
    margin: 0;
    color: var(--muted);
}

.section-header {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.section-header p {
    margin-top: 1.5rem;
}

/* Quote Interlude */
.quote-block {
    max-width: 64rem;
    /* Wider */
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    /* Larger */
    font-style: italic;
    line-height: 1.1;
    color: var(--ink);
}

.quote-block cite {
    display: block;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-quote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-style: italic;
    line-height: 1.04;
    color: var(--ink);
}

.about-quote__cite {
    display: block;
    color: var(--muted);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


.center {
    text-align: center;
}

.spaced-top {
    margin-top: 2.5rem;
}

/* Forms */
.form-shell {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--muted-strong);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field>span {
    color: var(--muted-strong);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    /* Sharp corners */
    background: rgba(255, 255, 255, 0.32);
    color: var(--ink);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
    color: var(--accent-soft);
}

.form-trap {
    position: fixed !important;
    inset-block-start: -100vh !important;
    inset-inline-start: -100vw !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(0, 0, 0, 0.24);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
    outline: none;
    border-color: var(--ink);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--focus-ring);
}

.field textarea {
    min-height: 10rem;
    resize: vertical;
}

.field > span:has(> input[type="checkbox"]) {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    min-height: 2.75rem;
    padding-block: 0.35rem;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
    text-transform: none;
    cursor: pointer;
}

.field input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0.15rem 0 0;
    padding: 0;
    border-radius: 0;
    accent-color: var(--ink);
    cursor: pointer;
}

.field > span:has(> input[type="checkbox"]) a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* March 2026 redesign overrides are now consolidated in :root above. */

body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
        var(--bg);
}

.container,
.container-wide {
    width: min(100% - 2.5rem, 1180px);
}

.container-wide {
    width: min(100% - 2.5rem, 1440px);
}

.site-header {
    padding: 1.1rem 0;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0.24), rgba(16, 12, 8, 0));
}

.site-header.is-scrolled {
    background: rgba(249, 248, 246, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-shell {
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.site-nav__links {
    gap: clamp(1.1rem, 2.4vw, 2.6rem);
}

.nav-link,
.book-pill {
    font-size: 1rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.book-pill {
    display: inline;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
}

.book-pill::after {
    display: none;
}

.site-header.is-scrolled .book-pill::after {
    display: none;
}

.mobile-nav {
    padding: 7rem 1.75rem 2rem;
    background:
        linear-gradient(180deg, rgba(24, 18, 12, 0.92) 0%, rgba(28, 22, 16, 0.96) 100%);
    backdrop-filter: blur(16px) saturate(112%);
    -webkit-backdrop-filter: blur(16px) saturate(112%);
}

.mobile-nav::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16rem);
}

.mobile-nav::after {
    display: none;
}

.mobile-nav__inner {
    justify-content: space-between;
    min-height: calc(100vh - 9rem);
}

.mobile-nav__group--primary {
    max-width: 20rem;
}

.mobile-nav__title {
    max-width: 13ch;
    margin: 0 0 1.5rem;
    color: var(--menu-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 5vw, 2.5rem);
    line-height: 0.98;
}

.mobile-nav__item {
    font-size: clamp(2.25rem, 9vw, 3.4rem);
    line-height: 0.96;
}

.mobile-nav__meta {
    gap: 0.85rem;
}

.mobile-nav__meta-block {
    max-width: 22rem;
    padding-top: 0.8rem;
}

.page-hero::after {
    background:
        linear-gradient(180deg, rgba(16, 12, 8, 0.55) 0%, rgba(16, 12, 8, 0.18) 40%, rgba(16, 12, 8, 0.55) 100%);
    content: "";
}

.page-hero__inner {
    align-items: flex-end;
    padding:
        var(--space-hero-top)
        clamp(1.25rem, 3.5vw, 3.75rem)
        var(--space-hero-bottom);
}

.page-hero__content {
    max-width: var(--page-measure);
}

.page-hero--home .page-hero__content {
    max-width: 38rem;
}

.page-hero--home .display {
    max-width: 11ch;
    font-size: clamp(3.6rem, 7vw, 6.6rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.page-hero--home .lead {
    max-width: 31rem;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-poster {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-poster .eyebrow {
    margin: 0;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-poster p {
    margin: 0;
}

.hero-actions {
    margin-top: 1.2rem;
}

.btn {
    min-height: 3.35rem;
    padding: 0 1.45rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.13em;
}

.btn-light {
    background: rgba(255, 255, 255, 0.96);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.02);
}

.intro-essay__layout,
.about-story,
.feature-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.feature-band--reverse,
.about-story {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.feature-band--reverse .feature-band__media,
.about-story__copy {
    order: 2;
}

.feature-band--reverse .feature-band__copy,
.about-story__media {
    order: 1;
}

.intro-essay__copy,
.about-story__copy,
.feature-band__copy {
    max-width: 34rem;
}

.proof-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1rem;
}

.proof-list>div {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.proof-list p {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.proof-list__label {
    color: var(--muted-strong);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gateway-stage__header {
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.gateway-stage__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 2rem);
}

.gateway-stage__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gateway-panel {
    display: flex;
    flex-direction: column;
    grid-column: span 4;
    min-height: 100%;
}

.gateway-panel--wide {
    grid-column: span 12;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.72fr);
    gap: clamp(1.5rem, 3vw, 2.4rem);
    align-items: end;
}

.gateway-panel__media {
    margin-bottom: 1.15rem;
}

.gateway-panel--wide .gateway-panel__media {
    margin-bottom: 0;
}

.gateway-panel__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.95rem;
}

.gateway-panel__body p,
.gateway-panel__body blockquote {
    margin: 0;
    color: var(--muted);
}

.gateway-panel__body .eyebrow {
    margin: 0;
}

.gateway-panel__body .title-lg,
.gateway-panel__body .title-md {
    max-width: 14ch;
}

.feature-sequence .container-wide {
    display: grid;
    gap: clamp(3rem, 5vw, 5rem);
}

.feature-band__media,
.about-story__media,
.intro-essay__media {
    min-width: 0;
}

.feature-band__copy .text-link,
.gateway-panel__body .text-link {
    margin-top: auto;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}

.itinerary-step {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.itinerary-step__index {
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.itinerary-grid--standards .itinerary-step {
    background: rgba(255, 255, 255, 0.62);
    padding: 1.25rem;
    border-top: none;
}

.reserve-close {
    padding: var(--space-section-md) 0;
}

.reserve-close__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
}

.reserve-close__copy {
    max-width: 42rem;
}

.reserve-close__copy .eyebrow {
    margin-bottom: 1rem;
}

.reserve-close__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: baseline;
    gap: 1.5rem;
}

.reserve-close__actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.3rem;
    color: inherit;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.reserve-close__actions a:hover {
    opacity: 1;
}

.reserve-close--paper {
    background: var(--paper);
}

.about-intro,
.experiences-intro,
.residences-intro {
    max-width: 50rem;
}

.about-story {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.95fr);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 2rem);
}

.collection-tile {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.collection-tile--feature {
    background: linear-gradient(180deg, rgba(107, 79, 56, 0.05), rgba(107, 79, 56, 0.09));
    padding: 1rem;
}

.collection-tile__media {
    margin-bottom: 1rem;
}

.collection-tile__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.85rem;
}

.collection-tile__body p {
    margin: 0;
}

.quote-block cite {
    letter-spacing: 0.2em;
}


@media (max-width: 1180px) {
    .gateway-panel {
        grid-column: span 6;
    }

    .gateway-panel--wide {
        grid-column: span 12;
    }

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

@media (max-width: 1024px) {
    .header-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.9rem;
    }

    .site-nav {
        justify-self: center;
        width: fit-content;
        padding: 0.45rem 0.85rem;
        border-radius: 999px;
        background: rgba(14, 10, 6, 0.3);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .site-nav__links {
        justify-content: center;
        gap: 0.65rem 1rem;
        white-space: normal;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: none;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .nav-link,
    .book-pill {
        font-size: 0.92rem;
    }

    .page-hero__inner {
        padding-top: clamp(7rem, 16vw, 8.5rem);
    }

    .page-hero--home .page-hero__content,
    .page-hero__content--split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-poster__aside,
    .hero-detail-list {
        max-width: 24rem;
        padding: 1rem 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        background: linear-gradient(180deg, rgba(14, 10, 6, 0.44), rgba(14, 10, 6, 0.08));
        backdrop-filter: blur(10px);
    }

    .story-band,
    .story-quote,
    .collection-tile--feature,
    .intro-essay__layout,
    .about-story,
    .feature-band,
    .gateway-panel--wide,
    .reserve-close__layout {
        grid-template-columns: 1fr;
    }

    .story-band--reverse .story-band__copy,
    .story-band--reverse .story-band__media,
    .feature-band--reverse .feature-band__media,
    .about-story__copy,
    .feature-band--reverse .feature-band__copy,
    .about-story__media {
        order: initial;
    }

    .story-facts--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gateway-stage__grid,
    .collection-grid,
    .itinerary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gateway-panel,
    .gateway-panel--wide {
        grid-column: span 2;
    }

    .reserve-close__actions {
        justify-content: flex-start;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .residences-mosaic__item,
    .residences-mosaic__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .container,
    .container-wide {
        width: min(100% - 1.5rem, 100%);
    }

    .page-hero--home .display {
        font-size: clamp(3rem, 12vw, 4.6rem);
    }

    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .no-js .header-shell {
        grid-template-columns: 1fr;
    }

    .no-js .site-nav {
        display: block;
        width: 100%;
    }

    .no-js .header-actions {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .gateway-stage__grid,
    .gateway-stage__grid--two,
    .collection-grid,
    .itinerary-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gateway-panel,
    .gateway-panel--wide,
    .residences-mosaic__item,
    .residences-mosaic__item--wide {
        grid-column: span 1;
    }

    .residences-mosaic {
        grid-template-columns: 1fr;
    }

    .hero-detail-list {
        grid-template-columns: 1fr;
    }

    .story-facts,
    .story-facts--compact,
    .story-band,
    .story-quote,
    .collection-tile--feature {
        grid-template-columns: 1fr;
    }

    .quote-block blockquote,
    .about-quote {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .story-quote {
        padding: 1.25rem;
    }

    .footer-base {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .site-header {
        padding: 0.95rem 0;
    }

    .brand {
        font-size: 1.24rem;
    }

    .book-pill {
        display: none;
    }

    .page-hero__inner {
        padding-top: 6.9rem;
    }

    .page-hero--home .lead,
    .lead,
    .body-lg {
        font-size: 1rem;
    }

    .mobile-nav {
        padding: 6.5rem 1.2rem 1.5rem;
    }

    .mobile-nav__inner {
        min-height: calc(100vh - 8rem);
    }

    .mobile-nav__item {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .story-quote blockquote {
        max-width: none;
    }
}

/* March 2026 marketing-side refinements */
.site-header .container-wide {
    width: min(100% - 2rem, 1440px);
}

.header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1.35rem;
}

.site-nav {
    min-width: auto;
}

.site-nav__links {
    gap: clamp(1rem, 2.1vw, 2.35rem);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -0.3rem;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
    content: "";
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 0.4;
    transform: scaleX(1);
}

.header-actions {
    gap: 0.85rem;
}

.book-pill {
    display: inline;
    min-height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.book-pill::after {
    display: none;
}

.site-header.is-scrolled .book-pill::after {
    display: none;
}

.site-header.is-scrolled .book-pill {
    border-color: transparent;
    background: transparent;
}

body.has-menu-open .site-header {
    background: transparent;
}

body.has-menu-open .site-header .brand,
body.has-menu-open .site-header .book-pill,
body.has-menu-open .site-header .nav-toggle {
    color: var(--menu-ink);
}

.mobile-nav {
    padding: 6.4rem 1.4rem 1.4rem;
    background: linear-gradient(180deg, rgba(22, 16, 10, 0.96) 0%, rgba(28, 20, 12, 0.98) 100%);
}

.mobile-nav__inner {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    min-height: calc(100svh - 7.8rem);
}

.mobile-nav__masthead {
    max-width: 24rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--menu-line);
}

.mobile-nav__title {
    margin-bottom: 0.85rem;
}

.mobile-nav__lede {
    max-width: 19rem;
    margin: 0;
    color: var(--menu-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.mobile-nav__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.72fr);
    gap: 1.5rem;
    align-items: start;
}

.mobile-nav__group {
    max-width: none;
}

.mobile-nav__group--primary {
    max-width: none;
}

.mobile-nav__list {
    gap: 0.7rem;
}

.mobile-nav__item {
    width: fit-content;
}

.mobile-nav__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.mobile-nav__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--menu-ink);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-nav__action--primary {
    background: rgba(255, 255, 255, 0.94);
    color: #1f1812;
    border-color: transparent;
}

.mobile-nav__action--secondary {
    background: rgba(255, 255, 255, 0.04);
}

.page-hero--short {
    min-height: 78vh;
    min-height: 78svh;
}

.page-hero--about::after {
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.46) 0%, rgba(20, 16, 12, 0.18) 32%, rgba(20, 16, 12, 0.72) 100%);
}

.page-hero--experiences::after {
    background: linear-gradient(180deg, rgba(12, 16, 14, 0.48) 0%, rgba(12, 16, 14, 0.16) 34%, rgba(12, 16, 14, 0.72) 100%);
}

.page-hero--residences::after {
    background: linear-gradient(180deg, rgba(14, 12, 10, 0.42) 0%, rgba(14, 12, 10, 0.16) 34%, rgba(14, 12, 10, 0.72) 100%);
}

.page-hero__content--split {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(16rem, 0.7fr);
    gap: clamp(1.6rem, 4vw, 4.2rem);
    align-items: end;
    max-width: min(100%, 69rem);
}

.page-hero__intro {
    max-width: 37rem;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.35rem) 1.2rem 0;
    background: linear-gradient(90deg, rgba(12, 9, 6, 0.62) 0%, rgba(12, 9, 6, 0.34) 62%, rgba(12, 9, 6, 0) 100%);
}

.page-hero__intro .lead {
    margin-top: 1.35rem;
}

.hero-detail-list {
    display: grid;
    gap: 1rem;
    align-self: end;
    padding: 1rem 0 0.2rem;
    background: transparent;
    backdrop-filter: none;
}

.hero-detail-list__item {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    max-width: 22rem;
}

.hero-detail-list__label,
.hero-note__eyebrow {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-detail-list p,
.hero-note__text {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.62;
}

.story-band {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 1.02fr);
    gap: clamp(1.75rem, 4vw, 4rem);
    align-items: center;
}

.story-band--reverse {
    grid-template-columns: minmax(18rem, 1fr) minmax(0, 0.98fr);
}

.story-band__copy,
.story-band__media {
    min-width: 0;
}

.story-band__copy {
    max-width: 34rem;
}

.story-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.story-facts--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-fact {
    display: grid;
    gap: 0.5rem;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.story-fact > * {
    margin: 0;
}

.story-fact__label {
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-quote {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.54fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: end;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 243, 237, 0.9));
}

.story-quote blockquote {
    margin: 0;
    max-width: 26ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    font-style: italic;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.story-quote__meta {
    display: grid;
    gap: 0.7rem;
    max-width: 18rem;
}

.story-quote__meta cite {
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.story-quote__meta p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.page-hero--home .page-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.55fr);
    gap: clamp(2rem, 5vw, 4.8rem);
    align-items: end;
    max-width: min(100%, 65rem);
}

.page-hero--about .page-hero__content--split {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.58fr);
    max-width: min(100%, 66rem);
}

.page-hero--about .page-hero__intro {
    max-width: 35rem;
    background: transparent;
}

.page-hero--experiences .page-hero__content--split {
    grid-template-columns: minmax(0, 0.98fr) minmax(15rem, 0.62fr);
    max-width: min(100%, 67rem);
}

.page-hero--experiences .page-hero__intro {
    max-width: 34rem;
    background: transparent;
}

.page-hero--residences .page-hero__content--split {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.64fr);
    max-width: min(100%, 68rem);
}

.page-hero--residences .page-hero__intro {
    max-width: 34rem;
    background: transparent;
}

.page-hero--residences .hero-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.page-hero--residences .hero-detail-list__item {
    min-height: 100%;
}

.hero-poster {
    gap: 0;
}

.hero-poster__main {
    max-width: 32rem;
    padding: 0;
    background: transparent;
}

.hero-poster__main .lead {
    margin-top: 1.35rem;
    max-width: 28rem;
}

.hero-poster__aside {
    display: none;
}

.hero-poster__aside .kicker-link {
    margin-top: 1.2rem;
}

.kicker-link--light {
    color: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.34);
}

.kicker-link--light:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.section-header--compact {
    max-width: 40rem;
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.proof-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}

.proof-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.proof-column > * {
    margin: 0;
}

.proof-column__index {
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.proof-columns--soft .proof-column {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.proof-columns--narrow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.25rem;
}

.quote-block--wide {
    max-width: 70rem;
}

.editorial-slab {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.82fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.editorial-slab__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 33rem;
}

.editorial-slab__body p {
    margin: 0;
}

.collection-guide {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.collection-guide__item {
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.collection-guide__label {
    display: block;
    margin-bottom: 0.55rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.collection-guide__item p {
    margin: 0;
    color: var(--muted);
}

.collection-tile {
    padding: clamp(1rem, 1.8vw, 1.25rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16));
}

.collection-tile--sky {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(241, 236, 229, 0.78));
}

.collection-tile--signature {
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.9), rgba(236, 231, 223, 0.9));
}

.collection-tile--superior {
    background: linear-gradient(180deg, rgba(244, 239, 233, 0.98), rgba(233, 225, 216, 0.98));
}

.collection-tile--feature {
    background: linear-gradient(180deg, rgba(107, 79, 56, 0.07), rgba(107, 79, 56, 0.14));
}

.collection-tile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.collection-tile__head .eyebrow {
    margin: 0;
}

.collection-tile__summary {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.collection-tile__tag {
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-tile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.collection-tile__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-tile__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.collection-tile__actions .kicker-link {
    margin-top: 0;
}

.collection-tile--feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(107, 79, 56, 0.05), rgba(107, 79, 56, 0.1));
}

.collection-tile--feature .collection-tile__media {
    margin-bottom: 0;
}

.collection-tile--feature .collection-tile__body {
    padding-top: 0.15rem;
}

.collection-tile--feature .collection-tile__summary {
    color: #6b4f38;
}

.reserve-close--immersive {
    position: relative;
    overflow: hidden;
    background: #16120e;
}

.reserve-close--immersive::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 12, 8, 0.14) 0%, rgba(16, 12, 8, 0.42) 45%, rgba(16, 12, 8, 0.82) 100%),
        url("/assets/images/paradise-editorial/living-dining-scale.webp") center / cover no-repeat;
    content: "";
}

.reserve-close--immersive::after {
    position: absolute;
    inset: auto 0 0;
    height: clamp(4rem, 10vw, 7rem);
    background: linear-gradient(180deg, rgba(24, 18, 12, 0) 0%, rgba(24, 18, 12, 0.2) 55%, rgba(24, 18, 12, 0.56) 100%);
    content: "";
    pointer-events: none;
}

.reserve-close--immersive .reserve-close__layout {
    position: relative;
    z-index: 1;
    min-height: clamp(22rem, 42vw, 29rem);
    padding: clamp(3rem, 6vw, 4.75rem) 0;
    align-items: end;
}

.reserve-close--immersive .reserve-close__copy {
    max-width: 38rem;
}

.reserve-close--immersive .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.reserve-close--paper {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background:
        linear-gradient(180deg, rgba(245, 241, 234, 0.98) 0%, rgba(243, 238, 231, 0.94) 82%, rgba(236, 230, 223, 0.92) 100%);
}

.reserve-close--paper::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 32%),
        radial-gradient(circle at top right, rgba(107, 79, 56, 0.05), transparent 34%);
    content: "";
    pointer-events: none;
}

.reserve-close--paper .reserve-close__layout {
    position: relative;
    z-index: 1;
}

.reserve-close--experiences,
.reserve-close--residences {
    position: relative;
    overflow: hidden;
}

.reserve-close--experiences::before,
.reserve-close--residences::before {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background:
        radial-gradient(circle at top left, rgba(107, 79, 56, 0.12), transparent 42%),
        radial-gradient(circle at bottom right, rgba(24, 18, 12, 0.06), transparent 38%);
    content: "";
    pointer-events: none;
}

.reserve-close--experiences .reserve-close__layout,
.reserve-close--residences .reserve-close__layout {
    position: relative;
    z-index: 1;
}


@media (max-width: 1200px) {
    .header-shell {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 1rem;
    }

    .brand {
        font-size: 1.34rem;
    }

    .site-nav__links {
        gap: 1rem;
    }

    .nav-link,
    .book-pill {
        font-size: 0.94rem;
    }

    .page-hero__content--split {
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.72fr);
    }

    .page-hero--home .page-hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.6fr);
    }

    .proof-columns,
    .collection-guide,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 1024px) {
    .header-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.9rem;
    }

    .site-nav {
        justify-self: center;
        width: fit-content;
        padding: 0.45rem 0.85rem;
        border-radius: 999px;
        background: rgba(14, 10, 6, 0.3);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .site-nav__links {
        justify-content: center;
        gap: 0.65rem 1rem;
        white-space: normal;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: none;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .nav-link,
    .book-pill {
        font-size: 0.92rem;
    }

    .page-hero--home .page-hero__content,
    .page-hero__content--split,
    .intro-essay__layout,
    .about-story,
    .feature-band,
    .gateway-panel--wide,
    .editorial-slab,
    .offer-layout,
    .about-editorial,
    .form-shell,
    .reserve-close__layout,
    .split {
        grid-template-columns: 1fr;
    }

    .hero-poster__aside,
    .hero-detail-list {
        max-width: 24rem;
        padding: 1rem 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        background: linear-gradient(180deg, rgba(14, 10, 6, 0.44), rgba(14, 10, 6, 0.08));
        backdrop-filter: blur(10px);
    }

    .mobile-nav__grid,
    .collection-guide,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .story-facts--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-columns,
    .itinerary-grid,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-grid,
    .gateway-stage__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gateway-panel,
    .gateway-panel--wide {
        grid-column: span 1;
    }

    .feature-band--reverse .feature-band__media,
    .feature-band--reverse .feature-band__copy,
    .about-story__copy,
    .about-story__media {
        order: initial;
    }
}

@media (max-width: 760px) {
    .container,
    .container-wide,
    .site-header .container-wide {
        width: min(100% - 1.5rem, 100%);
    }

    .page-hero {
        min-height: 100svh;
    }

    .page-hero--short {
        min-height: 62svh;
    }

    .page-hero__inner {
        padding-top: clamp(6.8rem, 18vw, 8rem);
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .page-hero--short .page-hero__inner {
        align-items: flex-start;
        padding-bottom: 1.4rem;
    }

    .page-hero--home .display {
        font-size: clamp(3rem, 11vw, 4.85rem);
    }

    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero__intro,
    .hero-poster__main {
        padding-right: 0.5rem;
    }

    .btn,
    .mobile-nav__action {
        width: 100%;
    }

    .mobile-nav__grid,
    .proof-columns,
    .proof-columns--narrow,
    .collection-guide,
    .collection-grid,
    .itinerary-grid,
    .footer-grid,
    .form-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .gateway-stage__grid,
    .gateway-stage__grid--two {
        grid-template-columns: 1fr;
    }

    .gateway-panel,
    .gateway-panel--wide,
    .residences-mosaic__item,
    .residences-mosaic__item--wide {
        grid-column: span 1;
    }

    .residences-mosaic {
        grid-template-columns: 1fr;
    }

    .hero-detail-list {
        grid-template-columns: 1fr;
    }

    .story-facts,
    .story-facts--compact,
    .story-band,
    .story-quote,
    .collection-tile--feature {
        grid-template-columns: 1fr;
    }

    .collection-tile__actions,
    .reserve-close__actions,
    .mobile-nav__actions {
        align-items: stretch;
        justify-content: flex-start;
    }

    .footer-base {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .book-pill {
        display: none;
    }

    .page-hero__inner {
        padding-top: 6.6rem;
        padding-right: 0.95rem;
        padding-left: 0.95rem;
    }

    .page-hero--short {
        min-height: 58svh;
    }

    .page-hero--home .display {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

    .hero-note__text,
    .hero-detail-list p,
    .lead,
    .body-lg {
        font-size: 0.98rem;
    }

    .page-hero__intro,
    .hero-poster__main,
    .hero-poster__aside,
    .hero-detail-list {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .mobile-nav {
        padding: 6rem 1rem 1.1rem;
    }

    .mobile-nav__inner {
        min-height: calc(100svh - 7.1rem);
        gap: 1.5rem;
    }

    .mobile-nav__item {
        font-size: clamp(1.9rem, 11vw, 2.7rem);
    }

    .collection-tile__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 1.5rem 0;
    border: none;
    background: transparent;
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item__heading {
    margin: 0;
    font: inherit;
}

.faq-item__question:hover {
    color: var(--muted);
}

.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
    position: absolute;
    content: "";
    background: var(--muted-strong);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.is-open .faq-item__icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr;
}

.no-js .faq-item__answer {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-item__answer-inner {
    padding-bottom: 1.5rem;
}

.no-js .faq-item__answer-inner {
    padding-bottom: 1.5rem;
}

.faq-item__answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 42rem;
}

.faq-item__answer p + p {
    margin-top: 1rem;
}

/* ============================================================
   Enquiry Form Enhancement
   ============================================================ */
.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enquiry-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.enquiry-aside {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(247, 243, 237, 0.3));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.enquiry-aside__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 0.5rem;
    color: var(--ink);
}

.enquiry-aside__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.enquiry-aside__list li {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.enquiry-aside__list li strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.enquiry-status {
    display: none;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--surface);
    color: var(--muted-strong);
    font-size: 0.95rem;
    line-height: 1.6;
}

.enquiry-status.is-visible {
    display: block;
}

.enquiry-status.is-error {
    border-color: rgba(150, 60, 50, 0.28);
    background: rgba(150, 60, 50, 0.04);
    color: #7a2f26;
}

.enquiry-status.is-success {
    border-color: rgba(65, 105, 70, 0.28);
    background: rgba(65, 105, 70, 0.04);
    color: #2d4f33;
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .enquiry-layout {
        grid-template-columns: 1fr;
    }
}

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

/* ============================================================
   Legal / Policy Page Styles
   ============================================================ */
.legal-page {
    max-width: 44rem;
    margin: 0 auto;
}

.legal-page__intro {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.legal-page__intro .lead {
    max-width: 36rem;
}

.legal-section {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.25rem;
}

.legal-section h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    color: var(--muted);
    line-height: 1.75;
    padding-left: 1.25rem;
    margin: 0 0 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--ink);
    font-weight: 600;
}

.legal-callout {
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 2px solid var(--ocean);
    background: rgba(107, 79, 56, 0.04);
    font-size: 0.9rem;
    color: var(--muted-strong);
}

.legal-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-meta__item span {
    display: block;
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.legal-meta__item strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
}

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

/* ============================================================
   SEO Landing Page Styles (H Star)
   ============================================================ */
.seo-landing {
    max-width: 40rem;
    margin: 0 auto;
}

.seo-landing__note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--surface);
    font-size: 0.78rem;
    color: var(--muted-strong);
    letter-spacing: 0.05em;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
    background: var(--surface);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.footer .container-wide {
    width: min(100% - 2.5rem, 1280px);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 0.9fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer .brand {
    color: var(--ink);
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.footer-tagline {
    max-width: 28rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-contact,
.footer-note,
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.footer-contact {
    margin-top: 0.5rem;
}

.footer-contact .eyebrow,
.footer-note .eyebrow,
.footer-nav .eyebrow {
    margin-bottom: 0.5rem;
    color: var(--muted-strong);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.footer-contact a,
.footer-nav a {
    color: var(--muted-strong);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-nav a:hover {
    color: var(--ink);
    opacity: 1;
}

.footer-contact .footer-enquiry {
    position: relative;
    margin-top: 0.4rem;
    padding-bottom: 0.2rem;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-enquiry::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    content: "";
    transition: opacity 0.2s ease;
}

.footer-enquiry:hover::after {
    opacity: 0.7;
}

.footer-note {
    margin-top: 0.5rem;
}

.footer-note p {
    max-width: 25rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-note a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 4rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link.visually-hidden:focus,
.skip-link.visually-hidden:focus-visible {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 1px solid var(--line-strong);
    background: var(--bg);
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
}

@media (max-width: 540px) {
    .book-pill {
        display: inline;
        font-size: 0.95rem;
    }

    .header-actions {
        gap: 0.65rem;
    }
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-base {
        flex-direction: column;
    }
}

/* Final visual polish overrides: header CTA, mobile hero actions, and footer affordance. */
.site-header .book-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    margin-inline: -0.4rem;
    padding: 0 0.4rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Cormorant Garamond", serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    box-shadow: none;
    transition: opacity 0.3s ease, color 0.3s ease, text-decoration-color 0.3s ease;
}

.site-header .book-pill::after {
    display: none;
}

.site-header .book-pill:hover,
.site-header .book-pill:focus-visible {
    background: transparent !important;
    color: inherit !important;
    text-decoration-color: currentColor;
    opacity: 0.8;
}

.site-header.is-scrolled .book-pill {
    border-color: transparent;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
}

.site-header.is-scrolled .book-pill:hover,
.site-header.is-scrolled .book-pill:focus-visible {
    background: transparent !important;
    color: var(--ink) !important;
}

body.has-menu-open .site-header .book-pill,
body.has-menu-open .site-header.is-scrolled .book-pill {
    border-color: transparent;
    background: transparent;
    color: var(--menu-ink);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.74);
    color: rgba(255, 255, 255, 0.96);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    border-color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    opacity: 1;
}

.nav-toggle__lines {
    width: 1.4rem;
    height: 0.9rem;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after,
.nav-toggle__lines span {
    height: 2px;
}

.mobile-nav {
    background: linear-gradient(180deg, rgba(28, 22, 17, 0.97) 0%, rgba(42, 33, 25, 0.985) 100%);
}

.site-header:not(.is-scrolled) .nav-link.is-active,
body.has-menu-open .site-header .nav-link.is-active {
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
}

body.has-menu-open .site-header,
body.has-menu-open .site-header.is-scrolled {
    z-index: 90;
    opacity: 1;
    visibility: visible;
}

body.has-menu-open .site-header .brand,
body.has-menu-open .site-header .nav-toggle {
    color: var(--menu-ink);
    opacity: 1;
    visibility: visible;
}

body.has-menu-open .site-header .header-shell {
    position: relative;
    z-index: 80;
}

.page-hero .hero-actions {
    gap: 1.5rem;
}

.page-hero .hero-actions .hero-link--underlined {
    position: relative;
    min-height: auto;
    margin-top: 1.75rem;
    padding: 0 0 0.35rem;
    border: none;
    border-radius: 0;
    background: transparent;
    align-items: center;
    justify-content: flex-start;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-transform: none;
    text-shadow: none;
    color: var(--white);
}

.page-hero .hero-actions .hero-link--underlined::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    content: "";
    transition: background 0.3s ease;
}

.page-hero .hero-actions .hero-link--underlined:hover::after,
.page-hero .hero-actions .hero-link--underlined:focus-visible::after {
    background: rgba(255, 255, 255, 0.7);
}

.page-hero .hero-actions .hero-link--underlined:hover,
.page-hero .hero-actions .hero-link--underlined:focus-visible {
    opacity: 0.85;
}

.page-hero--residences::after {
    background: linear-gradient(180deg, rgba(14, 12, 10, 0.66) 0%, rgba(14, 12, 10, 0.6) 34%, rgba(14, 12, 10, 0.82) 100%);
}

.page-hero--experiences::after {
    background: linear-gradient(180deg, rgba(12, 16, 14, 0.66) 0%, rgba(12, 16, 14, 0.6) 34%, rgba(12, 16, 14, 0.82) 100%);
}

.page-hero--residences .hero-detail-list {
    padding: 1rem 1.1rem 1.05rem;
    background: linear-gradient(180deg, rgba(14, 10, 6, 0.28), rgba(14, 10, 6, 0.12));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.page-hero__content--split .title-xl,
.page-hero__content--split .lead,
.page-hero__content--split .hero-detail-list {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.mobile-nav__item {
    font-size: clamp(2.15rem, 10vw, 4.6rem);
    padding: 0.28rem 0 0.46rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact a,
.footer-note a {
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(44, 36, 28, 0.28);
}

.footer-contact a:hover,
.footer-note a:hover {
    text-decoration-color: rgba(44, 36, 28, 0.72);
}

.footer-contact .footer-enquiry {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 0.4rem;
    padding-bottom: 0.2rem;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    text-decoration: none;
}

.footer-enquiry::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    content: "";
    transition: opacity 0.2s ease;
}

.footer-contact .footer-enquiry:hover::after {
    opacity: 0.7;
}

.footer-contact .footer-enquiry:hover,
.footer-contact .footer-enquiry:focus-visible {
    opacity: 1;
    color: var(--ink);
}

@media (max-width: 720px) {
    .page-hero--residences::after,
    .page-hero--experiences::after {
        background:
            linear-gradient(180deg, rgba(12, 10, 8, 0.46) 0%, rgba(12, 10, 8, 0.18) 28%, rgba(12, 10, 8, 0.84) 100%),
            linear-gradient(90deg, rgba(12, 10, 8, 0.46) 0%, rgba(12, 10, 8, 0.08) 72%);
    }

    .page-hero__content--split {
        display: flex;
        width: 100%;
        max-width: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.35rem;
    }

    .page-hero__content--split .page-hero__intro {
        width: min(100%, 30rem);
        max-width: min(100%, 30rem);
        padding-right: 0.6rem;
        padding-left: 0;
    }

    .page-hero__content--split .title-xl {
        max-width: 10ch;
    }

    .page-hero__content--split .lead {
        max-width: 28rem;
    }

    .page-hero__content--split .hero-detail-list {
        width: min(100%, 28rem);
        max-width: none;
    }

    .page-hero--home .hero-actions,
    .page-hero--residences .hero-actions,
    .page-hero--short .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: 1.75rem;
    }

    .page-hero.page-hero--home .hero-actions .hero-link--underlined,
    .page-hero.page-hero--residences .hero-actions .hero-link--underlined,
    .page-hero.page-hero--short .hero-actions .hero-link--underlined {
        width: 100%;
        min-height: 3rem;
        margin-top: 0;
        padding: 0.85rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.64);
        border-radius: 999px;
        justify-content: center;
        font-family: "Manrope", sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1;
        text-transform: uppercase;
    }

    .page-hero.page-hero--home .hero-actions .hero-link--underlined::after,
    .page-hero.page-hero--residences .hero-actions .hero-link--underlined::after,
    .page-hero.page-hero--short .hero-actions .hero-link--underlined::after {
        display: none;
    }

    .page-hero.page-hero--home .hero-actions .hero-link--underlined:first-child,
    .page-hero.page-hero--residences .hero-actions .hero-link--underlined:first-child,
    .page-hero.page-hero--short .hero-actions .hero-link--underlined:first-child {
        border-color: rgba(255, 255, 255, 0.94);
        background: rgba(255, 255, 255, 0.94);
        color: var(--ink);
    }

    .mobile-nav__item {
        font-size: clamp(2rem, 11vw, 3.4rem);
        padding: 0.34rem 0 0.52rem;
    }

    .brand,
    .mobile-nav__meta-block a,
    .mobile-nav__action,
    .footer-contact a,
    .footer-note a,
    .footer-nav a,
    .text-link,
    .kicker-link {
        display: inline-flex;
        min-height: 2.75rem;
        align-items: center;
    }
}
