:root {
    --color-background: #f4f0e8;
    --color-surface: #fffdf8;
    --color-surface-soft: #e8e1d6;
    --color-text: #16201b;
    --color-text-muted: #626a64;
    --color-border: rgba(22, 32, 27, 0.14);
    --color-primary: #31483d;
    --color-primary-dark: #1f3028;
    --color-accent: #b78b5f;
    --color-accent-soft: #dfc7ac;
    --color-light-green: #dbe3d8;
    --color-dark: #111713;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;
    --shadow-soft: 0 1.25rem 3.5rem rgba(17, 23, 19, 0.09);
    --shadow-medium: 0 1.75rem 5rem rgba(17, 23, 19, 0.16);
    --radius-small: 0.25rem;
    --radius-medium: 0.5rem;
    --section-space: clamp(5rem, 9vw, 9.5rem);
    --shell: min(100% - 2rem, 86rem);
    --header-height: 5.5rem;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    background: var(--color-surface-soft);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
blockquote,
figure {
    margin-top: 0;
}

ul,
ol {
    padding-left: 1.2rem;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3.5rem, 11vw, 8.5rem);
}

h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 7.2vw, 6.2rem);
}

h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
}

svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

address {
    font-style: normal;
}

[hidden] {
    display: none !important;
}

::selection {
    background: var(--color-accent-soft);
    color: var(--color-dark);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    transform: translateY(-150%);
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    color: var(--color-primary);
    font-size: 0.69rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.76);
}

.lead {
    font-size: clamp(1.12rem, 2vw, 1.42rem);
    line-height: 1.55;
}

.small-note,
.data-note,
.form-note {
    color: var(--color-text-muted);
    font-size: 0.77rem;
    line-height: 1.6;
}

.data-note {
    margin: 2.25rem 0 0;
}

.button {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.015em;
    transition: transform 250ms ease, background-color 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 1.05rem;
    transition: transform 250ms ease;
}

.button:hover svg {
    transform: translateX(0.2rem);
}

.button-primary {
    background: var(--color-primary);
    color: #fff;
}

.button-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 0.75rem 1.75rem rgba(31, 48, 40, 0.18);
}

.button-accent {
    background: var(--color-accent);
    color: #151a16;
}

.button-accent:hover {
    background: #c4996e;
    box-shadow: 0 0.75rem 1.75rem rgba(183, 139, 95, 0.24);
}

.button-outline {
    border-color: var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.button-outline:hover {
    border-color: var(--color-primary);
    background: rgba(49, 72, 61, 0.06);
}

.button-light {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.button-light:hover {
    background: #fff;
    color: var(--color-dark);
}

.button-small {
    min-height: 2.8rem;
    padding-inline: 1rem;
}

.button-large {
    min-height: 3.7rem;
    padding-inline: 1.45rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.text-link,
.text-button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: none;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-link svg {
    width: 1rem;
    transition: transform 250ms ease;
}

.text-link:hover svg {
    transform: translateX(0.25rem);
}

.text-link-light {
    color: #fff;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: #fff;
    transition: height 280ms ease, background-color 280ms ease, color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .18);
    content: "";
    transition: background-color 280ms ease;
}

.site-header.is-scrolled {
    height: 4.6rem;
    background: rgba(244, 240, 232, 0.91);
    color: var(--color-text);
    box-shadow: 0 0.5rem 2rem rgba(17, 23, 19, .06);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after {
    background: var(--color-border);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
}

.brand {
    width: max-content;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.brand-meta {
    margin-top: 0.28rem;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.header-cta {
    display: none;
}

.nav-toggle,
.nav-close {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    grid-area: 1/1;
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
}

.nav-toggle span:nth-child(2) {
    transform: translateY(-0.24rem);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(0.24rem);
}

.nav-panel {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem 2rem;
    visibility: hidden;
    transform: translateY(-1.25rem);
    background: var(--color-primary-dark);
    color: #fff;
    opacity: 0;
    transition: visibility 0s linear 350ms, transform 350ms cubic-bezier(.2, .75, .2, 1), opacity 300ms ease;
}

.nav-panel.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
}

.nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: 1rem;
}

.nav-links {
    display: grid;
    margin-block: auto;
}

.nav-links a {
    padding: 0.45rem 0;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 10vw, 3.6rem);
    line-height: 1;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
    color: var(--color-accent-soft);
}

.nav-panel-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .68);
    font-size: 0.72rem;
}

.nav-panel-contact p {
    margin: 0;
}

/* Hero */
.hero {
    min-height: max(43rem, 100svh);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-dark);
    color: #fff;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    transform: scale(1.035);
    will-change: transform;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(7, 13, 9, .79) 0%, rgba(7, 13, 9, .35) 58%, rgba(7, 13, 9, .14) 100%), linear-gradient(0deg, rgba(7, 13, 9, .67) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    padding-top: 8rem;
    padding-bottom: 8.7rem;
}

.hero-copy {
    max-width: 55rem;
}

.hero-copy h1 {
    max-width: 54rem;
    margin-bottom: 1.15rem;
}

.hero-lead {
    max-width: 37rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, .79);
    font-size: clamp(1rem, 2.2vw, 1.28rem);
}

.hero-aside {
    display: none;
}

.hero-trust {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    list-style: none;
}

.hero-trust li {
    padding-top: 0.75rem;
    color: rgba(255, 255, 255, .68);
    font-size: 0.64rem;
    letter-spacing: 0.04em;
}

.hero-trust li::before {
    margin-right: 0.5rem;
    color: var(--color-accent-soft);
    content: "â€¢";
}

/* Booking strip and facts */
.booking-strip {
    position: relative;
    z-index: 5;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.booking-strip>.shell {
    padding-block: 2rem;
}

.booking-intro h2 {
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
}

.quick-form {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    align-content: start;
    gap: 0.42rem;
    min-width: 0;
}

.field label {
    color: var(--color-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.field label small {
    font-size: inherit;
    font-weight: 500;
    text-transform: none;
}

.field input,
.field select,
.field textarea,
.finder-step select {
    width: 100%;
    min-height: 3rem;
    padding: 0.62rem 0.75rem;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.finder-step select:focus {
    outline: 0;
    border-color: var(--color-primary);
    box-shadow: 0 1px 0 var(--color-primary);
}

.field textarea {
    resize: vertical;
}

.field [aria-invalid="true"] {
    border-color: #a23d31;
}

.field-error {
    min-height: 1rem;
    color: #9d352a;
    font-size: 0.72rem;
    line-height: 1.4;
}

.form-note {
    margin: 0;
}

.form-message {
    display: none;
    padding: 1rem;
    border-left: 3px solid var(--color-primary);
    background: var(--color-light-green);
    color: var(--color-text);
    font-size: 0.84rem;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-error {
    border-color: #9d352a;
    background: #f4dfd9;
}

.quick-facts {
    padding-block: 2.3rem;
    border-bottom: 1px solid var(--color-border);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
}

.facts-grid>div {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.facts-grid svg,
.fact-symbol {
    flex: 0 0 auto;
    width: 1.15rem;
    color: var(--color-accent);
}

.facts-grid span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    line-height: 1.5;
}

.facts-grid strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--color-text);
    font-size: 0.72rem;
}

/* Concept */
.concept {
    background: var(--color-background);
}

.concept-grid {
    display: grid;
    gap: 4rem;
}

.concept-copy p:not(.eyebrow) {
    max-width: 39rem;
    color: var(--color-text-muted);
}

.concept-copy .lead {
    color: var(--color-text);
}

.concept-stats {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.concept-stats div {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.75rem;
    align-items: baseline;
}

.concept-stats dt {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.concept-stats dd {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.concept-images {
    position: relative;
    padding: 0 0 3rem 1.5rem;
}

.image-main {
    margin: 0;
}

.image-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.image-float {
    width: 45%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    border: 0.45rem solid var(--color-background);
    box-shadow: var(--shadow-medium);
}

.image-float img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.image-note {
    position: absolute;
    right: -0.1rem;
    bottom: 0.2rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.6rem;
    line-height: 1.5;
    letter-spacing: .06em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* Rooms */
.rooms {
    background: var(--color-surface);
}

.section-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
    display: grid;
    gap: 1.5rem;
}

.split-heading>p {
    max-width: 31rem;
    color: var(--color-text-muted);
}

.room-filter {
    margin-bottom: 2.5rem;
    padding-block: 1.25rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.filter-groups,
.room-filter fieldset {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.room-filter fieldset {
    width: 100%;
    margin: 0 0 0.8rem;
    padding: 0;
    border: 0;
}

.room-filter legend {
    width: 100%;
    margin-bottom: 0.45rem;
    color: var(--color-text-muted);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.filter-chip {
    position: relative;
    cursor: pointer;
}

.filter-chip input {
    position: absolute;
    opacity: 0;
}

.filter-chip span {
    min-height: 2.7rem;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 100vw;
    font-size: 0.69rem;
    line-height: 1;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.filter-chip input:checked+span {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.filter-chip input:focus-visible+span {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.budget-filter {
    width: min(100%, 18rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    margin-block: .5rem 1rem;
}

.budget-filter label {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.budget-filter output {
    color: var(--color-text-muted);
    font-size: .68rem;
    font-weight: 700;
}

.budget-filter input {
    grid-column: 1/-1;
    width: 100%;
    accent-color: var(--color-primary);
}

.room-filter>.text-button {
    margin-top: 0.5rem;
}

.room-list,
.room-grid {
    display: grid;
    gap: 1.25rem;
}

.room-grid {
    margin-top: 1.25rem;
}

.room-card {
    overflow: hidden;
    background: var(--color-background);
    transition: opacity 250ms ease, transform 250ms ease;
}

.room-card.is-hidden {
    display: none;
}

.room-media {
    position: relative;
    overflow: hidden;
}

.room-media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(.2, .75, .2, 1);
}

.room-card:hover .room-media img {
    transform: scale(1.025);
}

.room-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .45rem .7rem;
    background: rgba(255, 255, 255, .9);
    color: var(--color-text);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.room-content {
    padding: clamp(1.4rem, 3.5vw, 2.8rem);
}

.room-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: .62rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.room-content>p {
    color: var(--color-text-muted);
}

.room-meta,
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1rem;
    padding: 0;
    list-style: none;
}

.room-meta li {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--color-text-muted);
    font-size: .7rem;
}

.room-meta svg {
    width: 1rem;
}

.room-features {
    margin: 1.5rem 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-border);
}

.room-features li {
    width: calc(50% - .5rem);
    color: var(--color-text-muted);
    font-size: .7rem;
}

.room-features li::before {
    margin-right: .5rem;
    color: var(--color-accent);
    content: "â€”";
}

.room-price {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
    gap: .3rem .5rem;
    margin: 1.5rem 0;
}

.room-price span,
.room-price small {
    color: var(--color-text-muted);
    font-size: .64rem;
}

.room-price strong {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
}

.room-price small {
    align-self: end;
    padding-bottom: .2rem;
}

.room-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.circle-button {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}

.room-card-dark {
    background: var(--color-primary-dark);
    color: #fff;
}

.room-card-dark .room-topline,
.room-card-dark p,
.room-card-dark .room-meta li,
.room-card-dark .room-price span,
.room-card-dark .room-price small {
    color: rgba(255, 255, 255, .65);
}

.room-card-dark .text-link {
    color: #fff;
}

.room-card-dark .circle-button {
    border-color: rgba(255, 255, 255, .28);
}

.empty-state {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--color-surface-soft);
    text-align: center;
}

.empty-state p {
    max-width: 40rem;
    margin-inline: auto;
    color: var(--color-text-muted);
}

/* Details */
.details {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.details-grid {
    display: grid;
    gap: 2rem;
}

.sticky-heading p {
    max-width: 30rem;
    color: var(--color-text-muted);
}

.amenities-list {
    border-top: 1px solid var(--color-border);
}

.amenity {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.amenity>span {
    color: var(--color-accent);
    font-size: .68rem;
}

.amenity h3 {
    margin-bottom: .4rem;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 0;
}

.amenity p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: .8rem;
}

.detail-note {
    margin: 1.5rem 0 0 3.5rem;
    color: var(--color-text-muted);
    font-size: .72rem;
}

/* Wellness */
.wellness {
    min-height: 52rem;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
    color: #fff;
}

.wellness-backdrop {
    position: absolute;
    inset: 0;
    opacity: .35;
}

.wellness-backdrop::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 15, 11, .92), rgba(9, 15, 11, .52));
    content: "";
}

.wellness-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-grid {
    position: relative;
    display: grid;
    gap: 3rem;
}

.wellness-copy p:not(.eyebrow) {
    max-width: 36rem;
    color: rgba(255, 255, 255, .72);
}

.wellness-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem 1rem;
    margin-block: 2rem;
    padding: 0;
    list-style: none;
}

.wellness-list li {
    color: rgba(255, 255, 255, .78);
    font-size: .72rem;
}

.wellness-list li::before {
    margin-right: .5rem;
    color: var(--color-accent-soft);
    content: "+";
}

.wellness-card {
    padding: 1.5rem;
    background: rgba(244, 240, 232, .93);
    color: var(--color-text);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.wellness-card ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wellness-card li {
    display: grid;
    grid-template-columns: 3.7rem 1fr;
    gap: 1rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--color-border);
}

.wellness-card time {
    color: var(--color-accent);
    font-size: .72rem;
    font-weight: 700;
}

.wellness-card li span {
    color: var(--color-text-muted);
    font-size: .76rem;
}

.wellness-card li strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.wellness-card .small-note {
    margin: 1rem 0 0;
}

/* Cuisine */
.cuisine {
    background: var(--color-surface-soft);
}

.cuisine-grid {
    display: grid;
    gap: 3rem;
}

.cuisine-image {
    position: relative;
}

.cuisine-image img {
    width: calc(100% - 1.5rem);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.cuisine-image span {
    position: absolute;
    right: -1rem;
    bottom: 3rem;
    padding: 1rem 1.2rem;
    background: var(--color-surface);
    color: var(--color-primary);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right bottom;
}

.cuisine-copy .lead {
    max-width: 33rem;
}

.meal-list {
    margin-block: 2rem;
    border-top: 1px solid var(--color-border);
}

.meal-list article {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .7rem;
    padding-block: 1.2rem;
    border-bottom: 1px solid var(--color-border);
}

.meal-list article>span {
    color: var(--color-accent);
    font-size: .62rem;
}

.meal-list h3 {
    margin-bottom: .35rem;
    font-size: 1.55rem;
}

.meal-list p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: .78rem;
}

.cuisine-copy .small-note {
    margin-top: 1.5rem;
}

/* Finder */
.stay-finder {
    background: var(--color-primary);
    color: #fff;
}

.finder-shell {
    display: grid;
    gap: 2.5rem;
}

.finder-intro .eyebrow {
    color: var(--color-accent-soft);
}

.finder-intro p:last-child {
    max-width: 28rem;
    color: rgba(255, 255, 255, .65);
}

.finder-form {
    display: grid;
    gap: 1rem;
}

.finder-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: .2rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.finder-step>span {
    grid-row: 1/3;
    color: var(--color-accent-soft);
    font-size: .65rem;
}

.finder-step label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.finder-step select {
    grid-column: 2;
    padding-left: 0;
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.finder-step select option {
    color: var(--color-text);
}

.finder-interests {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.2rem 0;
    padding: 0;
    border: 0;
}

.finder-interests legend {
    width: 100%;
    margin-bottom: .6rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.finder-interests label {
    position: relative;
    cursor: pointer;
}

.finder-interests input {
    position: absolute;
    opacity: 0;
}

.finder-interests span {
    min-height: 2.7rem;
    display: inline-flex;
    align-items: center;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100vw;
    font-size: .69rem;
}

.finder-interests input:checked+span {
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft);
    color: var(--color-dark);
}

.finder-interests input:focus-visible+span {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.finder-result {
    padding: clamp(1.5rem, 4vw, 2.8rem);
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
}

.finder-result h3 {
    font-size: 2.2rem;
}

.finder-result p {
    color: var(--color-text-muted);
}

.finder-result dl {
    display: grid;
    gap: .8rem;
    margin-block: 1.5rem;
}

.finder-result dl div {
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--color-border);
}

.finder-result dt {
    color: var(--color-text-muted);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.finder-result dd {
    margin: .2rem 0 0;
    font-size: .82rem;
}

/* Offers */
.offers {
    background: var(--color-background);
}

.offers-grid {
    display: grid;
    gap: 1.25rem;
}

.offer {
    overflow: hidden;
    background: var(--color-surface);
}

.offer>img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 700ms ease;
}

.offer:hover>img {
    transform: scale(1.02);
}

.offer>div {
    padding: 1.5rem;
}

.offer h3 {
    margin-bottom: .75rem;
}

.offer p {
    color: var(--color-text-muted);
}

.offer ul {
    padding-left: 1rem;
    color: rgba(255, 255, 255, .74);
    font-size: .75rem;
}

.offer-price {
    font-size: .74rem;
}

.offer-price strong {
    margin-inline: .25rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
}

.offer-large {
    min-height: 36rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.offer-large>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.offer-large::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 14, 10, .86), rgba(8, 14, 10, .06) 72%);
    content: "";
}

.offer-large .offer-overlay {
    position: relative;
    z-index: 1;
}

.offer-large .offer-price,
.offer-large .offer-price strong {
    color: #fff;
}

.offer-toned {
    background: var(--color-light-green);
}

.offer-wide {
    background: var(--color-primary-dark);
    color: #fff;
}

.offer-wide p,
.offer-wide .offer-price,
.offer-wide .offer-price strong {
    color: rgba(255, 255, 255, .72);
}

/* Experiences and seasons */
.experiences {
    background: var(--color-surface);
}

.experiences-head {
    max-width: 50rem;
    margin-bottom: 3rem;
}

.experiences-head>p:last-child {
    max-width: 38rem;
    color: var(--color-text-muted);
}

.experience-grid {
    display: grid;
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
}

.experience {
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    background: var(--color-background);
}

.experience-number {
    margin-bottom: auto;
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 2rem;
}

.experience p {
    color: var(--color-text-muted);
}

.experience-image {
    min-height: 28rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.experience-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.experience-image:hover img {
    transform: scale(1.025);
}

.experience-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 14, 10, .8), transparent 70%);
    content: "";
}

.experience-image div {
    position: relative;
    z-index: 1;
}

.experience-image span {
    font-size: .62rem;
    text-transform: uppercase;
}

.experience-image p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.experience-dark {
    background: var(--color-primary-dark);
    color: #fff;
}

.experience-dark p {
    color: rgba(255, 255, 255, .68);
}

.experience-accent {
    background: var(--color-accent-soft);
}

.seasons {
    background: var(--color-background);
}

.season-heading {
    max-width: 56rem;
}

.season-tabs {
    display: flex;
    gap: 0;
    margin: 2rem 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--color-border);
}

.season-tabs button {
    flex: 1 0 auto;
    min-height: 3rem;
    padding: .7rem 1rem;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 700;
}

.season-tabs button[aria-selected="true"] {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.season-panel {
    display: grid;
    background: var(--color-primary-dark);
    color: #fff;
}

.season-panel img {
    width: 100%;
    min-height: 19rem;
    height: 100%;
    object-fit: cover;
}

.season-panel>div {
    padding: clamp(1.5rem, 5vw, 4rem);
}

.season-panel>div>span {
    color: var(--color-accent-soft);
    font-size: .7rem;
}

.season-panel h3 {
    margin-top: 2.5rem;
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.season-panel p {
    color: rgba(255, 255, 255, .7);
}

.season-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0;
    list-style: none;
}

.season-panel li {
    padding: .45rem .7rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 100vw;
    font-size: .68rem;
}

/* Hosts and sustainability */
.hosts {
    background: var(--color-surface-soft);
}

.hosts-grid {
    display: grid;
    gap: 3rem;
}

.hosts-image {
    position: relative;
    padding-right: 1rem;
}

.hosts-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: saturate(.78);
}

.hosts-image>p {
    position: absolute;
    right: 0;
    bottom: 1rem;
    margin: 0;
    padding: .85rem 1rem;
    background: var(--color-surface);
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.1;
    box-shadow: var(--shadow-soft);
}

.hosts-image>p span {
    font-family: var(--font-body);
    color: var(--color-text-muted);
    font-size: .58rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hosts-copy blockquote {
    margin: 2rem 0;
    padding-left: 1.25rem;
    border-left: 2px solid var(--color-accent);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.hosts-copy>p:not(.eyebrow, .small-note) {
    color: var(--color-text-muted);
}

.host-points {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-block: 2rem;
}

.host-points span {
    padding: .55rem .75rem;
    border: 1px solid var(--color-border);
    border-radius: 100vw;
    font-size: .67rem;
}

.sustainability {
    background: var(--color-light-green);
}

.sustainability-grid {
    display: grid;
    gap: 3rem;
}

.sustainability-copy p {
    max-width: 38rem;
    color: var(--color-text-muted);
}

.sustainability-copy .lead {
    color: var(--color-text);
}

.measure-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(22, 32, 27, .2);
}

.measure-list li {
    display: grid;
    grid-template-columns: 2.7rem 1fr;
    gap: .75rem;
    padding-block: 1rem;
    border-bottom: 1px solid rgba(22, 32, 27, .2);
    font-size: .78rem;
}

.measure-list span {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

/* Gallery */
.gallery {
    background: var(--color-surface);
}

.gallery-filters {
    display: flex;
    gap: .4rem;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    overflow-x: auto;
}

.gallery-filters button {
    min-height: 2.75rem;
    flex: 0 0 auto;
    padding: .55rem .85rem;
    border: 1px solid var(--color-border);
    border-radius: 100vw;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: .68rem;
}

.gallery-filters button.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: .65rem;
}

.gallery-item {
    min-height: 10rem;
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--color-surface-soft);
    color: #fff;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .75, .2, 1), filter 300ms ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(.84);
}

.gallery-item span {
    position: absolute;
    bottom: .65rem;
    left: .65rem;
    padding: .3rem .5rem;
    background: rgba(17, 23, 19, .65);
    font-size: .58rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .9;
    backdrop-filter: blur(8px);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-tall img {
    aspect-ratio: 1/2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-wide img {
    aspect-ratio: 2/1;
}

.lightbox {
    width: min(95vw, 82rem);
    max-width: none;
    height: min(92svh, 58rem);
    max-height: none;
    padding: 3rem .75rem 1rem;
    overflow: hidden;
    border: 0;
    background: rgba(11, 16, 12, .96);
    color: #fff;
}

.lightbox::backdrop {
    background: rgba(5, 8, 6, .82);
    backdrop-filter: blur(8px);
}

.lightbox figure {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: .8rem;
    margin: 0;
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.lightbox figcaption {
    text-align: center;
    color: rgba(255, 255, 255, .74);
    font-size: .76rem;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: .35rem;
    right: .35rem;
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(17, 23, 19, .55);
    color: #fff;
    cursor: pointer;
}

.lightbox-prev {
    left: .3rem;
}

.lightbox-next {
    right: .3rem;
}

/* Expectations, occasions, vouchers */
.expectations {
    background: var(--color-primary-dark);
    color: #fff;
}

.expectations-grid {
    display: grid;
    gap: 2.5rem;
}

.expectations-grid>div>p:last-child {
    max-width: 31rem;
    color: rgba(255, 255, 255, .65);
}

.expectations-grid ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.expectations-grid li {
    display: grid;
    gap: 1rem;
    min-height: 8.5rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: .72rem;
}

.expectations-grid li span {
    color: var(--color-accent-soft);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.occasions {
    background: var(--color-background);
}

.occasion-grid {
    display: grid;
    gap: 1.25rem;
}

.occasion {
    padding: clamp(1.6rem, 5vw, 4rem);
}

.occasion h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.occasion p {
    max-width: 36rem;
}

.occasion ul {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding: 0;
    list-style: none;
}

.occasion li {
    padding: .45rem .65rem;
    border: 1px solid currentColor;
    border-radius: 100vw;
    font-size: .65rem;
    opacity: .74;
}

.occasion-celebrate {
    min-height: 35rem;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(15, 23, 18, .42), rgba(15, 23, 18, .76)), url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1500&q=84") center/cover;
    color: #fff;
}

.occasion-celebrate p {
    color: rgba(255, 255, 255, .74);
}

.occasion-business {
    background: var(--color-surface-soft);
}

.occasion-business p {
    color: var(--color-text-muted);
}

.vouchers {
    background: var(--color-surface);
}

.voucher-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.voucher-card {
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(145deg, #2e463a, #17271f);
    color: #fff;
    box-shadow: 0 2rem 4rem rgba(17, 23, 19, .25);
    transform: rotate(-2.5deg);
}

.voucher-card>span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.voucher-card div small {
    display: block;
    color: var(--color-accent-soft);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.voucher-card div strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.voucher-card p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .62rem;
}

.voucher-copy>p:not(.eyebrow) {
    color: var(--color-text-muted);
}

.voucher-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

/* FAQ */
.faq {
    background: var(--color-background);
}

.faq-grid {
    display: grid;
    gap: 2.5rem;
}

.faq-intro>p:not(.eyebrow) {
    color: var(--color-text-muted);
}

.faq-list {
    border-top: 1px solid var(--color-border);
}

.faq-list details {
    border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    cursor: pointer;
    font-size: .83rem;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    width: 1.9rem;
    height: 1.9rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    content: "+";
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 220ms ease, background-color 220ms ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: #fff;
}

.faq-list details>div {
    padding: 0 2.9rem 1.4rem 0;
}

.faq-list details p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: .78rem;
}

/* Contact */
.booking-contact {
    background: var(--color-primary-dark);
    color: #fff;
}

.booking-grid {
    display: grid;
    gap: 3rem;
}

.booking-copy {
    align-self: start;
}

.booking-copy>p:not(.eyebrow) {
    max-width: 31rem;
    color: rgba(255, 255, 255, .67);
}

.direct-benefits {
    margin-block: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.direct-benefits p {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .6rem;
    margin: 0;
    padding-block: .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .75);
    font-size: .74rem;
}

.direct-benefits span {
    color: var(--color-accent-soft);
}

.booking-copy address {
    display: grid;
    gap: .7rem;
}

.booking-copy address a {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .8);
    font-size: .72rem;
}

.booking-copy address svg {
    color: var(--color-accent-soft);
}

.booking-form {
    padding: clamp(1.3rem, 4vw, 3rem);
    background: var(--color-surface);
    color: var(--color-text);
}

.form-grid {
    display: grid;
    gap: .4rem 1rem;
}

.check-row {
    display: grid;
    grid-template-columns: 1.3rem 1fr;
    align-items: start;
    gap: .5rem;
    margin-block: .35rem;
    color: var(--color-text-muted);
    font-size: .68rem;
    line-height: 1.55;
}

.check-row input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .1rem;
    accent-color: var(--color-primary);
}

.check-row a {
    text-decoration: underline;
}

.booking-form>.form-note {
    margin-block: 1.2rem;
}

.booking-form .button-large {
    width: 100%;
}

.form-success {
    margin-top: 1rem;
}

/* Location, careers, final */
.location {
    background: var(--color-surface-soft);
}

.location-grid {
    display: grid;
    gap: 3rem;
}

.location-copy address {
    margin-block: 1.5rem;
    color: var(--color-text-muted);
}

.location-copy address strong {
    color: var(--color-text);
}

.contact-links {
    display: grid;
    gap: .6rem;
    margin-block: 1.5rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .75rem;
    font-weight: 700;
}

.location-copy dl {
    margin-block: 2rem;
    border-top: 1px solid var(--color-border);
}

.location-copy dl div {
    padding-block: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.location-copy dt {
    font-size: .7rem;
    font-weight: 700;
}

.location-copy dd {
    margin: .2rem 0 0;
    color: var(--color-text-muted);
    font-size: .74rem;
}

.map-placeholder {
    min-height: 30rem;
    position: relative;
    overflow: hidden;
    background: #d7d9cf;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px);
    background-size: 3rem 3rem;
}

.map-road {
    position: absolute;
    width: 130%;
    height: 1.3rem;
    background: #f5f0e7;
    box-shadow: 0 0 0 1px rgba(22, 32, 27, .08);
}

.road-one {
    top: 42%;
    left: -15%;
    transform: rotate(18deg);
}

.road-two {
    top: 67%;
    left: -10%;
    transform: rotate(-14deg);
}

.map-river {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 3rem;
    height: 125%;
    border: .75rem solid #a8c1bf;
    border-top: 0;
    border-bottom: 0;
    border-radius: 50%;
    transform: rotate(24deg);
    opacity: .75;
}

.map-label {
    position: absolute;
    color: rgba(22, 32, 27, .55);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-label-one {
    top: 20%;
    left: 10%;
}

.map-label-two {
    right: 16%;
    bottom: 20%;
}

.map-pin {
    position: absolute;
    top: 49%;
    left: 56%;
    display: flex;
    align-items: center;
    gap: .4rem;
    transform: translate(-50%, -50%);
    color: var(--color-primary-dark);
    font-size: .65rem;
    font-weight: 700;
    line-height: 1.2;
}

.map-pin svg {
    width: 2.7rem;
    height: 2.7rem;
    padding: .6rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 .6rem 1.5rem rgba(17, 23, 19, .22);
}

.map-placeholder>p {
    position: absolute;
    right: .75rem;
    bottom: .5rem;
    margin: 0;
    color: rgba(22, 32, 27, .48);
    font-size: .55rem;
}

.careers {
    background: var(--color-surface);
}

.careers-grid {
    display: grid;
    gap: 3rem;
}

.careers-grid>div>p:not(.eyebrow) {
    max-width: 38rem;
    color: var(--color-text-muted);
}

.careers-grid ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-border);
    list-style: none;
}

.careers-grid li {
    min-height: 6rem;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    font-size: .7rem;
}

.careers-grid li::before {
    align-self: flex-start;
    margin-right: auto;
    color: var(--color-accent);
    content: "+";
}

.final-cta {
    min-height: 42rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-block: 5rem;
    background: var(--color-dark);
    color: #fff;
}

.final-cta>img,
.final-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta>img {
    transition: transform 8s ease;
}

.final-cta:hover>img {
    transform: scale(1.03);
}

.final-shade {
    background: linear-gradient(90deg, rgba(7, 12, 8, .85), rgba(7, 12, 8, .2)), linear-gradient(0deg, rgba(7, 12, 8, .58), transparent);
}

.final-content {
    position: relative;
    z-index: 1;
}

.final-content h2 {
    max-width: 55rem;
}

.final-content>p:not(.eyebrow) {
    max-width: 38rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .73);
}

/* Footer */
.site-footer {
    padding: 4.5rem 0 6rem;
    background: var(--color-dark);
    color: #fff;
}

.footer-top {
    display: grid;
    gap: 3rem;
}

.footer-brand>p {
    max-width: 26rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
}

.footer-links h2 {
    margin-bottom: 1rem;
    color: var(--color-accent-soft);
    font-family: var(--font-body);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links a,
.footer-links p {
    display: block;
    margin: 0 0 .45rem;
    color: rgba(255, 255, 255, .65);
    font-size: .7rem;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .42);
    font-size: .58rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
}

.footer-bottom button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
}

.mobile-booking {
    position: fixed;
    z-index: 90;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    border-radius: .25rem;
    background: var(--color-accent);
    color: var(--color-dark);
    box-shadow: 0 .75rem 2rem rgba(17, 23, 19, .28);
    font-size: .78rem;
    font-weight: 700;
    transform: translateY(calc(100% + 2rem));
    transition: transform 300ms ease;
}

.mobile-booking.is-visible {
    transform: translateY(0);
}

.demo-toast {
    position: fixed;
    z-index: 150;
    right: 1rem;
    bottom: 5.5rem;
    max-width: min(24rem, calc(100% - 2rem));
    padding: .9rem 1rem;
    visibility: hidden;
    transform: translateY(.75rem);
    background: var(--color-dark);
    color: #fff;
    box-shadow: var(--shadow-medium);
    font-size: .72rem;
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s 220ms;
}

.demo-toast.is-visible {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
}

/* Reveal animations */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 750ms ease, transform 750ms cubic-bezier(.2, .75, .2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 36rem) {
    :root {
        --shell: min(100% - 3rem, 86rem);
    }

    .quick-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-form .button,
    .quick-form .form-note,
    .quick-form .form-message {
        grid-column: 1/-1;
    }

    .facts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features li {
        width: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-tall img {
        aspect-ratio: 1/2;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-full {
        grid-column: 1/-1;
    }
}

@media (min-width: 48rem) {
    body {
        font-size: 1rem;
    }

    .header-cta {
        display: inline-flex;
    }

    .hero {
        min-height: max(48rem, 100svh);
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 13rem;
        align-items: end;
        gap: 2rem;
        padding-bottom: 8rem;
    }

    .hero-aside {
        display: block;
    }

    .hero-aside-image {
        overflow: hidden;
        box-shadow: var(--shadow-medium);
    }

    .hero-aside-image img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .hero-aside>p {
        display: flex;
        align-items: center;
        gap: .45rem;
        margin: .7rem 0 0;
        color: rgba(255, 255, 255, .7);
        font-size: .64rem;
    }

    .hero-trust {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        bottom: 1.4rem;
    }

    .booking-strip>.shell {
        display: grid;
        grid-template-columns: 9rem 1fr;
        gap: 2rem;
        align-items: end;
        padding-block: 2.2rem;
    }

    .booking-intro h2 {
        margin: 0;
    }

    .quick-form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: end;
    }

    .quick-form .field:first-child,
    .quick-form .field:nth-child(2) {
        grid-column: span 2;
    }

    .quick-form .field:nth-child(5) {
        grid-column: span 2;
    }

    .quick-form .button {
        grid-column: span 2;
    }

    .concept-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .concept-stats div {
        display: block;
    }

    .concept-stats dd {
        margin-top: .6rem;
    }

    .split-heading {
        grid-template-columns: minmax(0, 1.4fr) minmax(16rem, .6fr);
        align-items: end;
    }

    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-wide {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
    }

    .room-wide .room-media img {
        height: 100%;
        aspect-ratio: auto;
    }

    .details-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 4rem;
    }

    .sticky-heading {
        position: sticky;
        top: 7rem;
        align-self: start;
    }

    .wellness-grid {
        grid-template-columns: 1fr minmax(19rem, .55fr);
        align-items: end;
    }

    .wellness-card {
        padding: 2rem;
    }

    .cuisine-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: clamp(3rem, 7vw, 7rem);
        align-items: center;
    }

    .finder-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 2rem;
    }

    .finder-interests,
    .finder-form>.button {
        grid-column: 1/-1;
    }

    .finder-result dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-large {
        grid-row: span 2;
    }

    .offer-wide {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .offer-wide>img {
        height: 100%;
        aspect-ratio: auto;
    }

    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .season-panel {
        grid-template-columns: 1.35fr .65fr;
        min-height: 32rem;
    }

    .hosts-grid {
        grid-template-columns: .85fr 1.15fr;
        gap: clamp(3rem, 7vw, 7rem);
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .expectations-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 4rem;
    }

    .expectations-grid ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .occasion-grid {
        grid-template-columns: 1.15fr .85fr;
    }

    .occasion-business {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .voucher-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 5rem;
    }

    .faq-grid {
        grid-template-columns: .65fr 1.35fr;
        gap: 5rem;
    }

    .faq-intro {
        position: sticky;
        top: 7rem;
        align-self: start;
    }

    .location-grid {
        grid-template-columns: .75fr 1.25fr;
        gap: 5rem;
        align-items: center;
    }

    .careers-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 5rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mobile-booking {
        right: 1rem;
        left: auto;
        width: 18rem;
    }
}

@media (min-width: 75rem) {
    :root {
        --header-height: 6.2rem;
        --shell: min(100% - 5rem, 86rem);
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }

    .nav-toggle,
    .nav-panel-head,
    .nav-panel-contact {
        display: none;
    }

    .nav-panel {
        position: static;
        display: block;
        padding: 0;
        visibility: visible;
        transform: none;
        background: transparent;
        color: inherit;
        opacity: 1;
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(.75rem, 1.35vw, 1.55rem);
        margin: 0;
    }

    .nav-links a {
        position: relative;
        padding: .5rem 0;
        color: inherit;
        font-family: var(--font-body);
        font-size: .66rem;
        font-weight: 600;
        line-height: 1;
    }

    .nav-links a::after {
        position: absolute;
        right: 0;
        bottom: .1rem;
        left: 0;
        height: 1px;
        transform: scaleX(0);
        background: currentColor;
        content: "";
        transform-origin: right;
        transition: transform 220ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a[aria-current="true"]::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-links a:hover,
    .nav-links a[aria-current="true"] {
        color: inherit;
    }

    .hero-content {
        grid-template-columns: 1fr 16rem;
        gap: 5rem;
    }

    .hero-copy {
        padding-left: 6vw;
    }

    .hero-copy h1 {
        margin-left: -6vw;
    }

    .booking-strip {
        width: min(calc(100% - 5rem), 92rem);
        margin: -2.6rem auto 0;
    }

    .booking-strip>.shell {
        width: auto;
        margin: 0;
        padding: 1.65rem 2rem;
        grid-template-columns: 8rem 1fr;
    }

    .quick-form {
        grid-template-columns: 1fr 1fr .65fr .65fr 1.25fr auto;
        gap: 1rem;
    }

    .quick-form .field:first-child,
    .quick-form .field:nth-child(2),
    .quick-form .field:nth-child(5),
    .quick-form .button {
        grid-column: auto;
    }

    .quick-form .form-note,
    .quick-form .form-message {
        grid-column: 1/-1;
    }

    .facts-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .concept-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: clamp(5rem, 9vw, 9rem);
        align-items: center;
    }

    .concept-images {
        margin-right: 4rem;
    }

    .concept-copy {
        padding-left: 4rem;
    }

    .filter-groups {
        flex-wrap: nowrap;
        gap: 1.2rem;
    }

    .room-filter fieldset {
        width: auto;
        margin: 0;
    }

    .room-filter legend {
        width: auto;
        margin: 0 .35rem 0 0;
    }

    .budget-filter {
        margin: 0 0 0 auto;
    }

    .room-filter {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .room-filter>.text-button {
        margin: 0 0 0 auto;
        white-space: nowrap;
    }

    .room-featured {
        display: grid;
        grid-template-columns: 1.25fr .75fr;
    }

    .room-featured .room-media img {
        height: 100%;
        aspect-ratio: auto;
    }

    .room-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .room-grid>.room-card:nth-child(1) {
        grid-column: 1/7;
    }

    .room-grid>.room-card:nth-child(2) {
        grid-column: 7/13;
        margin-top: 4rem;
    }

    .room-grid>.room-wide {
        grid-column: 2/12;
        margin-top: 2rem;
    }

    .finder-shell {
        grid-template-columns: .65fr 1fr;
        gap: 6rem;
    }

    .finder-result {
        grid-column: 2;
    }

    .offers-grid {
        grid-template-columns: 1.15fr .85fr .85fr;
        grid-template-rows: auto auto;
    }

    .offer-large {
        grid-row: 1/3;
    }

    .offer-wide {
        grid-column: 2/4;
    }

    .experience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .experience:nth-child(2),
    .experience:nth-child(4) {
        transform: translateY(2.5rem);
    }

    .sustainability-grid {
        grid-template-columns: 1fr .8fr;
        gap: 7rem;
        align-items: start;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .booking-grid {
        grid-template-columns: .68fr 1.32fr;
        gap: clamp(4rem, 7vw, 8rem);
    }

    .booking-copy {
        position: sticky;
        top: 7rem;
    }

    .footer-top {
        grid-template-columns: .75fr 1.25fr;
        gap: 8rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .mobile-booking {
        display: none;
    }

    .site-footer {
        padding-bottom: 3rem;
    }
}

@media (min-width: 100rem) {
    :root {
        --shell: min(100% - 8rem, 96rem);
    }

    .hero-copy {
        max-width: 65rem;
    }

    .hero-copy h1 {
        max-width: 65rem;
    }
}

@media (max-width: 24rem) {
    :root {
        --shell: calc(100% - 1.25rem);
    }

    h1 {
        font-size: clamp(3.05rem, 16vw, 4rem);
    }

    h2 {
        font-size: clamp(2.45rem, 14vw, 3.2rem);
    }

    .header-cta {
        display: none;
    }

    .hero-content {
        padding-bottom: 9.5rem;
    }

    .hero-trust li:nth-child(n+5) {
        display: none;
    }

    .button {
        width: 100%;
    }

    .button-row {
        align-items: stretch;
    }

    .button-row .text-link {
        width: max-content;
    }

    .wellness-list {
        grid-template-columns: 1fr;
    }

    .room-price {
        grid-template-columns: auto auto;
    }

    .room-price small {
        grid-column: 1/-1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wide,
    .gallery-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item img,
    .gallery-wide img,
    .gallery-tall img {
        aspect-ratio: 4/3;
    }

    .expectations-grid ul,
    .careers-grid ul {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-media {
        transform: none !important;
    }
}