:root {
    --charcoal: #1b2228;
    --charcoal-soft: #24302a;
    --olive: #4c5a2a;
    --olive-dark: #35411d;
    --olive-light: #66753b;
    --gold: #c89b52;
    --gold-light: #e2c186;
    --cream: #f8f3ea;
    --cream-soft: #fcf8f1;
    --cream-deep: #f1e8da;
    --ink: #243028;
    --muted: #6f706a;
    --line: rgba(200, 155, 82, 0.32);
    --white: #fffdf8;
    --shadow-soft: 0 16px 46px rgba(29, 34, 30, 0.12);
    --shadow-card: 0 10px 30px rgba(37, 40, 33, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: min(1420px, calc(100% - 64px));
    --serif: "Cormorant Garamond", Georgia, serif;
    --script: "Allura", "Brush Script MT", cursive;
    --sans: "Inter", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-soft);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(226, 193, 134, 0.7);
    outline-offset: 3px;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

.script-text {
    font-family: var(--script);
    font-weight: 400;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--olive-light), var(--olive-dark));
    color: var(--white);
    box-shadow: 0 10px 24px rgba(53, 65, 29, 0.24);
}

.button-primary:hover {
    background: linear-gradient(135deg, #596936, #2e3919);
    box-shadow: 0 14px 28px rgba(53, 65, 29, 0.3);
}

.button-primary:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2c3027;
    box-shadow: 0 8px 20px rgba(200, 155, 82, 0.22);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    background: linear-gradient(to bottom, rgba(11, 18, 22, 0.55), transparent);
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(19, 27, 31, 0.92);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 253, 248, 0.75);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    font-weight: 600;
    white-space: nowrap;
}

.brand-copy small {
    margin-top: 7px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.6vw, 56px);
}

.primary-nav a {
    position: relative;
    padding: 34px 0 26px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 253, 248, 0.95);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    width: 44px;
}

.header-book {
    justify-self: end;
    min-height: 48px;
    border-radius: 16px;
    padding-inline: 22px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-toggle .menu-close {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #17212a;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    image-rendering: auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 30%, rgba(226, 193, 134, 0.13), transparent 30%),
        linear-gradient(90deg, rgba(10, 18, 23, 0.9) 0%, rgba(12, 21, 26, 0.72) 34%, rgba(13, 21, 24, 0.28) 68%, rgba(11, 17, 20, 0.12) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 180px;
    background: linear-gradient(to top, rgba(17, 23, 24, 0.72), transparent);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4, 11, 15, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 170px;
}

.hero-eyebrow {
    margin: 0 0 -12px;
    color: var(--gold);
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 1;
}

.hero h1 {
    max-width: 790px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4rem, 7vw, 7.4rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.hero-description {
    max-width: 590px;
    margin: 22px 0 0;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.65;
    color: rgba(255, 253, 248, 0.92);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(226, 193, 134, 0.36);
    width: fit-content;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: rgba(255, 253, 248, 0.88);
}

.hero-highlights .icon {
    color: var(--gold-light);
}

/* Booking */
.booking-wrap {
    position: relative;
    z-index: 8;
    margin-top: -104px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 0.85fr 1fr minmax(210px, 1.08fr);
    align-items: stretch;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 22px 58px rgba(22, 28, 26, 0.24);
    backdrop-filter: blur(16px);
}

.booking-field {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-right: 1px solid rgba(200, 155, 82, 0.28);
    color: var(--olive-dark);
}

.booking-field > .icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.65;
}

.booking-field span {
    min-width: 0;
    display: grid;
    gap: 5px;
    flex: 1;
}

.booking-field small {
    color: #4f5148;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    outline: none;
}

.booking-field input::-webkit-calendar-picker-indicator {
    opacity: 0.55;
    cursor: pointer;
}

.booking-submit {
    min-height: 72px;
    align-self: center;
    margin-left: 14px;
    border-radius: 14px;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.form-status {
    min-height: 1.5rem;
    margin: 12px 14px 0;
    color: var(--olive-dark);
    font-size: 0.9rem;
    text-align: center;
}

/* Features */
.features {
    position: relative;
    padding: 84px 0 68px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 100%, rgba(200, 155, 82, 0.08), transparent 24%),
        radial-gradient(circle at 100% 100%, rgba(200, 155, 82, 0.08), transparent 24%),
        var(--cream-soft);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.feature-item {
    position: relative;
    padding: 12px 34px;
    text-align: center;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 1px;
    height: 92px;
    background: rgba(200, 155, 82, 0.28);
}

.feature-icon {
    display: grid;
    place-items: center;
    min-height: 68px;
    color: var(--olive);
}

.feature-icon .icon {
    width: 58px;
    height: 58px;
    stroke-width: 1.45;
}

.feature-item h2 {
    margin: 10px 0 6px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
}

.feature-item p {
    max-width: 190px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Shared sections */
.section {
    padding: 78px 0;
}

.section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-heading h2 {
    margin: 4px 0 0;
    color: #16283a;
    font-family: var(--serif);
    font-size: clamp(2.45rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1;
}

.section-heading p {
    margin: 9px 0 0;
    color: #252b28;
    font-weight: 600;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold);
}

.ornament > span {
    width: 46px;
    height: 1px;
    background: var(--gold);
}

.ornament .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke-width: 1.2;
}

/* Rates */
.rates {
    position: relative;
    border-top: 1px solid rgba(200, 155, 82, 0.2);
    background:
        radial-gradient(circle at 0 12%, rgba(200, 155, 82, 0.08), transparent 20%),
        radial-gradient(circle at 100% 12%, rgba(200, 155, 82, 0.08), transparent 20%),
        #fbf6ee;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.rate-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 82, 0.46);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.88);
    box-shadow: var(--shadow-card);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.rate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(37, 40, 33, 0.14);
}

.rate-image-wrap {
    position: relative;
    aspect-ratio: 1.36 / 1;
    overflow: hidden;
    background: var(--cream-deep);
}

.rate-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.rate-card:hover .rate-image-wrap img {
    transform: scale(1.045);
}

.rate-label {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -1px;
    display: grid;
    min-height: 54px;
    place-content: center;
    padding: 8px 14px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #55652f, #34401d);
    color: var(--white);
    text-align: center;
    box-shadow: 0 -8px 22px rgba(31, 40, 19, 0.2);
}

.rate-label strong {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rate-label small {
    line-height: 1.1;
}

.rate-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 18px 18px;
}

.rate-options {
    display: grid;
    gap: 18px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.rate-options li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}

.check-icon {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--olive);
}

.check-icon .icon {
    width: 18px;
    height: 18px;
    fill: var(--olive);
    stroke: var(--white);
    stroke-width: 2.2;
}

.rate-option-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.rate-option-copy strong {
    font-size: 0.91rem;
    line-height: 1.25;
}

.rate-option-copy small {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.rate-price {
    font-size: 0.89rem;
    font-weight: 600;
    white-space: nowrap;
}

.rate-book {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Gallery */
.gallery-section {
    padding-top: 0;
    background: #fbf6ee;
}

.section-heading.compact {
    margin-bottom: 20px;
}

.section-heading.compact .ornament {
    gap: 16px;
}

.section-heading.compact .ornament > span {
    width: 82px;
}

.section-heading.compact h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.gallery-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 1.18 / 1;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--charcoal);
    box-shadow: 0 8px 22px rgba(27, 34, 40, 0.13);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(9, 14, 16, 0.88));
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.gallery-card:hover img {
    transform: scale(1.055);
}

.gallery-card figcaption {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

/* CTA */
.cta-section {
    position: relative;
    min-height: 190px;
    display: grid;
    align-items: center;
    background-image: var(--cta-image);
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 30, 34, 0.96), rgba(30, 39, 39, 0.82) 53%, rgba(31, 39, 32, 0.55));
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
    gap: 58px;
    align-items: center;
    padding-block: 28px;
}

.cta-title {
    display: grid;
    line-height: 1;
}

.cta-title > span {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
}

.cta-title strong {
    margin-top: -7px;
    color: var(--gold);
    font-size: clamp(3.1rem, 4.2vw, 4.4rem);
    font-weight: 400;
}

.cta-grid > p {
    margin: 0;
    color: rgba(255, 253, 248, 0.9);
    font-size: 1.05rem;
}

.cta-actions {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.cta-actions .button {
    min-width: 260px;
}

.cta-actions small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 253, 248, 0.76);
}

/* Footer */
.site-footer {
    padding: 42px 0 20px;
    background: #152328;
    color: rgba(255, 253, 248, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.62fr 1fr 0.9fr;
    gap: 56px;
}

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

.brand-footer .brand-copy strong {
    font-size: 1.7rem;
}

.footer-brand p {
    max-width: 320px;
    margin: 18px 0 0;
    color: rgba(255, 253, 248, 0.68);
    font-size: 0.86rem;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-column h2 {
    margin: 4px 0 7px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column > a:not(.button) {
    width: fit-content;
    color: rgba(255, 253, 248, 0.78);
    font-size: 0.84rem;
    transition: color 160ms ease;
}

.footer-column > a:not(.button):hover {
    color: var(--gold-light);
}

.contact-list a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-list .icon {
    margin-top: 2px;
    color: var(--gold-light);
}

.direct-booking p {
    margin: 0 0 6px;
    color: rgba(255, 253, 248, 0.68);
    font-size: 0.82rem;
}

.direct-booking .button {
    width: fit-content;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.direct-booking small {
    color: rgba(255, 253, 248, 0.62);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(226, 193, 134, 0.7);
    font-size: 0.76rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* Toast */
.toast {
    position: fixed;
    z-index: 300;
    right: 22px;
    bottom: 22px;
    max-width: min(440px, calc(100vw - 44px));
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: var(--olive-dark);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast[data-type="error"] {
    background: #8d3b31;
}

/* Tablet */
@media (max-width: 1180px) {
    :root {
        --container: min(100% - 40px, 1060px);
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 18px;
    }

    .primary-nav {
        gap: 26px;
    }

    .header-book {
        padding-inline: 16px;
    }

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

    .booking-submit {
        grid-column: 1 / -1;
        min-height: 58px;
        margin: 10px 0 0;
    }

    .booking-field:nth-child(4) {
        border-right: 0;
    }

    .feature-item {
        padding-inline: 16px;
    }

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

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

    .gallery-card:nth-child(4),
    .gallery-card:nth-child(5) {
        grid-column: span 1;
    }

    .cta-grid {
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.7fr 1fr;
        gap: 38px;
    }

    .direct-booking {
        grid-column: 1 / -1;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 16px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .direct-booking h2,
    .direct-booking p,
    .direct-booking small {
        margin: 0;
    }
}

/* Mobile navigation */
@media (max-width: 880px) {
    :root {
        --container: min(100% - 30px, 760px);
    }

    .site-header {
        background: linear-gradient(to bottom, rgba(10, 18, 22, 0.72), transparent);
    }

    .header-inner {
        min-height: 82px;
        grid-template-columns: 1fr auto;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand-copy strong {
        font-size: 1.55rem;
    }

    .brand-copy small {
        font-size: 0.66rem;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .header-book {
        display: none;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 15px auto;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 16px;
        background: rgba(20, 31, 34, 0.98);
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
        opacity: 0;
        transform: translateY(-14px);
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav a {
        padding: 16px 14px;
        border-radius: 10px;
    }

    .primary-nav a::after {
        display: none;
    }

    .primary-nav a.active,
    .primary-nav a:hover {
        background: rgba(226, 193, 134, 0.12);
        color: var(--gold-light);
    }

    .nav-open .primary-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-open .nav-toggle .menu-open {
        display: none;
    }

    .nav-open .nav-toggle .menu-close {
        display: block;
    }

    .hero {
        min-height: 670px;
    }

    .hero-media img {
        object-position: 61% center;
    }

    .hero-content {
        padding-top: 110px;
        padding-bottom: 190px;
    }

    .hero h1 {
        max-width: 620px;
        font-size: clamp(3.7rem, 12vw, 6rem);
    }

    .hero-description {
        max-width: 520px;
    }

    .hero-highlights {
        gap: 16px;
    }

    .booking-wrap {
        margin-top: -134px;
    }

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }

    .booking-field {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(200, 155, 82, 0.23);
    }

    .booking-field:nth-child(odd) {
        border-right: 1px solid rgba(200, 155, 82, 0.23);
    }

    .booking-field:nth-child(3),
    .booking-field:nth-child(4) {
        border-bottom: 0;
    }

    .booking-submit {
        grid-column: 1 / -1;
    }

    .features {
        padding-top: 64px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 12px;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-item:last-child {
        grid-column: 1 / -1;
    }

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

    .gallery-card:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 2 / 0.9;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-block: 36px;
        text-align: center;
    }

    .cta-actions {
        justify-items: center;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .direct-booking {
        grid-template-columns: 1fr;
        grid-column: 1 / -1;
        justify-items: start;
    }
}

/* Small phones */
@media (max-width: 580px) {
    :root {
        --container: min(100% - 24px, 520px);
    }

    html {
        scroll-padding-top: 78px;
    }

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

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: 1.25rem;
    }

    .brand-copy small {
        margin-top: 5px;
        font-size: 0.58rem;
    }

    .primary-nav {
        top: 76px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-media img {
        object-position: 67% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(10, 18, 23, 0.92), rgba(12, 21, 26, 0.72) 70%, rgba(13, 21, 24, 0.4));
    }

    .hero-content {
        padding-top: 118px;
        padding-bottom: 275px;
    }

    .hero-eyebrow {
        font-size: 3.2rem;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 17vw, 5.2rem);
        line-height: 0.92;
    }

    .hero-description {
        margin-top: 18px;
        font-size: 1rem;
    }

    .hero-highlights {
        display: grid;
        gap: 10px;
        margin-top: 24px;
        padding-top: 16px;
    }

    .booking-wrap {
        margin-top: -246px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        padding: 10px;
        border-radius: 18px;
    }

    .booking-field,
    .booking-field:nth-child(odd) {
        min-height: 76px;
        padding: 10px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(200, 155, 82, 0.23);
    }

    .booking-field:nth-child(4) {
        border-bottom: 0;
    }

    .booking-field > .icon {
        width: 24px;
        height: 24px;
    }

    .booking-submit {
        min-height: 56px;
        margin-top: 8px;
    }

    .features {
        padding: 56px 0 46px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-item:last-child {
        grid-column: auto;
    }

    .feature-item {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 0 16px;
        align-items: center;
        padding: 12px 4px;
        text-align: left;
    }

    .feature-icon {
        grid-row: span 2;
    }

    .feature-icon .icon {
        width: 52px;
        height: 52px;
    }

    .feature-item h2 {
        margin: 0;
    }

    .feature-item p {
        max-width: none;
        margin: 2px 0 0;
    }

    .section {
        padding: 58px 0;
    }

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

    .section-heading h2 {
        font-size: 2.45rem;
    }

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

    .rate-card {
        max-width: 480px;
        width: 100%;
        margin-inline: auto;
    }

    .gallery-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .gallery-card,
    .gallery-card:last-child {
        flex: 0 0 78%;
        aspect-ratio: 1.18 / 1;
        scroll-snap-align: center;
    }

    .cta-title strong {
        font-size: 3rem;
    }

    .cta-actions .button {
        min-width: 100%;
    }

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

    .footer-brand,
    .direct-booking {
        grid-column: auto;
    }
}

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