:root {
    --bg: #11100f;
    --surface: #1c1916;
    --ink: #f3eee6;
    --muted: #b9aea0;
    --accent: #c5a56a;
    --accent-ink: #17130d;
    --line: color-mix(in srgb, var(--ink) 17%, transparent);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    --radius: 0px;
    --container: min(1240px, calc(100vw - 48px));
    --display: "Playfair Display", Georgia, serif;
    --body: Inter, Arial, sans-serif;
}

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 400 16px/1.65 var(--body);
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.display {
    font-family: var(--display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.section {
    padding: 110px 0;
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head h2,
.page-section h2 {
    margin: 0 0 20px;
    font: 500 clamp(2rem, 4.4vw, 4.2rem) / 1 var(--display);
    letter-spacing: -0.035em;
}

.section-head p,
.lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 680px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    max-width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    color: var(--accent);
    font-weight: 750;
}

.text-link::after {
    content: "→";
}

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    background: color-mix(in srgb, var(--bg) 84%, transparent);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: 0.25s;
}

.site-header.scrolled {
    border-color: var(--line);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 260px;
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1;
}

.brand img {
    width: auto;
    max-width: 190px;
    height: 46px;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav a {
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding: 160px 0 110px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
            90deg,
            color-mix(in srgb, var(--bg) 92%, transparent) 0%,
            color-mix(in srgb, var(--bg) 42%, transparent) 60%,
            color-mix(in srgb, var(--bg) 18%, transparent)
    );
}

.hero-copy {
    max-width: 850px;
}

.hero h1 {
    margin: 0;
    max-width: 900px;
    font: 500 clamp(3.2rem, 7.2vw, 7.2rem) / 0.88 var(--display);
    letter-spacing: -0.055em;
}

.hero .lead {
    margin: 28px 0 34px;
    max-width: 680px;
    color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-strip {
    position: relative;
    z-index: 3;
    margin: -40px auto 0;
    width: min(1160px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.booking-field {
    padding: 17px 20px;
    border-right: 1px solid var(--line);
}

.booking-field label {
    display: block;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 5px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.booking-strip .btn {
    height: 100%;
    min-width: 190px;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
}

.pathway {
    position: relative;
    min-height: 270px;
    padding: 34px;
    border-right: 1px solid var(--line);
    transition: 0.25s;
}

.pathway:last-child {
    border-right: 0;
}

.pathway:hover {
    background: var(--surface);
    transform: translateY(-6px);
}

.pathway .index {
    color: var(--accent);
    font-size: 0.7rem;
}

.pathway h3 {
    margin: 56px 0 12px;
    font: 500 1.75rem/1 var(--display);
}

.pathway p,
.card p,
.split-copy p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    min-height: 620px;
}

.split.reverse {
    grid-template-columns: 0.98fr 1.02fr;
}

.split.reverse .split-media {
    order: 2;
}

.split-media {
    min-height: 520px;
}

.split-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 110px);
    background: var(--surface);
}

.split-copy h2 {
    margin: 0 0 24px;
    font: 500 clamp(2.2rem, 4.4vw, 4.6rem) / 0.98 var(--display);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
}

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

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

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

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

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

.card {
    padding: 30px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 68%, transparent);
}

.card h3 {
    margin: 0 0 14px;
    font: 500 1.45rem/1.08 var(--display);
    overflow-wrap: anywhere;
}

.image-cards .card {
    padding: 0;
    overflow: visible;
}

.image-cards .card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.image-cards .card-body {
    min-width: 0;
    padding: 26px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

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

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

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

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

.feature-list > div {
    padding: 30px;
    background: var(--bg);
}

.feature-list strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 1.35rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid figure:first-child {
    grid-row: 1/3;
}

.gallery-grid figure:last-child {
    grid-column: 2/4;
}

.faq {
    max-width: 900px;
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--display);
    font-size: 1.28rem;
}

.faq summary::after {
    content: "+";
    float: right;
    color: var(--accent);
}

.faq details[open] summary::after {
    content: "−";
}

.faq p {
    max-width: 760px;
    color: var(--muted);
}

.final-cta {
    text-align: center;
    padding: 110px 24px;
    background: var(--accent);
    color: var(--accent-ink);
}

.final-cta h2 {
    margin: 0 auto 22px;
    max-width: 800px;
    font: 500 clamp(2.6rem, 5.3vw, 5.7rem) / 0.95 var(--display);
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 32px;
}

.final-cta .btn {
    border-color: var(--accent-ink);
    color: var(--accent-ink);
}

.page-hero {
    min-height: 66vh;
    padding: 170px 0 90px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
            90deg,
            color-mix(in srgb, var(--bg) 94%, transparent),
            color-mix(in srgb, var(--bg) 30%, transparent)
    );
}

.page-hero h1 {
    margin: 0;
    max-width: 920px;
    font: 500 clamp(3rem, 6.2vw, 6.2rem) / 0.92 var(--display);
    letter-spacing: -0.045em;
}

.page-hero .lead {
    margin: 24px 0 0;
}

.page-section {
    padding: 90px 0;
    border-top: 1px solid var(--line);
}

.room-card .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.pill {
    padding: 6px 10px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.request-form {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    outline: none;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.policy {
    max-width: 900px;
}

.policy-intro {
    padding: 24px;
    border: 1px solid var(--accent);
    color: var(--muted);
}

.policy section {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.policy section h2 {
    font-size: 1.8rem;
}

.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand p {
    max-width: 370px;
    color: var(--muted);
}

.footer-col h3 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.footer-col a {
    display: block;
    margin: 9px 0;
    color: var(--muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.75rem;
}

.cookie {
    position: fixed;
    z-index: 80;
    left: 24px;
    bottom: 24px;
    width: min(480px, calc(100vw - 48px));
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.cookie[hidden] {
    display: none;
}

.cookie p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.88rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie .btn {
    flex: 1 1 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.66rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease,
    transform 0.65s ease;
}

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

/* Navigation modes: compact header navigation or an immersive resort drawer. */
.menu-button {
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: auto;
    min-width: 48px;
    padding: 0 13px;
}

.menu-lines {
    display: grid;
    gap: 4px;
    width: 20px;
}

.menu-lines i {
    display: block;
    height: 1px;
    background: currentColor;
}

.menu-label {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.drawer-head,
.nav-close,
.nav-backdrop {
    display: none;
}

.nav-mode-drawer .header-inner {
    grid-template-columns: auto 1fr auto;
}

.nav-mode-drawer .menu-button {
    display: inline-flex;
}

.nav-mode-drawer .brand {
    justify-self: center;
    max-width: 360px;
    text-align: center;
}

.drawer-nav {
    position: fixed;
    z-index: 102;
    inset: 0 auto 0 0;
    width: min(460px, 92vw);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 34px clamp(28px, 5vw, 64px) 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: var(--surface);
    border-right: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translate3d(-105%, 0, 0);
    visibility: hidden;
    transition: transform 0.42s cubic-bezier(0.22, 0.76, 0.2, 1),
    visibility 0.42s;
}

.drawer-nav.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.drawer-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font: 500 clamp(1.8rem, 3.3vw, 2.7rem) / 1.05 var(--display);
    letter-spacing: -0.025em;
    text-transform: none;
}

.drawer-nav .drawer-head {
    position: absolute;
    inset: 30px 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drawer-nav .nav-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 1.8rem;
    line-height: 1;
}

.drawer-backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(3, 8, 7, 0.7);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
    transition: 0.35s;
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Established legal HTML is intentionally rich: lists, tables and long sections. */
.legal-page {
    padding: 160px 0 100px;
    min-height: 70vh;
    overflow-wrap: anywhere;
}

.legal-page > .container {
    max-width: 980px;
    min-width: 0;
}

.legal-page h1 {
    font: 500 clamp(2.2rem, 6vw, 6rem) / 0.98 var(--display);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.legal-page h2 {
    margin: 58px 0 18px;
    font: 500 clamp(1.7rem, 3.1vw, 2.7rem) / 1.05 var(--display);
}

.legal-page h3 {
    margin: 30px 0 12px;
    font: 600 1.15rem/1.3 var(--body);
}

.legal-page p,
.legal-page li {
    color: var(--muted);
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page section {
    min-width: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.legal-page ul,
.legal-page ol {
    padding-left: 1.3rem;
}

.legal-page li + li {
    margin-top: 9px;
}

.legal-page table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.92rem;
    -webkit-overflow-scrolling: touch;
}

.legal-page tbody {
    display: table;
    width: max-content;
    min-width: 100%;
}

.legal-page th,
.legal-page td {
    padding: 14px;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--line);
}

.legal-page th {
    background: var(--surface);
    color: var(--ink);
}

.legal-page .table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-page .legal-box,
.legal-page .legal-notice,
.legal-page .legal-warning {
    margin: 24px 0;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--surface);
}

/* Structural variants selected by the deterministic blueprint. */
.preview-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(36px, 7vw, 110px);
    align-items: center;
}

.preview-media {
    min-height: 560px;
    overflow: hidden;
}

.preview-copy .section-head {
    margin-bottom: 28px;
}

.layout-poster {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    padding: 110px 0;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.layout-poster::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
            90deg,
            color-mix(in srgb, var(--bg) 92%, transparent),
            color-mix(in srgb, var(--bg) 22%, transparent)
    );
}

.layout-poster .container {
    max-width: 760px;
    margin-left: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
    margin-right: auto;
}

.layout-poster h2 {
    margin: 0 0 22px;
    font: 500 clamp(2rem, 5.3vw, 5.3rem) / 0.98 var(--display);
}

.layout-poster p {
    max-width: 620px;
    color: var(--muted);
}

.offers-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.offers-intro .section-head {
    margin: 0;
}

.layout-stacked-list .feature-list {
    grid-template-columns: 1fr;
}

.layout-stacked-list .feature-list > a {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 40px;
    padding: 28px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.layout-stacked-list .feature-list span {
    font: 500 1.55rem var(--display);
}

.layout-stacked-list .feature-list small {
    color: var(--muted);
    font-size: 0.95rem;
}

.module-band {
    display: block;
}

/* .module-section .module-band ... (3 classes) rather than plain .module-band
   ...: Grand Editorial's theme.css sets an eyebrow/heading grid split on the
   equally-specific ".module-section .section-head" and loads after base.css,
   so a same-specificity reset here would lose that cascade tie and never
   apply — this needs to genuinely outrank it, not just come first. */
.module-section .module-band .section-head {
    /* Full-width intro block, not a side-by-side column: a plain intro (eyebrow
       + heading + one paragraph) has no image to justify pairing it against the
       cards/button block the way .preview-grid/.layout-image-feature do — and
       in Grand Editorial, .section-head has its OWN eyebrow/heading grid split
       (theme.css), which would nest inside an already-narrow column and squeeze
       the heading into a sliver. Reset that split here too, unconditionally. */
    display: block;
    grid-template-columns: none;
    max-width: 720px;
    margin: 0 0 40px;
}

.module-section .module-band .section-head .eyebrow,
.module-section .module-band .section-head h2,
.module-section .module-band .section-head p {
    grid-column: auto;
}

.layout-compact-list .feature-list span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.core-preview {
    overflow: clip;
}

.layout-featured-room .room-card:first-child,
.layout-featured-area .card:first-child,
.layout-featured-dining .card:first-child {
    grid-column: span 2;
}

.layout-featured-room .room-card:first-child .card-image,
.layout-featured-dining .card:first-child .card-image {
    aspect-ratio: 2/1;
}

.layout-alternating-rooms .cards {
    grid-template-columns: 1fr;
}

.layout-alternating-rooms .room-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
}

.layout-alternating-rooms .room-card:nth-child(even) {
    grid-template-columns: 0.92fr 1.08fr;
}

.layout-alternating-rooms .room-card:nth-child(even) .card-image {
    order: 2;
}

.layout-alternating-rooms .card-image {
    aspect-ratio: auto;
    min-height: 420px;
}

.layout-editorial-areas .cards {
    grid-template-columns: 1fr;
}

.layout-editorial-areas .card {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.layout-mosaic-dining .cards {
    /* minmax(0, ...) keeps these tracks from growing past their share of the
       row: without it, the spanning first-card image below (height set with no
       matching width, still under the shared aspect-ratio:4/3 rule) derives its
       width FROM that height instead of the grid column, and a bare fr track's
       automatic minimum lets that oversized min-content blow the column out —
       ballooning column 1 and crushing column 2's two cards into a sliver. */
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
}

.layout-mosaic-dining .card:first-child {
    grid-row: span 2;
}

.layout-mosaic-dining .card:first-child .card-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
}

.mobile-booking {
    display: none;
}

.room-price {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2px 14px;
    margin: 18px 0 20px;
    padding: 16px 0;
    border-block: 1px solid var(--line);
}

.room-price span {
    grid-column: 1/-1;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.room-price strong {
    font: 500 1.5rem/1.1 var(--display);
    color: var(--accent);
}

.room-price small {
    color: var(--muted);
    font-size: 0.75rem;
}

.pricing-disclaimer {
    max-width: 850px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

/* Responsive imagery and structural media variants */
picture {
    display: block;
}

.split-media > picture,
.preview-media > picture,
.card-image > picture,
.module-feature-media > picture,
.pathway-media > picture,
.gallery-media figure > picture {
    width: 100%;
    height: 100%;
}

.hero,
.page-hero,
.layout-poster,
.overview-panorama {
    background-image: var(--bg-desktop);
}

.hero-frame {
    display: none;
}

.hero.layout-centered,
.hero.layout-cinematic {
    align-items: center;
    text-align: center;
}

.hero.layout-centered .hero-copy,
.hero.layout-cinematic .hero-copy {
    margin-inline: auto;
}

.hero.layout-centered .hero-actions,
.hero.layout-cinematic .hero-actions {
    justify-content: center;
}

.hero.layout-centered .lead,
.hero.layout-cinematic .lead {
    margin-inline: auto;
}

.hero.layout-cinematic h1 {
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

.hero.layout-offset-card .hero-copy {
    width: min(760px, calc(100% - 48px));
    margin-left: max(24px, calc((100vw - min(1280px, calc(100vw - 72px))) / 2));
    margin-right: auto;
    padding: 48px;
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.hero.layout-split-panel {
    background-image: none;
    background-color: var(--bg);
    align-items: center;
}

.hero.layout-split-panel::before {
    background: linear-gradient(90deg, var(--bg) 0 46%, transparent 67%);
}

.hero.layout-split-panel .hero-frame {
    position: absolute;
    z-index: -2;
    inset: 0 0 0 46%;
    display: block;
    background-image: var(--bg-desktop);
    background-position: center;
    background-size: cover;
}

.hero.layout-split-panel .hero-copy {
    width: 46%;
    margin-left: max(24px, calc((100vw - min(1280px, calc(100vw - 72px))) / 2));
    margin-right: auto;
}

.hero.layout-split-panel h1 {
    font-size: clamp(3.3rem, 5.3vw, 6rem);
}

.overview-panorama {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.overview-panorama::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
            0deg,
            color-mix(in srgb, var(--bg) 94%, transparent),
            color-mix(in srgb, var(--bg) 12%, transparent) 75%
    );
}

.overview-panel {
    width: min(720px, 100%);
    padding: 46px;
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.overview-panel .section-head {
    margin: 0;
}

.gallery-media {
    display: grid;
    gap: 10px;
}

.gallery-media figure {
    margin: 0;
    overflow: hidden;
}

.gallery-masonry {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: 260px 210px 250px;
}

.gallery-masonry figure:first-child {
    grid-row: span 2;
}

.gallery-masonry figure:nth-child(4) {
    grid-column: 2/4;
}

.gallery-six-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 14px;
}

.gallery-carousel figure {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: min(76vw, 720px);
    height: 480px;
    scroll-snap-align: start;
}

.gallery-carousel figure:first-child {
    margin-left: 0;
}

.layout-image-feature > .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.module-feature-media {
    min-height: 620px;
    overflow: hidden;
}

.module-feature-copy .cards {
    grid-template-columns: 1fr;
}

.module-feature-copy .section-head {
    display: block;
}

.module-feature-copy .section-head h2,
.module-feature-copy .section-head p {
    grid-column: auto;
}

.layout-image-route .pathway {
    padding: 0;
    overflow: hidden;
}

.layout-image-route .pathway-media {
    height: 210px;
    overflow: hidden;
}

.layout-image-route .pathway > .index,
.layout-image-route .pathway > h3,
.layout-image-route .pathway > p {
    display: block;
    margin-inline: 28px;
}

.layout-image-route .pathway > .index {
    margin-top: 24px;
}

.layout-image-route .pathway > h3 {
    margin-top: 24px;
}

.layout-image-route .pathway > p {
    margin-bottom: 30px;
}

.layout-room-slider .cards,
.layout-dining-slider .cards {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 18px;
}

.layout-room-slider .card,
.layout-dining-slider .card {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: min(76vw, 520px);
    height: auto;
    scroll-snap-align: start;
}

.layout-room-slider .card-image,
.layout-dining-slider .card-image {
    height: 340px;
    aspect-ratio: auto;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
}

.js .reveal.visible {
    opacity: 1;
    transform: none;
}

/* Shared availability form foundation. Each design adds its own visual voice. */
.booking-strip {
    isolation: isolate;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(190px, 0.9fr);
    align-items: stretch;
    overflow: visible;
}

.booking-field {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    transition: background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.booking-field:focus-within {
    z-index: 1;
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
    box-shadow: inset 0 -2px 0 var(--accent);
}

.booking-field label {
    line-height: 1.2;
}

.booking-field input,
.booking-field select {
    min-width: 0;
    min-height: 32px;
    padding: 3px 28px 3px 0;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: color 0.2s ease;
}

.booking-field input[type="text"] {
    cursor: text;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: 0;
    color: var(--accent);
}

.booking-field input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    filter: grayscale(1);
}

.booking-submit {
    position: relative;
    min-width: 0;
    padding-inline: 28px;
    overflow: hidden;
    white-space: normal;
    line-height: 1.25;
}

.booking-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--ink) 12%, transparent);
    transform: translateX(-102%);
    transition: transform 0.28s ease;
}

.booking-submit:hover::before {
    transform: translateX(0);
}

.booking-submit > span {
    position: relative;
    z-index: 1;
}

.booking-submit-icon {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.booking-submit:hover .booking-submit-icon {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .hero,
    .page-hero,
    .layout-poster,
    .overview-panorama {
        background-image: var(--bg-small);
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .nav {
        position: fixed;
        inset: 82px 0 auto;
        padding: 28px 24px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
    }

    .nav.open {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .booking-strip {
        grid-template-columns: 1fr 1fr;
        margin-top: 0;
    }

    .booking-strip .btn {
        grid-column: 1/-1;
        min-height: 58px;
    }

    .pathway-grid,
    .cards.four {
        grid-template-columns: 1fr 1fr;
    }

    .split,
    .split.reverse {
        grid-template-columns: 1fr;
    }

    .split.reverse .split-media {
        order: 0;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-col:last-child {
        grid-column: 2/4;
    }

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

    .site-header:not(.nav-mode-drawer) .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-header:not(.nav-mode-drawer) .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .site-header:not(.nav-mode-drawer) .menu-button {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
    }

    .site-header:not(.nav-mode-drawer) .menu-label {
        display: none;
    }

    .site-header:not(.nav-mode-drawer) .header-actions {
        display: none;
    }

    .nav-mode-drawer .header-actions .btn {
        display: inline-flex;
    }

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

    .preview-media {
        min-height: 440px;
    }

    .layout-poster {
        min-height: 620px;
    }

    .layout-alternating-rooms .room-card,
    .layout-alternating-rooms .room-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .layout-alternating-rooms .room-card:nth-child(even) .card-image {
        order: 0;
    }

    .hero.layout-split-panel {
        background-image: var(--bg-desktop);
        align-items: flex-end;
    }

    .hero.layout-split-panel::before {
        background: linear-gradient(
                0deg,
                color-mix(in srgb, var(--bg) 92%, transparent),
                color-mix(in srgb, var(--bg) 18%, transparent)
        );
    }

    .hero.layout-split-panel .hero-frame {
        display: none;
    }

    .hero.layout-split-panel .hero-copy {
        width: auto;
        margin-inline: auto;
    }

    .layout-image-feature > .container {
        grid-template-columns: 1fr;
    }

    .module-feature-media {
        min-height: 480px;
    }

    .gallery-six-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 260px);
    }

    .booking-strip {
        grid-template-columns: 1fr 1fr;
    }

    .booking-strip .booking-submit {
        grid-column: 1/-1;
        min-height: 62px;
    }

    .booking-field {
        min-height: 76px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: calc(100vw - 32px);
    }

    .section {
        padding: 76px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .nav {
        inset: 72px 0 auto;
    }

    .brand {
        font-size: 1rem;
    }

    .brand img {
        max-width: 150px;
        height: 40px;
    }

    .hero {
        min-height: 78vh;
        padding: 130px 0 70px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 5.2rem);
    }

    .hero-actions {
        display: grid;
    }

    .booking-strip {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .booking-field {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pathway-grid,
    .cards,
    .cards.four,
    .feature-list,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .pathway {
        min-height: auto;
    }

    .pathway h3 {
        margin-top: 28px;
    }

    .split-media {
        min-height: 340px;
    }

    .split-copy {
        padding: 48px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 190px 190px;
    }

    .gallery-grid figure:first-child {
        grid-column: 1/3;
        grid-row: auto;
    }

    .gallery-grid figure:last-child {
        grid-column: auto;
    }

    .footer-col:last-child {
        grid-column: auto;
    }

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

    .page-hero {
        min-height: 58vh;
        padding-top: 130px;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-copy {
        min-width: 0;
        overflow: visible;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 10.5vw, 3.4rem);
        overflow-wrap: anywhere;
    }

    .section-head h2,
    .page-section h2,
    .split-copy h2,
    .layout-poster h2,
    .final-cta h2 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .booking-strip {
        overflow: hidden;
    }

    .booking-field,
    .booking-field input,
    .booking-field select {
        min-width: 0;
        max-width: 100%;
    }

    .nav-mode-drawer .header-inner {
        grid-template-columns: auto 1fr;
    }

    .nav-mode-drawer .brand {
        justify-self: end;
        text-align: right;
    }

    .nav-mode-drawer .header-actions {
        display: none;
    }

    .nav-mode-drawer .menu-label {
        display: none;
    }

    .drawer-nav {
        width: 100%;
        max-width: none;
    }

    .legal-page {
        padding: 120px 0 76px;
    }

    .legal-page th,
    .legal-page td {
        min-width: 150px;
        padding: 11px;
    }

    body {
        padding-bottom: 66px;
    }

    .preview-media {
        min-height: 330px;
    }

    .layout-poster {
        min-height: 580px;
        padding: 80px 0;
    }

    .layout-poster .container {
        margin-inline: auto;
    }

    .offers-intro {
        display: block;
    }

    .offers-intro .btn {
        margin-top: 22px;
    }

    .layout-stacked-list .feature-list > a {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .layout-featured-room .room-card:first-child,
    .layout-featured-area .card:first-child,
    .layout-featured-dining .card:first-child {
        grid-column: auto;
    }

    .layout-mosaic-dining .cards {
        grid-template-columns: 1fr;
    }

    .layout-mosaic-dining .card:first-child {
        grid-row: auto;
    }

    .layout-mosaic-dining .card:first-child .card-image {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .layout-editorial-areas .card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mobile-booking {
        position: fixed;
        z-index: 70;
        inset: auto 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 66px;
        padding: 12px 20px;
        background: var(--accent);
        color: var(--accent-ink);
        font-size: 0.76rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.24);
    }

    .cookie {
        bottom: 82px;
    }

    .hero,
    .page-hero,
    .layout-poster,
    .overview-panorama {
        background-image: var(--bg-mobile);
    }

    .hero.layout-offset-card .hero-copy {
        width: calc(100% - 24px);
        margin-inline: auto;
        padding: 30px 22px;
    }

    .hero.layout-split-panel {
        background-image: var(--bg-mobile);
    }

    .overview-panorama {
        min-height: 620px;
    }

    .overview-panel {
        padding: 32px 22px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 190px 190px;
    }

    .gallery-masonry figure:first-child {
        grid-column: 1/3;
        grid-row: auto;
    }

    .gallery-masonry figure:nth-child(4) {
        grid-column: auto;
    }

    .gallery-six-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 190px);
    }

    .gallery-carousel figure {
        flex-basis: 88vw;
        height: 360px;
    }

    .module-feature-media {
        min-height: 360px;
    }

    .layout-room-slider .card,
    .layout-dining-slider .card {
        flex-basis: 88vw;
    }

    .layout-room-slider .card-image,
    .layout-dining-slider .card-image {
        height: 280px;
    }

    .hero > .container,
    .hero .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-inline: 12px;
    }

    .hero .hero-copy h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2rem, 8.4vw, 2.5rem);
        line-height: 0.97;
        letter-spacing: 0;
        text-wrap: balance;
        overflow-wrap: anywhere;
    }

    .nav-mode-drawer .brand {
        max-width: calc(100vw - 96px);
        justify-self: center;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.08;
        letter-spacing: 0.09em;
        white-space: normal;
    }

    .site-header:not(.nav-mode-drawer) .header-inner {
        width: calc(100% - 24px);
        grid-template-columns: minmax(0, 1fr) 48px;
        gap: 8px;
    }

    .site-header:not(.nav-mode-drawer) .brand {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .cookie {
        left: 12px;
        bottom: 78px;
        width: calc(100vw - 24px);
        padding: 16px;
    }

    .cookie p {
        margin-bottom: 12px;
        font-size: 0.78rem;
    }

    .cookie-actions {
        gap: 6px;
    }

    .cookie .btn {
        min-height: 38px;
    }

    .booking-strip {
        grid-template-columns: 1fr;
    }

    .booking-field {
        min-height: 68px;
        padding: 14px 20px;
    }

    .booking-strip .booking-submit {
        min-height: 60px;
    }

    .booking-field input,
    .booking-field select {
        min-height: 28px;
    }
}

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

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