:root {
    --bg: #f7f6f2;
    --bg-soft: #fcfbf8;
    --ink: #1e1e1e;
    --muted: #646464;
    --line: rgba(30, 30, 30, 0.10);
    --white: #ffffff;
    --olive: #49643b;
    --olive-deep: #2f4127;
    --olive-dark: #1d2f1d;
    --accent: #5bb70a;
    --accent-deep: #4da114;
    --dark: #1e1e1e;
    --dark-warm: #221b14;
    --gold: #7f7856;
    --gold-light: #a09870;
    --shadow: 0 22px 60px rgba(17, 24, 39, 0.10);
    --shadow-sm: 0 4px 20px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 32px 80px rgba(17, 24, 39, 0.14);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shell: min(1180px, calc(100vw - 48px));
    --font-display: "Rufina", "Georgia", serif;
    --font-body: "Satoshi", "Avenir Next", "Segoe UI", sans-serif;
    --font-script: "Dancing Script", "Snell Roundhand", "Brush Script MT", cursive;
    --transition-fast: 180ms ease;
    --transition-base: 280ms ease;
    --transition-slow: 400ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: var(--white);
    transition: background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.45) calc(100% - 220px), transparent calc(100% - 120px));
    opacity: 1;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
    opacity: 0;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 96px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
}

.brand--image img {
    width: auto;
    height: 58px;
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.site-nav a {
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition-base);
}

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

.site-nav a:hover::after {
    width: 100%;
}

.site-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--white);
    padding: 10px 18px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.button--primary {
    background: var(--accent);
    color: var(--white);
}

.button--primary:hover {
    background: var(--accent-deep);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    backdrop-filter: blur(4px);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
}

.button--header-cta {
    background: var(--olive-deep);
    color: var(--white);
    min-height: 52px;
    padding: 0 32px;
    font-size: 0.98rem;
}

.button--header-cta:hover {
    background: var(--olive);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero:hover .hero__image {
    transform: scale(1.03);
}

.hero__overlay {
    background: linear-gradient(to right, rgba(2, 3, 4, 0.92) 0%, rgba(9, 13, 15, 0.7) 35%, rgba(20, 20, 20, 0.3) 65%, transparent 100%);
}

.hero__body {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 100px;
}

.hero__content {
    max-width: 640px;
}

.eyebrow,
.pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 6px 0;
    border-radius: 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 700;
}

.pill {
    background: rgba(91, 183, 10, 0.15);
    color: var(--accent);
    margin-bottom: 10px;
}

.hero .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3em;
}

.section--dark .eyebrow,
.final-cta .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.section .eyebrow,
.booking .eyebrow {
    color: var(--olive);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.08;
}

h1 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 5vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
}

h2 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.2;
}

.hero__copy {
    margin: 18px 0 0;
    max-width: 52ch;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.section__copy {
    margin: 14px 0 0;
    max-width: 58ch;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__highlights,
.footer-links {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__highlights li {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--olive-dark);
    color: var(--white);
}

.section.section--dark-promo {
    background: #232323;
    color: var(--white);
    overflow: visible;
    position: relative;
    padding: 0 !important;
}

.section--dark-promo .shell {
    width: min(860px, calc(100vw - 48px));
}

.section--olive {
    background: var(--white);
    color: var(--ink);
}

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

.section__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: start;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--center .section__copy {
    margin-left: auto;
    margin-right: auto;
}

.section-heading--flush {
    margin-bottom: 0;
}

.section-title--uppercase {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
}

.section-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 40px 0 0;
    width: 100%;
}

.section--rooms-continuous {
    background: var(--white);
    padding-top: 40px;
}

.section--dark .section__copy {
    color: rgba(255, 255, 255, 0.78);
}

#about {
    padding-top: 64px;
    padding-bottom: 0;
}

.about__intro .section__copy,
.about__intro .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.about__intro {
    margin-bottom: 24px;
}

.about__intro .section__copy {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 60ch;
}

.about__gallery-shell {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.about__gallery-item {
    margin: 0;
    min-height: 260px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.about__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about__gallery-item:hover img {
    transform: scale(1.05);
}

.about__stats-wrap {
    margin-top: 0;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.room-card,
.meeting-card {
    border: 1px solid var(--line);
    border-top: none;
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.stat-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
}

.stats-grid--band {
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    margin-top: 0;
    border: none;
    box-shadow: none;
}

.stats-grid--band .stat-card {
    background: var(--dark-warm);
    color: var(--white);
    border-radius: 0;
    box-shadow: none;
    border: 0;
    text-align: center;
    padding: 36px 28px;
}

.stats-grid--band .stat-card + .stat-card {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
}

.stat-card span {
    color: var(--muted);
}

.stats-grid--band .stat-card span {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
}

.blocks {
    padding-top: 72px;
    padding-bottom: 88px;
    background: var(--white);
}

.blocks__heading {
    margin-bottom: 56px;
}

.blocks__showcase {
    display: grid;
    gap: 64px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.blocks__row {
    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.96fr);
    min-height: 420px;
    background: #151715;
}

.blocks__row--reverse {
    grid-template-columns: minmax(300px, 0.96fr) minmax(0, 1.78fr);
}

.blocks__row--reverse .blocks__feature {
    order: 2;
}

.blocks__row--reverse .blocks__gallery {
    order: 1;
}

.blocks__feature,
.blocks__thumb {
    position: relative;
    overflow: hidden;
    background: #151715;
}

.blocks__feature {
    min-height: 420px;
    isolation: isolate;
}

.blocks__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.blocks__row--reverse .blocks__feature::after {
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 44%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.blocks__feature img,
.blocks__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blocks__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 420px;
}

.blocks__thumb {
    margin: 0;
    min-height: 420px;
}

.blocks__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(28px, 7vw, 96px);
    width: min(460px, calc(100% - 56px));
    color: var(--white);
    transform: translateY(-50%);
}

.blocks__row--reverse .blocks__content {
    right: clamp(28px, 7vw, 96px);
    left: auto;
    text-align: right;
}

.blocks__label {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.blocks__content h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 5.4rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0;
}

.blocks__content p:not(.blocks__label) {
    max-width: 420px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.68;
}

.blocks__row--reverse .blocks__content p:not(.blocks__label) {
    margin-left: auto;
}

.blocks__note {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.5;
}

.blocks__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
}

.blocks__link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition-fast);
}

.blocks__link:hover::after {
    transform: translateX(3px) rotate(45deg);
}

.promo-split {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 390px;
    padding: 0 378px 0 0;
}

.promo-split__body {
    flex: 0 0 340px;
    color: var(--white);
    max-width: 340px;
    padding-left: 0;
}

.promo-split__body .eyebrow {
    padding: 0;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    color: rgba(255, 255, 255, 0.9);
}

.promo-split__body h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 2.6vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.promo-split__subtitle {
    margin: 2px 0 0;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.promo-split__copy {
    margin: 18px 0 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.54;
}

.promo-split__validity {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 500;
}

.promo-split__validity svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.button--outline {
    margin-top: 14px;
    min-height: 40px;
    padding: 0 22px;
    background: var(--white);
    color: #292929;
    border: 0;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.button--outline:hover {
    background: #f2f2f2;
    color: #1f1f1f;
}

.promo-split__media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0;
    width: 378px;
    min-height: 0;
    padding-right: 0;
    transform: translateY(-50%);
}

.promo-split__cards {
    position: relative;
    width: 378px;
    height: 474px;
    overflow: hidden;
    border-radius: 16px;
}

.promo-split__cards::before {
    content: '';
    position: absolute;
    top: 34px;
    right: 18px;
    width: 264px;
    height: 376px;
    border-radius: 18px;
    background: rgba(26, 32, 20, 0.88);
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
    z-index: 0;
}

.promo-split__card-bg {
    position: absolute;
    top: 20px;
    right: 44px;
    width: 248px;
    height: 388px;
    background: linear-gradient(180deg, #394a28 0%, #2a361d 100%);
    border-radius: 18px;
    z-index: 1;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.promo-split__card-img {
    position: absolute;
    top: 0;
    right: 56px;
    width: 330px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.38);
    z-index: 2;
    transition: transform var(--transition-slow), box-shadow var(--transition-fast);
}

.promo-split__cards:hover .promo-split__card-bg {
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.promo-split__cards:hover .promo-split__card-img {
    transform: translateY(-4px);
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.42);
}

.booking {
    position: relative;
    margin-top: -54px;
    z-index: 2;
}

.booking-card {
    --booking-control-height: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, auto);
    align-items: end;
    gap: 15px;
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-card__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.35fr) minmax(240px, 0.9fr);
    align-items: end;
    gap: 15px;
    min-width: 0;
}

.booking-card .field {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 0;
    border-right: 0;
}

.booking-card__dates {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-width: 0;
}

.booking-card__date-arrow {
    position: absolute;
    left: 50%;
    bottom: 7px;
    z-index: 1;
    color: #000000;
    font-size: 20px;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

.booking-card__date-field--checkout {
    margin-left: -1px;
}

.field__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.booking-card .field__label {
    margin-bottom: 0;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0;
}

.booking-card__date-field--checkout .field__label {
    text-align: right;
}

.field__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.field input,
.field select {
    height: 40px;
    width: 100%;
    padding: 0 36px 0 12px;
    border: none;
    border-radius: 6px;
    background: #FFF4F4;
    color: var(--ink);
    font: inherit;
    font-size: 0.85rem;
    appearance: none;
    -webkit-appearance: none;
    transition: box-shadow var(--transition-fast);
}

.booking-card .field input,
.booking-card .field select {
    height: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 0.875rem;
    line-height: 20px;
    cursor: pointer;
}

.booking-card .field__input-wrap {
    height: var(--booking-control-height);
    padding: 6px 10px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 8px;
}

.booking-card .field__input-wrap:focus-within {
    border-color: #49643B;
}

.booking-card__date-field:first-child .field__input-wrap {
    border-right: 0;
    border-radius: 8px 0 0 8px;
}

.booking-card__date-field--checkout .field__input-wrap {
    border-left: 0;
    border-radius: 0 8px 8px 0;
}

.booking-card__date-field--checkout input {
    text-align: right;
}

.booking-card .field__input-wrap--guest {
    padding: 0;
}

.field__guest-plus {
    position: absolute;
    right: 12px;
    top: 50%;
    color: #006060;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.booking-date-range {
    position: relative;
}

.booking-date-picker {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 60;
    width: min(640px, calc(100vw - 32px));
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.booking-date-picker[hidden] {
    display: none;
}

.booking-calendar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.booking-calendar__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: #1e1e1e;
    cursor: pointer;
}

.booking-calendar__hint {
    color: #646464;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.booking-calendar__months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-calendar__title {
    margin-bottom: 10px;
    color: #1e1e1e;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.booking-calendar__weekdays,
.booking-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.booking-calendar__weekdays {
    margin-bottom: 6px;
    color: #646464;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

.booking-calendar__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1e1e1e;
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
}

.booking-calendar__day:hover {
    background: rgba(73, 100, 59, 0.12);
}

.booking-calendar__day.is-in-range {
    background: rgba(73, 100, 59, 0.16);
    border-radius: 0;
    width: auto;
}

.booking-calendar__day.is-selected {
    width: 34px;
    background: #49643B;
    color: #ffffff;
    border-radius: 50%;
}

.booking-calendar__day.is-disabled {
    color: rgba(30, 30, 30, 0.28);
    cursor: not-allowed;
}

.booking-calendar__blank {
    min-height: 34px;
}

.booking-guests {
    position: relative;
    display: block;
    width: 100%;
}

.booking-guests__trigger {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--booking-control-height);
    padding: 6px 42px 6px 10px;
    border: 0;
    background: transparent;
    color: #000000;
    font: inherit;
    font-size: 0.875rem;
    line-height: 20px;
    text-align: left;
    cursor: pointer;
}

.booking-guests__trigger [data-guest-summary] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-guests__trigger-plus {
    position: absolute;
    right: 12px;
    top: 50%;
    color: #006060;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
}

.booking-guests__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 65;
    display: grid;
    gap: 12px;
    min-width: 310px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.booking-guests__menu[hidden] {
    display: none;
}

.booking-guests__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.booking-guests__rooms {
    display: grid;
    gap: 12px;
}

.booking-guests__room {
    display: grid;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-guests__room:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.booking-guests__room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.booking-guests__room-title {
    color: #1e1e1e;
    font-size: 0.9rem;
    font-weight: 800;
}

.booking-guests__remove-room {
    border: 0;
    background: transparent;
    color: #49643B;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.booking-guests__label {
    color: #1e1e1e;
    font-size: 0.9rem;
    font-weight: 700;
}

.booking-guests__stepper {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    background: #ffffff;
}

.booking-guests__stepper button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: #f2f2f2;
    color: #1e1e1e;
    font-size: 1rem;
    cursor: pointer;
}

.booking-guests__add-room {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    border: 1px solid rgba(73, 100, 59, 0.35);
    border-radius: 8px;
    background: rgba(73, 100, 59, 0.08);
    color: #49643B;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
}

.booking-guests__stepper button:disabled {
    color: rgba(30, 30, 30, 0.3);
    cursor: not-allowed;
}

.booking-guests__stepper input {
    width: 42px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #1e1e1e;
    font: inherit;
    font-size: 0.875rem;
    text-align: center;
}

.field input:focus,
.field select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #49643B;
}

.booking-card .field input:focus,
.booking-card .field select:focus {
    box-shadow: none;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.field__icon {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    color: #818181;
    pointer-events: none;
}

.button--booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #49643B;
    color: var(--white);
    border: none;
    padding: 0 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.booking-card .button--booking {
    margin-left: 0;
    align-self: end;
    min-height: var(--booking-control-height);
    padding: 0 32px;
    border-radius: 0;
    background: #49643B;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.button--booking:hover {
    background: #263728;
}

.booking-card__note {
    display: none;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 760px) {
    .booking-date-picker {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 10px;
    }

    .booking-guests__menu {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
    }

    .booking-card .field__input-wrap--guest,
    .booking-search-card__control--guests {
        height: auto;
        min-height: var(--booking-control-height, 46px);
        align-items: stretch;
    }

    .booking-card .field__input-wrap--guest {
        display: block;
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card-grid--meetings {
    display: flex;
    gap: 22px;
}

.room-card,
.meeting-card {
    overflow: hidden;
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

.room-card__media,
.meeting-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex: 0 0 auto;
}

.room-card__media img,
.meeting-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.meeting-card__media img {
    position: absolute;
    inset: 0;
    max-width: none;
}

.room-card:hover .room-card__media img,
.meeting-card:hover .meeting-card__media img {
    transform: scale(1.05);
}

.room-card__rate,
.meeting-card__capacity {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #333;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.room-card__body,
.meeting-card__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-card__specs,
.meeting-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
}

.room-card__specs span,
.meeting-card__specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.room-card__specs span svg,
.meeting-card__specs span svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--ink);
}

.room-card__body p,
.meeting-card__body p,
.facility-card p,
.restaurant__feature p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1;
}

.text-link--sm {
    margin-top: auto;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.facility-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.facility-card {
    flex: 0 0 auto;
    width: calc(100% / 5);
    padding: 20px 16px;
    min-height: auto;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    text-align: center;
}

.facility-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    color: var(--ink);
    background: transparent;
}

.facility-card__icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1;
}

.facility-card h3 {
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-top: 4px;
}

.facility-card p {
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 2px !important;
}

.pool-highlight {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 96px;
    background: #f2f6f4;
}

.pool-highlight__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 48px;
    align-items: center;
}

.pool-highlight__content h2 {
    max-width: 560px;
}

.pool-highlight__content .section__copy {
    max-width: 50ch;
}

.pool-highlight__facts {
    display: grid;
    gap: 0;
    margin: 28px 0 30px;
    padding: 0;
    max-width: 470px;
    list-style: none;
    border-top: 1px solid rgba(30, 30, 30, 0.1);
}

.pool-highlight__facts li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
}

.pool-highlight__facts li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2e8b8b;
}

.pool-highlight__media {
    --pool-media-height: 440px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 16px;
    align-items: stretch;
}

.pool-highlight__main-grid {
    display: grid;
    gap: 16px;
    min-width: 0;
    height: var(--pool-media-height);
}

.pool-highlight__main,
.pool-highlight__gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe9e5;
}

.pool-highlight__main-grid--single {
    grid-template-rows: minmax(0, 1fr);
}

.pool-highlight__main-grid--multiple {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.pool-highlight__main {
    min-height: 0;
}

.pool-highlight__main img,
.pool-highlight__main video,
.pool-highlight__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pool-highlight__main img,
.pool-highlight__main video {
    transition: transform var(--transition-slow);
}

.pool-highlight__media:hover .pool-highlight__main img,
.pool-highlight__media:hover .pool-highlight__main video {
    transform: scale(1.03);
}

.pool-highlight__gallery {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px;
    height: var(--pool-media-height);
    min-height: 0;
    overflow: hidden;
}

/* Restaurant Section - Left Image / Right Content Layout */
#restaurant .section__split {
    grid-template-columns: 0.95fr 1.1fr;
    align-items: stretch;
}

#restaurant .restaurant__visual {
    display: flex;
}

#restaurant .restaurant__visual > img,
#restaurant .restaurant__carousel {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

#restaurant .restaurant__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#restaurant .restaurant__visual > img {
    object-fit: cover;
}

#restaurant .restaurant__carousel {
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

#restaurant .restaurant__carousel-track,
#restaurant .restaurant__carousel-slide {
    position: absolute;
    inset: 0;
}

#restaurant .restaurant__carousel-slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.45s ease, transform 0.7s ease, visibility 0.45s ease;
}

#restaurant .restaurant__carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#restaurant .restaurant__carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #2d2d2d;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

#restaurant .restaurant__carousel-btn:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    transform: translateY(-50%) scale(1.06);
}

#restaurant .restaurant__carousel-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#restaurant .restaurant__carousel-btn--prev {
    left: 18px;
}

#restaurant .restaurant__carousel-btn--next {
    right: 18px;
}

#restaurant .restaurant__carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 18, 0.45);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

#restaurant .restaurant__carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width var(--transition-base), background var(--transition-base);
}

#restaurant .restaurant__carousel-dot.is-active {
    width: 28px;
    background: var(--accent);
}

#restaurant .restaurant__content {
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 20px;
}

#restaurant .restaurant__content .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

#restaurant .restaurant__content h2 {
    margin-top: 12px;
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    color: #5D4037;
}

#restaurant .restaurant__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 28px;
}

#restaurant .restaurant__feature h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.3;
    color: #5D4037;
}

#restaurant .restaurant__feature p {
    font-size: 0.82rem !important;
    line-height: 1.65;
    margin-top: 6px !important;
    color: var(--muted);
}

#restaurant .restaurant__quote {
    margin: 32px 0 0;
    text-align: center;
    color: #4a4a4a;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    line-height: 1.5;
}

#restaurant .restaurant__cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

#restaurant .restaurant__cta .button--booking {
    background: #2E7D32;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

#restaurant .restaurant__cta .button--booking:hover {
    background: #1B5E20;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 32px;
    color: var(--olive);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
    margin-left: 10px;
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.section-actions {
    display: flex;
    justify-content: center;
}

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
}

.final-cta::before {
    background-image: var(--cta-image);
    background-position: center;
    background-size: cover;
}

.final-cta::after {
    background:
        linear-gradient(90deg, rgba(77, 53, 23, 0.48) 0%, rgba(52, 34, 13, 0.44) 26%, rgba(24, 18, 13, 0.46) 58%, rgba(18, 14, 10, 0.5) 100%),
        linear-gradient(180deg, rgba(255, 214, 150, 0.08), rgba(0, 0, 0, 0.24));
}

.final-cta__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta__panel {
    position: relative;
    z-index: 1;
    min-height: 172px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    color: var(--white);
    padding: 34px 0 30px;
}

.final-cta__content {
    max-width: 420px;
}

.section.final-cta .eyebrow {
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: none;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
}

.final-cta__panel h2 {
    margin-top: 2px;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.final-cta__panel p {
    margin-top: 8px;
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.42;
    font-size: 0.74rem;
}

.final-cta__content .hero__actions {
    margin-top: 16px;
}

.final-cta .button--primary {
    min-height: 40px;
    padding: 0 24px;
    background: #5f814e;
    color: var(--white);
    box-shadow: none;
}

.final-cta .button--primary:hover {
    background: #516f42;
}

.site-footer {
    padding: 56px 0 72px;
    background: #232323;
    color: #bfb9b0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr 0.9fr 1fr;
    gap: 56px;
    align-items: start;
}

.site-footer h3 {
    font-size: 1.12rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: var(--white);
}

.footer-address {
    display: grid;
    gap: 3px;
    color: #b8b3ab;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-links {
    margin-top: 12px;
}

.footer-links--compact {
    margin-top: 12px;
}

.footer-links--compact li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #beb8af;
    font-size: 1.06rem;
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

/* Carousel */
.carousel {
    position: relative;
}

.carousel__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: transparent;
}

.carousel__track.card-grid {
    display: flex;
    gap: 22px;
    background: transparent;
}

.carousel__track.card-grid > .carousel__slide {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
}

.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    gap: 24px;
}

.carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(73, 100, 59, 0.2);
    cursor: pointer;
    transition: width var(--transition-base), background var(--transition-base);
}

.carousel__dot.is-active {
    width: 32px;
    background: var(--accent);
}

.carousel__dot:hover:not(.is-active) {
    background: rgba(73, 100, 59, 0.4);
}

.carousel__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.carousel__btn svg {
    width: 20px;
    height: 20px;
}

.carousel__btn:hover:not(:disabled) {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    transform: scale(1.06);
}

.carousel__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Dark section carousel overrides */
.section--dark .carousel__dot {
    background: rgba(255, 255, 255, 0.2);
}

.section--dark .carousel__dot.is-active {
    background: var(--accent);
}

.section--dark .carousel__dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.4);
}

.section--dark .carousel__btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section--dark .carousel__btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 1100px) {
    :root {
        --shell: min(1180px, calc(100vw - 40px));
    }

    .carousel__track.card-grid > .carousel__slide {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .facility-grid {
        flex-wrap: wrap;
    }

    .facility-card {
        width: calc(100% / 3);
    }

    .site-footer__grid {
        grid-template-columns: 1.35fr 0.9fr 1fr;
        gap: 36px;
    }

    .section__split {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    :root {
        --shell: min(1180px, calc(100vw - 32px));
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav,
    .site-header__actions {
        display: none;
        grid-column: 1 / -1;
    }

    .site-header.is-open .site-nav {
        display: grid;
        justify-content: start;
        gap: 14px;
        padding-bottom: 12px;
    }

    .site-header.is-open .site-nav a::after {
        display: none;
    }

    .site-header.is-open .site-header__actions {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section--dark-promo {
        padding: 0;
    }

    .section__split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .blocks__row--reverse .blocks__feature,
    .blocks__row--reverse .blocks__gallery {
        order: initial;
    }

    .blocks__feature,
    .blocks__gallery,
    .blocks__thumb {
        min-height: 360px;
    }

    .blocks__content h3 {
        font-size: 4.8rem;
    }

    .blocks__row--reverse .blocks__content {
        right: auto;
        left: clamp(28px, 7vw, 96px);
        text-align: left;
    }

    .blocks__row--reverse .blocks__content p:not(.blocks__label) {
        margin-left: 0;
    }

    #restaurant .section__split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    #restaurant .restaurant__visual {
        order: -1;
    }

    .pool-highlight__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pool-highlight__media {
        --pool-media-height: 360px;
        grid-template-columns: minmax(0, 1fr) 150px;
        order: -1;
    }

    #restaurant .restaurant__visual > img,
    #restaurant .restaurant__carousel {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    #restaurant .restaurant__content {
        padding: 0;
    }

    #restaurant .restaurant__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-top: 24px;
    }

    #restaurant .restaurant__quote {
        margin-top: 28px;
    }

    .promo-split {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        min-height: auto;
        padding: 42px 0 30px;
        text-align: left;
    }

    .promo-split__media {
        position: relative;
        top: auto;
        right: auto;
        order: -1;
        width: 100%;
        justify-content: center;
        min-height: 0;
        padding-right: 0;
        margin-top: -64px;
        margin-bottom: 8px;
        transform: none;
        z-index: 2;
    }

    .promo-split__cards {
        width: 340px;
        height: 458px;
        margin: 0 auto;
    }

    .promo-split__cards::before {
        top: 34px;
        right: 18px;
        width: 236px;
        height: 348px;
    }

    .promo-split__body {
        max-width: none;
        padding-left: 0;
    }

    .promo-split__card-bg {
        top: 18px;
        right: 36px;
        width: 220px;
        height: 360px;
    }

    .promo-split__card-img {
        top: 0;
        right: 42px;
        width: 288px;
    }

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

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

    .booking-card .button--booking {
        width: 100%;
        min-height: 42px;
    }

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

    .about__gallery-item {
        min-height: 180px;
    }

    .final-cta__panel {
        min-height: 190px;
        padding: 30px 0 28px;
    }

    .booking {
        margin-top: -32px;
    }

    .hero__body {
        padding-bottom: 72px;
    }

    .about__media-card {
        min-height: 360px;
    }

    h1 {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .facility-card {
        width: calc(100% / 3);
    }

    .restaurant__visual {
        order: -1;
    }

    .restaurant__visual > img {
        aspect-ratio: 16 / 9;
    }
}

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

    .section {
        padding: 48px 0;
    }

    .section--dark-promo {
        padding: 0;
    }

    .blocks {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .blocks__heading {
        margin-bottom: 44px;
    }

    .blocks__showcase {
        gap: 44px;
    }

    .blocks__content {
        width: min(430px, calc(100% - 40px));
        left: 20px;
    }

    .blocks__row--reverse .blocks__content {
        left: 20px;
    }

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

    .blocks__feature {
        min-height: 420px;
    }

    .blocks__thumb,
    .blocks__gallery {
        min-height: 260px;
    }

    .site-footer {
        padding-top: 40px;
    }

    .hero__body {
        min-height: 92svh;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero__content {
        max-width: 100%;
    }

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

    .hero__actions .button {
        text-align: center;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
        margin-top: 14px;
    }

    h2 {
        font-size: 1.65rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .blocks__feature {
        min-height: 440px;
    }

    .blocks__thumb {
        min-height: 230px;
    }

    .blocks__label {
        letter-spacing: 0.3em;
    }

    .blocks__content h3 {
        font-size: 4rem;
    }

    .carousel__track.card-grid > .carousel__slide {
        flex: 0 0 100%;
    }

    .carousel__track {
        touch-action: pan-y;
    }

    .facility-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .facility-card {
        width: 50%;
    }

    .pool-highlight__media {
        grid-template-columns: 1fr;
    }

    .pool-highlight__main-grid {
        height: auto;
    }

    .pool-highlight__main-grid--single .pool-highlight__main {
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }

    .pool-highlight__main-grid--multiple {
        grid-template-rows: none;
    }

    .pool-highlight__main-grid--multiple .pool-highlight__main {
        aspect-ratio: 4 / 3;
    }

    .pool-highlight__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: auto;
        height: auto;
        overflow: visible;
    }

    .pool-highlight__gallery figure {
        aspect-ratio: 4 / 3;
    }

    .pool-highlight__content .button--booking {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promo-split__cards {
        width: 268px;
        height: 380px;
    }

    .promo-split__cards::before {
        top: 32px;
        right: 8px;
        width: 186px;
        height: 288px;
    }

    .promo-split__card-bg {
        top: 16px;
        right: 28px;
        width: 176px;
        height: 296px;
    }

    .promo-split__card-img {
        top: 0;
        right: 34px;
        width: 226px;
    }

    .room-card__body,
    .meeting-card__body {
        padding: 18px;
    }

    .brand--image img {
        height: 44px;
    }

    .header-phone {
        width: 100%;
    }

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

    .about__gallery-item {
        min-height: 140px;
    }

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

    .stats-grid--band .stat-card + .stat-card {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 0;
    }

    .stats-grid--band .stat-card {
        padding: 20px 12px;
    }

    .stat-card strong {
        font-size: 1.5rem;
    }

    .stats-grid--band .stat-card span {
        font-size: 0.62rem;
    }

    .section-heading {
        margin-bottom: 24px;
    }

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

    #restaurant .section__split {
        gap: 22px;
    }

    #restaurant .restaurant__content h2 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }

    #restaurant .restaurant__features {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 20px;
    }

    #restaurant .restaurant__feature p {
        font-size: 0.9rem !important;
    }

    #restaurant .restaurant__quote {
        margin-top: 24px;
        font-size: 1.1rem;
    }

    #restaurant .restaurant__cta {
        justify-content: stretch;
    }

    #restaurant .restaurant__cta .button--booking {
        width: 100%;
        justify-content: center;
        padding-inline: 24px;
    }

    #restaurant .restaurant__visual > img,
    #restaurant .restaurant__carousel {
        min-height: 240px;
        aspect-ratio: 1 / 1;
    }

    #restaurant .restaurant__carousel img {
        object-fit: contain;
    }

    .restaurant__quote {
        font-size: 1.1rem;
    }

    .restaurant__visual > img {
        min-height: 240px;
    }

    .final-cta {
        min-height: 460px;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .final-cta__panel {
        min-height: 0;
        padding: 34px 0;
    }

    .final-cta__panel h2 {
        font-size: 1.9rem;
    }

    .final-cta__panel p {
        font-size: 0.78rem;
        max-width: 40ch;
    }

    .section__split {
        gap: 20px;
    }

    .eyebrow, .pill {
        font-size: 0.6rem;
    }

    .hero__copy {
        font-size: 0.85rem;
    }

    .section__copy {
        font-size: 0.92rem;
    }

    .menu-toggle {
        padding: 8px 14px;
    }

    .site-header.is-open .site-nav {
        gap: 10px;
        padding-bottom: 8px;
    }

    .site-header.is-open .site-header__actions {
        padding-bottom: 14px;
    }

    .booking-card {
        padding: 16px;
    }

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

    .booking-card__date-arrow {
        display: none;
    }

    .booking-card__date-field:first-child .field__input-wrap,
    .booking-card__date-field--checkout .field__input-wrap {
        border: 1px solid #000000;
        border-radius: 8px;
    }

    .booking-card__date-field--checkout {
        margin-left: 0;
    }

    .booking-card__date-field--checkout .field__label,
    .booking-card__date-field--checkout input {
        text-align: left;
    }

    .booking-date-picker {
        position: relative;
        top: auto;
        width: 100%;
        margin-top: 10px;
    }

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

    .booking-guests__menu {
        position: relative;
        top: auto;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .promo-split__cards {
        width: 240px;
        height: 344px;
    }

    .promo-split__cards::before {
        top: 28px;
        right: 0;
        width: 164px;
        height: 258px;
    }

    .promo-split__card-bg {
        top: 14px;
        right: 22px;
        width: 156px;
        height: 266px;
    }

    .promo-split__card-img {
        right: 28px;
        width: 200px;
    }
}

@media (max-width: 380px) {
    .stats-grid--band .stat-card {
        padding: 16px 8px;
    }

    .stat-card strong {
        font-size: 1.3rem;
    }

    .stats-grid--band .stat-card span {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }

    .about__gallery-item {
        min-height: 110px;
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Smooth hover transitions for cards */
.room-card,
.meeting-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.room-card:hover,
.meeting-card:hover {
    transform: none;
    box-shadow: none;
}

/* Focus-visible styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Touch device adjustments — prevent sticky hover */
@media (hover: none) {
    .hero:hover .hero__image {
        transform: none;
    }

    .room-card:hover,
    .meeting-card:hover {
        transform: none;
        box-shadow: var(--shadow);
    }

    .button:hover {
        transform: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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

    .hero:hover .hero__image {
        transform: none;
    }
}

/* Room Detail Page Styles */
.room-detail-page {
    --shell: min(1240px, calc(100vw - 48px));
    background: var(--white);
}

.room-detail-page .v2-booking--room-detail {
    margin-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.room-detail-page * {
    letter-spacing: 0;
}

.room-detail-page .theme-switcher {
    display: none;
}

.room-detail-page .site-header .shell {
    width: min(1460px, calc(100vw - 56px));
}

.room-detail-page .site-header__inner {
    min-height: 102px;
}

.room-detail-page .button--header-cta {
    min-height: 54px;
    min-width: 174px;
    border-radius: 8px;
    background: #3f5f34;
    font-size: 1rem;
    font-weight: 700;
}

.room-detail-page .button--header-cta:hover {
    background: #324d28;
}

.room-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: #111;
}

.room-hero__image-wrap {
    position: absolute;
    inset: 0;
}

.room-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.42)),
        linear-gradient(to right, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.room-hero__body {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 116px 0 46px;
    text-align: center;
}

.room-hero__content {
    width: min(720px, 100%);
}

.room-hero__content .eyebrow {
    display: block;
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.room-hero__content h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.08;
    color: var(--white);
}

.room-hero__specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.86);
}

.room-hero__spec {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.room-hero__spec-separator {
    color: rgba(255, 255, 255, 0.62);
}

.pill--offer {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 2px 11px;
    border-radius: 4px;
    background: var(--olive-deep);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.section--room-detail {
    position: relative;
    background: var(--white);
    padding: 42px 0 0;
}

.room-detail__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: #5d5d5d;
    font-size: 0.82rem;
    line-height: 1.4;
}

.room-detail__breadcrumb a:hover {
    color: var(--olive-deep);
}

.room-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 58px;
    align-items: start;
    margin-bottom: 48px;
}

.room-detail__content {
    min-width: 0;
}

.room-overview__kicker {
    margin: 0 0 2px;
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.room-overview__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.room-overview__heading h2 {
    margin: 0;
    color: #111;
    font-family: var(--font-display);
    font-size: 2.45rem;
    font-weight: 400;
    line-height: 1.15;
}

.room-overview__description {
    max-width: 68ch;
    margin: 8px 0 0;
    color: #1c1c1c;
    font-size: 0.92rem;
    line-height: 1.4;
}

.room-overview__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 28px;
    max-width: 570px;
    margin-top: 28px;
}

.room-overview__feature {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    text-align: center;
}

.room-overview__feature-icon {
    display: flex;
    width: 46px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #818181;
}

.room-overview__feature-icon svg {
    width: 43px;
    height: 43px;
    color: currentColor;
    stroke-width: 1.4;
}

.room-overview__feature-text {
    min-width: 0;
}

.room-overview__feature-value {
    display: block;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.room-overview__feature-label {
    display: block;
    margin-bottom: 5px;
    color: #6a6a6a;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.function-room-detail-page .room-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.function-room-overview .room-overview__features {
    max-width: 760px;
}

.function-room-layouts,
.function-room-features {
    margin-top: 42px;
}

.function-room-layouts .section-title--uppercase,
.function-room-features .section-title--uppercase {
    margin: 0;
    color: #111;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.function-room-layouts__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.function-room-layout {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    background: #f8f8f5;
}

.function-room-layout__name {
    display: block;
    color: #666;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.function-room-layout__capacity {
    display: block;
    margin-top: 6px;
    color: #111;
    font-family: var(--font-display);
    font-size: 1.68rem;
    font-weight: 400;
    line-height: 1.1;
}

.function-room-layout p {
    margin: 8px 0 0;
    color: #444;
    font-size: 0.84rem;
    line-height: 1.45;
}

.function-room-features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.function-room-features__grid span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
}

.function-room-inquiry-card {
    padding: 30px 32px 28px;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.function-room-inquiry-card h2 {
    margin: 0;
    color: #111;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.function-room-inquiry-card > p {
    margin: 12px auto 22px;
    max-width: 28ch;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: center;
}

.function-room-inquiry-card__facts {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.function-room-inquiry-card__facts div {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.function-room-inquiry-card__facts dt {
    margin: 0 0 3px;
    color: #6a6a6a;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.function-room-inquiry-card__facts dd {
    margin: 0;
    color: #111;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.amenities {
    position: relative;
    margin-top: 8px;
    padding-top: 8px;
}

.amenities::before,
.amenities::after {
    content: "";
    position: absolute;
    top: 56px;
    width: 145px;
    height: 70px;
    background-image: url("/assets/images/essentials/sarawak-art.webp");
    background-repeat: repeat-x;
    background-size: 145px 70px;
    opacity: 0.24;
    pointer-events: none;
}

.amenities::before {
    left: calc((100% - 100vw) / 2);
}

.amenities::after {
    right: calc((100% - 100vw) / 2);
}

.amenities .section-title--uppercase {
    margin: 0;
    color: #111;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 8px 34px;
    margin-top: 20px;
}

.amenities__item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.amenities__bullet {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #111;
}

.amenities__name {
    color: #111;
    font-size: 0.84rem;
    line-height: 1.35;
}

.booking-sidebar-card {
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 8px;
    padding: 30px 36px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.booking-sidebar-card__eyebrow {
    margin: 0 0 4px;
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.booking-sidebar-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.booking-sidebar-card__amount {
    color: #111;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
}

.booking-sidebar-card__unit {
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.booking-sidebar-card__form {
    display: block;
}

.booking-sidebar-card__fields {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
}

.booking-sidebar-card .field {
    min-width: 0;
    padding: 0;
    border: none;
}

.booking-sidebar-card .field__label {
    margin-bottom: 6px;
    color: #111;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
}

.booking-sidebar-card .field input,
.booking-sidebar-card .field select {
    height: 35px;
    padding: 0 34px 0 12px;
    border-radius: 8px;
    background: #d8d8d8;
    color: #707070;
    font-size: 0.78rem;
    line-height: 35px;
}

.booking-sidebar-card .field input:focus,
.booking-sidebar-card .field select:focus {
    box-shadow: 0 0 0 2px rgba(63, 95, 52, 0.35);
}

.booking-sidebar-card .field__icon {
    right: 10px;
    width: 17px;
    height: 17px;
    color: #4b6940;
}

.button--outline-dark {
    width: min(278px, 100%);
    min-height: 44px;
    margin: 26px auto 0;
    padding: 0 24px;
    border: 1px solid #263728;
    border-radius: 8px;
    background: var(--white);
    color: #263728;
    font-size: 0.92rem;
    font-weight: 700;
}

.button--outline-dark:hover {
    background: #263728;
    border-color: #263728;
    color: var(--white);
}

/* ─── Booking Search Card (room detail sidebar) ─────────────────── */

.booking-search-card {
    position: sticky;
    top: 24px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.booking-search-card__title {
    margin: 0 0 22px;
    color: #111;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.booking-search-card__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-search-card__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
}

.booking-search-card__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.booking-search-card__label {
    color: #555;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-search-card__control {
    position: relative;
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 36px 0 12px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.15s;
}

.booking-search-card__control:hover {
    border-color: #49643b;
}

.booking-search-card__control input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 0.84rem;
    line-height: 1;
    outline: none;
    cursor: pointer;
}

.booking-search-card__icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #49643b;
    pointer-events: none;
    flex-shrink: 0;
}

.booking-search-card__control--guests {
    padding: 0;
    height: auto;
    border: none;
    background: transparent;
}

.booking-search-card__control--guests .booking-guests {
    display: block;
    width: 100%;
}

.booking-search-card__control--guests .booking-guests__trigger {
    width: 100%;
    height: 42px;
    padding: 0 36px 0 12px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 8px;
    background: #fafafa;
    text-align: left;
    font-size: 0.84rem;
    transition: border-color 0.15s;
}

.booking-search-card__control--guests .booking-guests__trigger:hover {
    border-color: #49643b;
}

.booking-search-card__control--guests .booking-guests__trigger-plus {
    right: 10px;
    color: #49643b;
}

.booking-search-card__picker {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
}

.booking-search-card__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: #49643b;
    color: #ffffff;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.booking-search-card__submit:hover {
    background: #3a5030;
}

.booking-search-card__feedback {
    margin: 0;
    color: #c0392b;
    font-size: 0.8rem;
    text-align: center;
}

.booking-search-card__feedback:empty {
    display: none;
}

.room-gallery {
    margin-top: 68px;
}

.room-gallery__mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(0, 0.9fr) minmax(150px, 0.44fr);
    grid-template-rows: 360px 200px;
    gap: 20px;
}

.room-gallery__tile {
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.room-gallery__tile--1 {
    grid-row: 1 / span 2;
}

.room-gallery__tile--4 {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.room-gallery__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-help {
    width: min(360px, 100%);
    margin: 98px auto 116px;
    text-align: center;
}

.room-help h2 {
    margin: 0 0 12px;
    color: #111;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
}

.room-help p {
    margin: 0 0 24px;
    color: #111;
    font-size: 0.85rem;
    line-height: 1.35;
}

.room-help__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 8px;
    background: #25d366;
    color: #111;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.room-help__button:hover {
    transform: translateY(-2px);
    background: #1fb957;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.room-detail-page .site-footer {
    padding: 58px 0 60px;
    background: #191919;
}

/* Responsive Styles for Room Detail */
@media (max-width: 1100px) {
    .room-detail__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
        gap: 34px;
    }

    .booking-sidebar-card {
        padding-right: 26px;
        padding-left: 26px;
    }

    .booking-sidebar-card__fields {
        gap: 14px;
    }

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

@media (max-width: 900px) {
    .room-detail-page {
        --shell: min(1180px, calc(100vw - 32px));
    }

    .room-detail-page .site-header .shell {
        width: var(--shell);
    }

    .room-detail-page .site-header__inner {
        min-height: 84px;
    }

    .room-hero,
    .room-hero__body {
        min-height: 430px;
    }

    .room-hero__body {
        padding-top: 108px;
    }

    .room-hero__content h1 {
        font-size: 2.5rem;
    }

    .room-detail__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-bottom: 44px;
    }

    .booking-search-card {
        position: static;
        width: min(620px, 100%);
    }

    .function-room-detail-page .room-detail__grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar-card {
        width: min(620px, 100%);
    }

    .function-room-inquiry-card {
        width: min(620px, 100%);
    }

    .amenities::before,
    .amenities::after {
        display: none;
    }

    .amenities__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 12px 22px;
    }

    .room-gallery__mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 320px 220px 220px;
    }

    .room-gallery__tile--1 {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .room-gallery__tile--4 {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .room-detail-page {
        --shell: calc(100vw - 32px);
    }

    .room-hero,
    .room-hero__body {
        min-height: 390px;
    }

    .room-hero__body {
        padding: 96px 0 34px;
    }

    .room-hero__content h1 {
        font-size: 2rem;
    }

    .room-hero__specs {
        gap: 5px 7px;
        font-size: 0.82rem;
    }

    .section--room-detail {
        padding-top: 30px;
    }

    .room-detail__breadcrumb {
        margin-bottom: 16px;
        font-size: 0.78rem;
    }

    .room-overview__heading {
        flex-wrap: wrap;
        gap: 10px;
    }

    .room-overview__heading h2 {
        width: 100%;
        font-size: 2rem;
    }

    .room-overview__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 18px;
        max-width: none;
    }

    .function-room-layouts__grid {
        grid-template-columns: 1fr;
    }

    .function-room-inquiry-card {
        padding: 24px 18px;
    }

    .booking-sidebar-card {
        padding: 24px 18px;
    }

    .booking-sidebar-card__amount {
        font-size: 2.2rem;
    }

    .booking-sidebar-card__fields {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .booking-search-card {
        padding: 22px 18px 20px;
    }

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

    .amenities__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 10px;
    }

    .room-gallery {
        margin-top: 46px;
    }

    .room-gallery__mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 14px;
    }

    .room-gallery__tile,
    .room-gallery__tile--1,
    .room-gallery__tile--4 {
        grid-column: auto;
        grid-row: auto;
        min-height: 230px;
    }

    .room-help {
        margin: 64px auto 76px;
    }

    .room-help h2 {
        font-size: 1.75rem;
    }
}

/* Room Search Page Styles */
.room-search-hero {
    position: relative;
    min-height: 52svh;
    overflow: hidden;
    color: var(--white);
}

.room-search-hero__background {
    position: absolute;
    inset: 0;
}

.room-search-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.room-search-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 5, 0.72) 0%,
        rgba(10, 14, 10, 0.55) 40%,
        rgba(10, 14, 10, 0.60) 70%,
        rgba(5, 8, 5, 0.80) 100%
    );
}

.room-search-hero__body {
    position: relative;
    z-index: 1;
    min-height: 52svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 88px;
}

.room-search-hero__content {
    text-align: center;
}

.room-search-hero__content .eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
}

.room-search-hero__content h1 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.12;
}

/* Search Bar — overlapping bridge between hero and list */
.room-search-bar-wrap {
    position: relative;
    z-index: 10;
    margin-top: -44px;
    padding-bottom: 0;
}

.room-search-bar {
    display: flex;
    width: 100%;
}

.room-search-bar__form {
    display: flex;
    width: 100%;
}

.room-search-bar__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background: rgba(38, 55, 40, 0.21);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.field--search {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.field--search .field__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.field--search .field__input-wrap {
    position: relative;
}

.field--search .field__input,
.field--search .field__select {
    width: 100%;
    min-height: 40px;
    background: #FFF4F4;
    border: none;
    border-radius: 6px;
    padding: 0 36px 0 12px;
    font-size: 0.85rem;
    color: #1e1e1e;
    font-family: var(--font-body);
    appearance: none;
    -webkit-appearance: none;
}

.field--search .field__input::placeholder {
    color: #818181;
}

.field--search .field__select option {
    background: #ffffff;
    color: #1e1e1e;
}

.field--search .field__input:focus,
.field--search .field__select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #49643B;
}

.field--search .field__icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #818181;
    pointer-events: none;
    flex-shrink: 0;
}

.field--search .field__input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.room-search-bar__action {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px 16px 16px 0;
}

.button--search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    background: #49643B;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition-fast);
    white-space: nowrap;
}

.button--search:hover {
    background: #263728;
}

.button--search .button__icon {
    width: 16px;
    height: 16px;
}

/* Room Search List Section */
.section--room-search-list {
    background: #f5f4f0;
    padding: 48px 0 80px;
}

.room-search-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Room Search Card */
.room-search-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(30, 30, 30, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.room-search-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.10);
}

.room-search-card__media {
    position: relative;
    overflow: hidden;
}

.room-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.room-search-card:hover .room-search-card__media img {
    transform: scale(1.04);
}

.room-search-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 9px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 1;
}

.room-search-card__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 0;
    align-items: stretch;
}

.room-search-card__info {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-search-card__title {
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-family: var(--font-display);
}

.room-search-card__title a {
    color: var(--ink);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.room-search-card__title a:hover {
    color: var(--olive);
}

.room-search-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}

.room-search-card__spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.room-search-card__spec svg {
    width: 14px;
    height: 14px;
    color: var(--muted);
    flex-shrink: 0;
}

.room-search-card__description {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 52ch;
    flex: 1;
}

.room-search-card__info .text-link--sm {
    display: inline-block;
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--olive);
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 0.01em;
}

.room-search-card__info .text-link--sm:hover {
    color: var(--olive-deep);
}

.room-search-card__booking {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 24px;
    border-left: 1px solid rgba(30, 30, 30, 0.08);
    min-width: 160px;
}

.room-search-card__price {
    text-align: right;
}

.room-search-card__price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.room-search-card__price-value {
    display: flex;
    align-items: baseline;
    gap: 3px;
    justify-content: flex-end;
}

.room-search-card__currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.room-search-card__amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1;
}

.room-search-card__unit {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 1px;
    letter-spacing: 0.04em;
}

.button--book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 20px;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    text-decoration: none;
}

.button--book:hover {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

/* Responsive Styles for Room Search */

/* Large tablet */
@media (max-width: 1100px) {
    .room-search-card {
        grid-template-columns: 220px 1fr;
    }
}

/* Tablet: guests full width, check-in + check-out side by side, Search full width */
@media (max-width: 900px) {
    .room-search-hero__body {
        min-height: 44svh;
        padding: 100px 0 80px;
    }

    .room-search-bar-wrap {
        margin-top: -40px;
    }

    .room-search-bar__grid {
        flex-wrap: wrap;
    }

    .field--search:nth-child(1) {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .field--search:nth-child(2) {
        flex: 1 1 50%;
    }

    .field--search:nth-child(3) {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .room-search-bar__action {
        flex: 1 1 100%;
        padding: 12px 16px;
    }

    .button--search {
        width: 100%;
        height: 44px;
        border-radius: 6px;
    }

    .section--room-search-list {
        padding: 56px 0 64px;
    }

    .room-search-card {
        grid-template-columns: 190px 1fr;
    }

    .room-search-card__info {
        padding: 18px 20px;
    }

    .room-search-card__booking {
        padding: 18px 20px;
        min-width: 140px;
    }
}

/* Mobile: all fields stack single column */
@media (max-width: 640px) {
    .room-search-hero {
        min-height: auto;
    }

    .room-search-hero__body {
        min-height: auto;
        padding: 96px 0 72px;
    }

    .room-search-hero__content h1 {
        font-size: 1.9rem;
    }

    .room-search-bar-wrap {
        margin-top: -36px;
    }

    .room-search-bar__grid {
        flex-direction: column;
    }

    .field--search,
    .field--search:nth-child(1),
    .field--search:nth-child(2),
    .field--search:nth-child(3) {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .room-search-bar__action {
        flex: 1 1 100%;
        padding: 12px 16px;
    }

    .button--search {
        width: 100%;
        height: 44px;
        border-radius: 6px;
    }

    .section--room-search-list {
        padding: 48px 0 56px;
    }

    .room-search-list {
        gap: 14px;
    }

    /* card: image on top, content below */
    .room-search-card {
        grid-template-columns: 1fr;
    }

    .room-search-card__media {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    /* info + booking stack vertically */
    .room-search-card__body {
        grid-template-columns: 1fr;
    }

    .room-search-card__info {
        padding: 16px 18px 12px;
    }

    /* booking: price left, button right on one row */
    .room-search-card__booking {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-left: none;
        border-top: 1px solid rgba(30, 30, 30, 0.08);
        padding: 14px 18px;
        min-width: unset;
        gap: 12px;
    }

    .room-search-card__price {
        text-align: left;
    }

    .room-search-card__price-value {
        justify-content: flex-start;
    }

    .room-search-card__amount {
        font-size: 1.35rem;
    }

    .button--book {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    body.landing-page:not(.v2-page) .hero__copy {
        font-size: 1rem;
        line-height: 1.78;
    }

    body.landing-page:not(.v2-page) .section__copy,
    body.landing-page:not(.v2-page) .about__intro .section__copy,
    body.landing-page:not(.v2-page) .promo-split__copy,
    body.landing-page:not(.v2-page) .room-card__body p,
    body.landing-page:not(.v2-page) .meeting-card__body p,
    body.landing-page:not(.v2-page) .final-cta__content > p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.landing-page:not(.v2-page) .facility-card p {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    body.landing-page:not(.v2-page) #restaurant .restaurant__feature p {
        font-size: 0.98rem !important;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.08rem;
    }

    .hero__copy,
    .section__copy {
        font-size: 0.84rem;
    }

    .blocks__content h3 {
        font-size: 2.8rem;
    }

    .blocks__content p:not(.blocks__label) {
        font-size: 0.86rem;
    }

    #restaurant .restaurant__content h2 {
        font-size: 1.75rem;
    }

    #restaurant .restaurant__feature h3 {
        font-size: 1rem;
    }

    #restaurant .restaurant__feature p {
        font-size: 0.84rem !important;
    }

    #restaurant .restaurant__quote,
    .restaurant__quote {
        font-size: 0.98rem;
    }

    .final-cta__panel h2 {
        font-size: 1.65rem;
    }

    .room-hero__content h1,
    .room-search-hero__content h1 {
        font-size: 1.75rem;
    }

    .room-overview__heading h2,
    .room-help h2 {
        font-size: 1.65rem;
    }

    .room-search-card__title {
        font-size: 1.08rem;
    }
}

@media (max-width: 380px) {
    .blocks__content h3 {
        font-size: 2.5rem;
    }

    .final-cta__panel h2,
    .room-hero__content h1,
    .room-search-hero__content h1,
    .room-overview__heading h2,
    .room-help h2 {
        font-size: 1.55rem;
    }
}
