:root {
    --navy-blue: #1a365d;
    --navy-light: #2b4c7e;
    --navy-dark: #061224;
    --text-dark: #3a3a3a;
    --text-light: #f4f4f4;
    --accent-warm: #FAF9F6;
    --accent-gold: #c2a87c;
    --accent-gold-soft: rgba(194, 168, 124, 1);
    --accent-gold-line: rgba(194, 168, 124, 1);
    --frame-border: 2px;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s ease;
    --radius-arch: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--accent-warm);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.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;
}

/* Navbar */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: clamp(0.9rem, 3.6vw, 3.15rem);
    padding: 0.58rem clamp(4%, 5vw, 6%);
    background-color: var(--navy-dark);
    border-bottom: var(--frame-border) solid var(--accent-gold-line);
    position: relative;
    z-index: 10;
}

.nav-links-left {
    justify-self: end;
    padding-right: 0.5rem;
}

.nav-links-right {
    justify-self: start;
    padding-left: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    line-height: 0;
}

.logo img {
    height: clamp(65px, 9vw, 117px);
    width: auto;
    object-fit: contain;
    transition: opacity 0.35s ease;
}

.logo:hover img {
    opacity: 1;
}

.nav-links a.nav-active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold-line);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.7vw, 2.5rem);
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.72);
    transition: color 0.35s ease, letter-spacing 0.35s ease;
    padding: 0.32rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent-gold);
    letter-spacing: 0.26em;
    border-bottom-color: var(--accent-gold-line);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.logo:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 6px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icons {
    display: flex;
    gap: 1rem;
    color: var(--navy-blue);
    font-size: 1.1rem;
}

/* Burger button — hidden on desktop */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    z-index: 11;
}

.nav-burger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--accent-gold-line);
    border-radius: 2px;
    transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.22s ease,
                width 0.22s ease;
    transform-origin: center;
}

/* X animation when open */
.navbar.nav--open .nav-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.nav--open .nav-burger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.navbar.nav--open .nav-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Interior pages */
.hero.page-hero {
    height: 50vh;
    min-height: 50vh;
    max-height: 50vh;
    padding: clamp(5rem, 12vh, 7rem) 1.25rem clamp(4rem, 8vh, 5rem);
}

.hero.page-hero .hero-overlay {
    background: rgba(10, 20, 60, 0.30);
}

.page-hero .hero-content {
    max-width: 56rem;
    margin-top: clamp(2.2rem, 7vh, 4.5rem);
}

.hero.page-hero .subtitle {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 4.2vw, 3.1rem);
    letter-spacing: 0.24em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero.page-hero .subtitle::before,
.hero.page-hero .subtitle::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.page-section {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(5%, 7vw, 9%);
    background: #ffffff;
}

.page-section--alt {
    background: linear-gradient(180deg, #f8f4ed 0%, #ffffff 100%);
}

.page-section-inner {
    max-width: 70rem;
    margin: 0 auto;
}

.page-section-title {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin-bottom: 0.85rem;
}

.page-section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.page-lead {
    max-width: 46rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

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

.detail-card {
    border: 1px solid rgba(194, 168, 124, 0.4);
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.75);
}

.detail-card h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.detail-card p {
    color: #505050;
}

.page-section--room-stats {
    background: var(--navy-dark);
}

.page-section--room-stats .page-section-kicker,
.page-section--room-stats .page-section-title {
    color: #ffffff;
}

.room-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.1rem;
}

.room-stat-card {
    padding: 0.2rem 0;
}

.room-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.8vw, 5rem);
    line-height: 1;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 0.2em;
}

.room-stat-main {
    font-size: 1em;
}

.room-stat-sub {
    font-size: 0.26em;
    line-height: 1;
    display: inline-block;
    transform: translateY(-0.04em);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-weight: 600;
}

.room-stat-label {
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    white-space: nowrap;
}

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

.space-card {
    border: 1px solid rgba(194, 168, 124, 0.42);
    background: #fff;
    isolation: isolate;
}

.space-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(194, 168, 124, 0.35);
}

/* Room card carousel */
.room-carousel {
    position: relative;
    height: 220px;
    overflow: hidden;
    clip-path: inset(0);
    background: #f0ebe2;
}

.room-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
    border-bottom: 1px solid rgba(194, 168, 124, 0.35);
}

.room-carousel-btn,
.room-carousel-expand {
    position: absolute;
    background: rgba(6, 18, 36, 0.52);
    color: #fff;
    border: none;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
    padding: 0;
}

.room-carousel-btn:hover,
.room-carousel-expand:hover {
    background: rgba(6, 18, 36, 0.85);
}

.room-carousel-btn {
    top: 50%;
    transform: translateY(-50%);
}

.room-carousel-btn--prev { left: 0.45rem; }
.room-carousel-btn--next { right: 0.45rem; }

.room-carousel-expand {
    top: 0.45rem;
    right: 0.45rem;
}

.room-carousel-count {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.67rem;
    font-family: var(--font-body);
    color: #fff;
    background: rgba(6, 18, 36, 0.42);
    padding: 0.1rem 0.5rem;
    letter-spacing: 0.07em;
    pointer-events: none;
    white-space: nowrap;
}

.room-carousel[data-single] .room-carousel-btn,
.room-carousel[data-single] .room-carousel-count {
    display: none;
}

.space-card-body {
    padding: 0.9rem 0.95rem 1rem;
}

.space-card-body h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.46rem;
    margin-bottom: 0.2rem;
}

.space-card-body p {
    color: #4f4f4f;
}

.split-media {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
}

.split-media .page-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.split-media img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    border: 1px solid rgba(194, 168, 124, 0.35);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.gallery-page-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border: 1px solid rgba(194, 168, 124, 0.35);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.contact-card {
    padding: 1.1rem;
    border: 1px solid rgba(194, 168, 124, 0.4);
    background: #fff;
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
}

.page-section--contact {
    background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 38%, #f3eee3 100%);
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.page-section--contact .page-section-kicker {
    color: #8e7a57;
}

.page-section--contact .page-section-title {
    color: #0d1f3b;
    margin-bottom: 0.55rem;
}

.page-section--contact .page-lead {
    color: #4a4a4a;
    margin-bottom: 1.05rem;
    max-width: 44rem;
    margin-left: 0;
    margin-right: 0;
}

.page-section--contact .contact-cards {
    margin-bottom: 1.15rem;
}

.page-section--contact .contact-card {
    border: 1px solid rgba(13, 31, 59, 0.25);
    border-top: 4px solid var(--navy-dark);
    box-shadow: 0 10px 24px rgba(6, 18, 36, 0.08);
}

.page-section--contact .contact-card h3,
.page-section--contact .contact-card p {
    color: var(--navy-dark);
}

.page-section--contact .contact-card .btn-outline {
    border-color: var(--navy-dark);
}

.page-section--contact .contact-card .btn-outline:hover {
    color: var(--navy-dark);
}

.contact-form-strip {
    position: relative;
    isolation: isolate;
    margin: 0.8rem 0 1.65rem;
    padding: 1.1rem 0;
}

.contact-form-strip::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    background: #f6f2ea;
    border-top: 1px solid rgba(194, 168, 124, 0.26);
    border-bottom: 1px solid rgba(194, 168, 124, 0.26);
    z-index: -2;
}

.contact-form-strip::after {
    display: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 1rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(194, 168, 124, 0.42);
    box-shadow: none;
    padding: 1rem;
}

.contact-panel,
.contact-form {
    border: 1px solid rgba(194, 168, 124, 0.34);
    background: rgba(255, 255, 255, 0.74);
    padding: 1rem 1.1rem;
}

.contact-panel h3,
.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.55rem;
    margin-bottom: 0.55rem;
}

.contact-checklist {
    list-style: disc;
    margin-left: 1.05rem;
    color: #333;
}

.contact-checklist li + li {
    margin-top: 0.35rem;
}

.contact-panel-note {
    margin-top: 0.75rem;
    color: #4f4f4f;
    font-size: 0.92rem;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.72rem;
}

.contact-form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #26354d;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    border: 1px solid rgba(194, 168, 124, 0.7);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.72rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #3f3f3f;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(194, 168, 124, 0.22);
}

.contact-consent {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #353535;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.contact-consent input {
    margin-top: 0.18rem;
}

.contact-submit.btn-outline {
    width: 100%;
    text-align: center;
    color: #061224;
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.14em;
}

.contact-submit.btn-outline:hover {
    background: #d2b487;
    color: #061224;
    border-color: #d2b487;
}

.contact-faqs {
    margin-top: 1.35rem;
}

.contact-faq-accordion details {
    border: 1px solid rgba(13, 31, 59, 0.24);
    background: rgba(255, 255, 255, 0.94);
    padding: 0.95rem 1rem;
}

.contact-faq-accordion details + details {
    margin-top: 0.7rem;
}

.contact-faq-accordion summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 1.6rem;
    font-family: var(--font-heading);
    font-size: 1.23rem;
    color: var(--navy-dark);
}

.contact-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.contact-faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

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

.contact-faq-accordion p {
    margin-top: 0.6rem;
    color: #444;
}

.tofo-section .tofo-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.7rem;
}

.page-section--tofo-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.page-section--tofo-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/vila/vila-maresias-kitchen-equipped-tofo.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

.page-section--tofo-bg > .page-section-inner {
    position: relative;
    z-index: 1;
}

.tofo-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.tofo-copy h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.65rem;
    margin-bottom: 0.7rem;
}

.tofo-tip-list {
    list-style: disc;
    margin-left: 1.2rem;
    color: #4b4b4b;
}

.tofo-tip-list li {
    margin-bottom: 0.62rem;
}

.tofo-accordion details {
    border: 1px solid rgba(194, 168, 124, 0.45);
    background: #ffffff;
    padding: 0.9rem 1rem;
}

.tofo-accordion details + details {
    margin-top: 0.7rem;
}

.tofo-accordion summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.24rem;
    padding-right: 1.5rem;
    position: relative;
}

.tofo-accordion summary::-webkit-details-marker {
    display: none;
}

.tofo-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: 600;
}

.tofo-accordion details[open] summary::after {
    content: "−";
}

.tofo-accordion p {
    margin-top: 0.65rem;
    color: #4f4f4f;
}

.tofo-discover .tofo-activity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.page-section--tofo-discover {
    background: var(--navy-dark);
}

.page-section--tofo-discover .page-section-kicker,
.page-section--tofo-discover .page-section-title,
.page-section--tofo-discover .page-lead,
.page-section--tofo-discover p,
.page-section--tofo-discover li {
    color: #ffffff;
}

.page-section--tofo-discover .detail-card,
.page-section--tofo-discover .tofo-guide-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.page-section--tofo-discover .detail-card h3,
.page-section--tofo-discover .tofo-guide-card h3 {
    color: #ffffff;
}

.tofo-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tofo-guide-card {
    border: 1px solid rgba(194, 168, 124, 0.45);
    background: #fff;
    padding: 1rem 1.1rem;
}

.tofo-guide-card h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tofo-guide-card ol,
.tofo-guide-card ul {
    margin-left: 1.1rem;
    color: #4d4d4d;
}

.tofo-guide-card li + li {
    margin-top: 0.36rem;
}

.tofo-seo-cta {
    border-left: 3px solid rgba(255, 255, 255, 0.75);
    padding-left: 0.85rem;
    color: #3f3f3f;
}

.page-section--tofo-discover .tofo-seo-cta {
    color: #ffffff;
}

.team-photo { width: 100%; max-width: 700px; height: auto; margin: 0 auto; overflow: hidden; }

.team-photo img { width: 100%; height: auto; display: block; }













.page-section--team {
    background: #f6f2ea;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.page-section--team .page-section-inner {
    text-align: center;
}

.page-section--team .page-section-kicker,
.page-section--team .page-section-title,
.page-section--team .page-lead {
    color: var(--navy-dark);
}

.page-section--team .page-section-kicker {
    opacity: 0.82;
}

.team-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(194, 168, 124, 0.35);
    padding: 0.7rem 0.7rem 1rem;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(194, 168, 124, 0.35);
    margin-bottom: 0.7rem;
}

.team-card h3 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.24rem;
    margin-bottom: 0.1rem;
}

.team-card p {
    color: #3f3f3f;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

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

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

    .tofo-section .tofo-facts {
        grid-template-columns: 1fr;
    }

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

    .tofo-discover .tofo-activity-grid,
    .tofo-guide-grid {
        grid-template-columns: 1fr;
    }

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

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

    .split-media img {
        min-height: 280px;
        order: -1;
    }
}

@media (max-width: 680px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

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

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

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

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

    .split-media img {
        min-height: 240px;
    }
}

/* In-page anchor targets (small offset from viewport top) */
#book,
#about,
#rooms,
#services,
#gallery,
#reviews,
#faq,
#contact {
    scroll-margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - var(--navbar-h, 88px));
    background-color: var(--navy-dark);
    background-image: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -6%;
    z-index: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: heroCinematic 55s ease-in-out infinite alternate;
    will-change: transform;
}

.hero--video::before {
    display: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-review-badge {
    position: absolute;
    bottom: 5rem;
    left: 2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(6, 18, 36, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.7rem 1.1rem 0.7rem 0.85rem;
}

.hero-review-badge__logo {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.hero-review-badge__right {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-review-badge__stars {
    display: flex;
    gap: 0.2rem;
    color: var(--accent-gold);
    font-size: 1rem;
}

.hero-review-badge__count {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

@keyframes heroCinematic {
    0% {
        transform: scale(1.06) translate(0, 0);
    }
    100% {
        transform: scale(1.06) translate(-1.2%, 0.8%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
        transform: scale(1.03);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.8vw, 3rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    text-align: center;
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: auto;
    padding-inline: clamp(2rem, 4vw, 2rem);
}

.hero--video {
    padding-top: 0;
    justify-content: center;
}

.hero--video .hero-content {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-copy {
    max-width: min(100%, 56rem);
    margin-inline: auto;
    opacity: 1;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 2.5vw, 1.35rem);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.45vw, 1.45rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.48em;
    color: #ffffff;
    opacity: 1;
    margin: 0 0 clamp(1.25rem, 3vh, 2rem);
}

.subtitle::before,
.subtitle::after {
    content: '';
    flex: 0 0 auto;
    width: clamp(1.75rem, 6vw, 3.75rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    opacity: 1;
}

.subtitle-text {
    flex: 0 1 auto;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.45em 0.75em;
    max-width: 100%;
    text-align: center;
    padding-block: 0.15rem;
    white-space: nowrap;
    opacity: 1;
}

.subtitle .hero-word {
    letter-spacing: 0.34em;
}

.hero-word {
    display: inline-block;
    vertical-align: baseline;
    opacity: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 300;
    margin: 0 0 2rem;
    color: #fff;
    opacity: 1;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(6, 18, 36, 0.35);
    font-feature-settings: "kern" 1;
    width: 100%;
    text-align: center;
}

.hero-title-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.45rem, 2vh, 0.85rem);
}

.hero-title-line--upper {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.4em 0.5em;
    max-width: 100%;
    font-size: clamp(1.05rem, 2.85vw, 1.55rem);
    font-weight: 300;
    line-height: 1.35;
    text-transform: uppercase;
    color: #fff;
    opacity: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-title-words {
    letter-spacing: 0.32em;
}

.hero-title-line--display {
    font-size: clamp(3.1rem, 14vw, 8rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    opacity: 1;
    text-wrap: balance;
}

/* Long editorial headline: sentence case, softer scale */
.hero-title-line--display.hero-title-line--phrase {
    display: block;
    text-transform: none;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.45rem, 4.7vw, 5.3rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    opacity: 1;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    opacity: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-synthesis: none;
}

.booking-container {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
}

.booking-intro {
    margin: 0.65rem 0 0;
    padding: 0;
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 1.05vw, 0.8rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: var(--navy-dark);
    text-align: left;
    width: 100%;
}

.booking-intro-lead {
    color: var(--accent-gold);
    font-style: normal;
}

.booking-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.35rem 2rem 1.1rem;
    border-radius: var(--radius-arch);
    width: 100%;
    background: #fff;
    border: var(--frame-border) solid var(--accent-gold-line);
    box-shadow: 0 20px 50px rgba(6, 18, 36, 0.18);
    color-scheme: light;
}

.booking-form-fields {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.booking-form .form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--navy-dark);
    opacity: 1;
    margin-bottom: 0.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.booking-form .form-group input,
.booking-form .form-group select {
    padding: 0.65rem 0 0.55rem;
    border: none;
    border-bottom: var(--frame-border) solid rgba(6, 18, 36, 0.2);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy-dark);
    opacity: 1;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease, color 0.3s ease;
    width: 100%;
}

.booking-form .form-group input::placeholder {
    color: rgba(6, 18, 36, 0.45);
    opacity: 1;
}

.booking-form .form-group select {
    cursor: pointer;
    color: var(--navy-dark);
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    border-bottom-color: var(--accent-gold);
    box-shadow: none;
}

.btn-booking {
    padding: 1rem 2rem;
    height: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    align-self: flex-end;
    margin-top: 1.8rem;
    border: var(--frame-border) solid var(--navy-dark);
    border-radius: var(--radius-arch);
    background-color: var(--navy-dark);
    color: #fff;
    opacity: 1;
    cursor: pointer;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn-booking:hover {
    background-color: var(--accent-gold);
    color: var(--navy-dark);
    border-color: var(--accent-gold);
}

/* About Section */
.about-section {
    padding: 10rem 5% 4rem;
    background-color: var(--accent-warm);
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    width: 100%;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: var(--radius-arch);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--frame-border) solid var(--accent-gold-soft);
    margin: 1.5rem;
    border-radius: var(--radius-arch);
    pointer-events: none;
    opacity: 1;
    transform: scale(1);
}

.about-text {
    flex: 1;
}

.about-text h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    margin-bottom: 0.75rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 6vw, 3rem);
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    border: var(--frame-border) solid var(--navy-dark);
    border-radius: var(--radius-arch);
    color: var(--navy-dark);
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-outline:hover {
    background: var(--navy-dark);
    color: white;
}

a.btn-outline {
    display: inline-block;
    text-decoration: none;
}

/* Extra services (reversed about layout: text left, image right) */
.video-section {
    background: #f6f2ea;
    padding: clamp(3.5rem, 6vw, 5.5rem) 5%;
}

.video-section-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.video-section-inner .page-section-kicker {
    text-align: center;
}

.video-section-inner .page-section-title {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0d1b2a;
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.yt-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
}

.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.yt-facade:hover img {
    transform: scale(1.03);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.92;
    transition: opacity 0.2s, transform 0.2s;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

.yt-facade:hover .yt-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.services-section {
    padding: 6rem 5% 5rem;
    background-color: var(--accent-warm);
    display: flex;
    justify-content: center;
}

.services-highlights {
    margin: 0 0 2rem 1.25rem;
    padding: 0;
    color: #555;
    line-height: 1.65;
}

.services-highlights li {
    margin-bottom: 0.55rem;
}

/* Context Section */
.context-section {
    background-color: var(--navy-dark);
    color: white;
    padding: 8rem 5% 6rem;
    position: relative;
    margin-top: 6rem;
    isolation: isolate;
    overflow: hidden;
}

.context-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--context-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.16;
    pointer-events: none;
}

.context-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.context-text {
    flex: 1;
}

.context-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.context-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.context-text ul {
    margin-left: 1.5rem;
}

.context-text ul li {
    margin-bottom: 0.8rem;
    position: relative;
    opacity: 0.9;
}

.context-text ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.context-image {
    flex: 1;
    transform: translateY(30px);
    position: relative;
    border-radius: var(--radius-arch);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.context-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}

.context-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--frame-border) solid var(--accent-gold-soft);
    margin: 1.5rem;
    border-radius: var(--radius-arch);
    pointer-events: none;
}

/* Amenities Section */
.amenities-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 4rem auto 2rem;
    padding: 3rem 4rem;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
}

.amenities-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: white;
    padding-bottom: 0.5rem;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.08);
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 0.95rem;
    color: var(--accent-gold);
}

.footer-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.5rem;
}

/* Infinite Scrolling Gallery */
.bottom-gallery {
    padding: 8rem 0 5rem;
    background-color: var(--accent-warm);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.gallery-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy-dark);
}

.gallery-header p {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    margin-top: 0.75rem;
}

.gallery-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    /* Smooth touch momentum */
    -webkit-overflow-scrolling: touch;
}

.gallery-track {
    display: inline-flex;
    white-space: nowrap;
    animation: infiniteScroll 40s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-set {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem; /* Gap spacing between sets */
}

.bottom-gallery .gallery-set img {
    height: 300px;
    width: 400px;
    object-fit: cover;
    border-radius: var(--radius-arch);
    border: var(--frame-border) solid var(--accent-gold-line);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: zoom-in;
}

.bottom-gallery .gallery-set img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-footer {
    text-align: center;
    margin-top: 2.75rem;
    padding: 0 5% 0.5rem;
}

.gallery-view-more {
    min-width: 12rem;
}

/* Full-bleed band after gallery (hero-style typography) */
.image-band {
    position: relative;
    width: 100%;
    min-height: min(68vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 11vh, 7rem) 5%;
    color: #fff;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.image-band-bg {
    position: absolute;
    inset: -6%;
    z-index: 0;
    background-image: var(--image-band-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: imageBandDrift 55s ease-in-out infinite alternate;
    will-change: transform;
}

.image-band--slider .image-band-bg {
    transition: opacity 0.8s ease;
}

.image-band--slider .image-band-bg--a {
    opacity: 1;
}

.image-band--slider .image-band-bg--b {
    opacity: 0;
}

.image-band-title-phrase {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.image-band-title-phrase.is-transitioning {
    opacity: 0;
    transform: translateY(8px);
}

.image-band-slides {
    display: none;
}

.image-band-indicators {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    gap: 0.55rem;
}

.image-band-indicator {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.image-band-indicator.is-active {
    background: #ffffff;
    transform: scale(1.05);
}

/* Image band prev / next nav buttons */
.image-band-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 3.2rem;
    height: 3.2rem;
    background: rgba(6, 18, 36, 0.52);
    border: 1px solid rgba(194, 168, 124, 0.55);
    color: var(--accent-gold-line);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.image-band-nav:hover {
    background: rgba(6, 18, 36, 0.88);
    transform: translateY(-50%) scale(1.07);
}

.image-band-nav:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.image-band-nav--prev {
    left: clamp(0.75rem, 2.5vw, 2rem);
}

.image-band-nav--next {
    right: clamp(0.75rem, 2.5vw, 2rem);
}

@media (max-width: 600px) {
    .image-band-nav {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.82rem;
    }
}

@keyframes imageBandDrift {
    0% {
        transform: scale(1.06) translate(0, 0);
    }
    100% {
        transform: scale(1.06) translate(-1.2%, 0.8%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .image-band-bg {
        animation: none;
        transform: scale(1.03);
    }
}

.image-band .image-band-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(6, 18, 36, 0.4), rgba(6, 18, 36, 0.78));
}

.image-band-inner {
    position: relative;
    z-index: 2;
    max-width: min(100%, 42rem);
    margin: 0 auto;
    text-align: center;
}

.image-band-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 2.5vw, 1.35rem);
    margin: 0 0 clamp(1.25rem, 3vh, 2rem);
}

.image-band-eyebrow::before,
.image-band-eyebrow::after {
    content: '';
    flex: 0 0 auto;
    width: clamp(1.75rem, 6vw, 3.75rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.9;
}

.image-band-eyebrow-text {
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--accent-gold);
}

.image-band-title {
    font-family: var(--font-heading);
    font-weight: 300;
    margin: 0 0 clamp(1.25rem, 3vh, 1.85rem);
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.image-band-title-upper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.45em 0.55em;
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 0.45rem;
}

.image-band-words {
    letter-spacing: 0.28em;
}

.image-band-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.image-band-title-phrase {
    display: block;
    font-size: clamp(1.55rem, 4.2vw, 3.15rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.02em;
    color: #fff;
    max-width: 22em;
    margin-inline: auto;
}

.image-band-lead {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
    margin: 0 0 2rem;
}

.btn-outline--on-dark {
    border-color: var(--accent-gold-line);
    color: var(--accent-gold);
    background: transparent;
}

.btn-outline--on-dark:hover {
    background: var(--accent-gold);
    color: var(--navy-dark);
    border-color: var(--accent-gold);
}

a.btn-outline--on-dark {
    display: inline-block;
    text-decoration: none;
}

/* Gallery lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2500;
    align-items: center;
    justify-content: center;
    padding: min(4vw, 2rem);
    background: rgba(6, 18, 36, 0.94);
    cursor: zoom-out;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-panel {
    position: relative;
    margin: 0;
    max-width: min(96vw, 1400px);
    max-height: 90vh;
    cursor: default;
}

.gallery-lightbox-img {
    display: block;
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transition: opacity 0.28s ease;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    background: rgba(6, 18, 36, 0.88);
    color: var(--accent-gold);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--navy-dark);
}

.gallery-lightbox-nav--prev {
    right: 100%;
    left: auto;
    margin-right: 0.75rem;
}

.gallery-lightbox-nav--next {
    left: 100%;
    right: auto;
    margin-left: 0.75rem;
}

.gallery-lightbox-nav:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.gallery-lightbox-close {
    position: absolute;
    top: -3.25rem;
    right: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    background: rgba(6, 18, 36, 0.9);
    color: var(--accent-gold);
    font-size: 1.35rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--navy-dark);
}

@media (max-width: 900px) {
    .gallery-lightbox-nav--prev,
    .gallery-lightbox-nav--next {
        top: auto;
        bottom: -4rem;
        transform: none;
        translate: none;
        width: 2.75rem;
        height: 2.75rem;
    }

    .gallery-lightbox-nav--prev {
        left: 0;
        right: auto;
    }

    .gallery-lightbox-nav--next {
        right: 0;
        left: auto;
    }

    .gallery-lightbox-panel {
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 600px) {
    .gallery-lightbox-close {
        top: auto;
        bottom: calc(100% + 0.75rem);
        right: 0;
    }

    .gallery-lightbox-nav--prev {
        left: 50%;
        right: auto;
        margin-right: 0;
        transform: translateX(calc(-100% - 0.35rem));
    }

    .gallery-lightbox-nav--next {
        left: 50%;
        right: auto;
        margin-left: 0;
        transform: translateX(0.35rem);
    }
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Room carousel — larger touch targets on mobile */
@media (max-width: 680px) {
    .room-carousel-btn,
    .room-carousel-expand {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 0.85rem;
    }

    .room-carousel-btn--prev { left: 0; }
    .room-carousel-btn--next { right: 0; }
}

/* Gallery strip — mobile snap scroll */
@media (max-width: 680px) {
    .gallery-scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .gallery-track {
        animation: none;
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
    }
    .gallery-track .gallery-set:last-child {
        display: none;
    }
    .gallery-set {
        display: flex;
        flex-wrap: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .bottom-gallery .gallery-set img,
    .home-page .bottom-gallery .gallery-set img {
        flex-shrink: 0;
        width: clamp(220px, 68vw, 300px);
        height: clamp(165px, 51vw, 225px);
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.wa-widget-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn {
    width: 60px;
    height: 60px;
    margin-top: 0.75rem;
    flex-shrink: 0;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    background-color: var(--navy-dark);
    color: var(--accent-gold);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.scroll-top-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    background-color: var(--accent-gold);
    color: var(--navy-dark);
}

.scroll-top-btn:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.wa-chat-box {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
}

.wa-chat-box.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.75rem;
}

.wa-chat-header {
    background-color: #128C7E;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.wa-chat-header i {
    margin-right: 8px;
    font-size: 1.2rem;
}

#wa-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

#wa-close-btn:hover {
    opacity: 1;
}

.wa-chat-body {
    padding: 20px;
    background-color: #e5ddd5;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.wa-chat-body p {
    background-color: white;
    padding: 12px 15px;
    border-radius: 0 10px 10px 10px;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin: 0;
    color: #333;
}

.wa-chat-footer {
    padding: 15px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.wa-start-chat-btn {
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-family: var(--font-body);
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease;
}

.wa-start-chat-btn:hover {
    background-color: #128C7E;
    color: white;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 5%;
    background-color: white;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--navy-dark);
    border-radius: var(--radius-arch);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: var(--frame-border) solid var(--accent-gold-line);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.review-stars i {
    margin-right: 4px;
}

.review-text {
    font-style: italic;
    color: #f1f1f1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.review-author {
    font-weight: 600;
    color: white;
}

.review-author span {
    font-weight: 400;
    color: #aaa;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5% 8rem;
    background-color: var(--accent-warm);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 3rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background-color: transparent;
    border-radius: var(--radius-arch);
    box-shadow: none;
    overflow: hidden;
    border: none;
    border-bottom: var(--frame-border) solid var(--accent-gold-line);
}

.faq-item:first-child {
    border-top: var(--frame-border) solid var(--accent-gold-line);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--navy-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--navy-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    max-width: 95%;
}

/* Location & contact (above footer) */
.location-section {
    padding: 5rem 5% 6rem;
    background-color: #fff;
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1100px;
    margin: 0 auto;
}

.location-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.location-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--navy-dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.location-lead {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 38rem;
}

.location-list {
    margin: 0 0 2rem;
    padding-left: 1.25rem;
    color: #444;
    line-height: 1.7;
}

.location-list li {
    margin-bottom: 0.5rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-btn {
    text-align: center;
}

.location-map-wrap {
    position: relative;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.location-map {
    display: block;
    width: 100%;
    height: min(420px, 55vh);
    border: 0;
}

/* Site footer */
.site-footer {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: 4rem 5% 0;
    border-top: var(--frame-border) solid var(--accent-gold-line);
}

.site-footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 3rem;
}

.site-footer-col--brand {
    padding-right: clamp(0, 2vw, 1.5rem);
}

.site-footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
}

.site-footer-logo img {
    height: clamp(72px, 10vw, 100px);
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.site-footer-logo:hover img {
    opacity: 1;
}

.site-footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 1rem;
}

.site-footer-blurb {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.5rem;
    max-width: 22rem;
}

.site-footer-social {
    display: flex;
    gap: 0.75rem;
}

.site-footer-social-link {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--frame-border) solid var(--accent-gold-line);
    border-radius: var(--radius-arch);
    color: var(--accent-gold);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-footer-social-link:hover {
    background-color: var(--accent-gold);
    color: var(--navy-dark);
}

.site-footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--accent-gold-line);
}

.site-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-list li {
    margin-bottom: 0.65rem;
}

.site-footer-list a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.site-footer-list a:hover {
    color: var(--accent-gold);
    padding-left: 0.25rem;
}

.site-footer-bar {
    border-top: 1px solid var(--accent-gold-line);
    padding: 1.25rem 5%;
    text-align: center;
}

.site-footer-copy {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {

    .icons {
        display: none;
    }

    /* --- Burger nav layout --- */
    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem clamp(4%, 5vw, 6%);
        position: relative;
    }

    .logo {
        order: 1;
        justify-self: unset;
    }

    .logo img {
        height: clamp(47px, 7.2vw, 65px);
    }

    .nav-burger {
        display: flex;
        order: 2;
    }

    /* Hidden drawer links — slide down when open */
    .nav-links-left,
    .nav-links-right {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 0;
        justify-self: unset;
        padding-left: 0;
        padding-right: 0;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.28s ease,
                    padding 0.28s ease;
    }

    .navbar.nav--open .nav-links-left,
    .navbar.nav--open .nav-links-right {
        max-height: 18rem;
        opacity: 1;
    }

    .navbar.nav--open .nav-links-left {
        padding: 1rem 0 0;
        border-top: 1px solid rgba(194, 168, 124, 0.25);
        margin-top: 0.5rem;
    }

    .navbar.nav--open .nav-links-right {
        padding: 0 0 1.2rem;
    }

    .nav-links a {
        font-size: 0.83rem;
        letter-spacing: 0.2em;
        padding: 0.58rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(194, 168, 124, 0.12);
        display: block;
    }

    .nav-links a:last-child,
    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero-title-line--display:not(.hero-title-line--phrase) {
        font-size: clamp(2.5rem, 11vw, 3.4rem);
        letter-spacing: 0.03em;
    }

    .hero-title-line--display.hero-title-line--phrase {
        font-size: clamp(0.88rem, 3.65vw, 2.35rem);
        line-height: 1.18;
        max-width: 100%;
    }

    .hero-title-line--upper {
        font-size: clamp(0.78rem, 2.65vw, 1.12rem);
        gap: 0.3em 0.4em;
    }

    .hero-title-words {
        letter-spacing: 0.2em;
    }

    .subtitle {
        letter-spacing: 0.28em;
        font-size: clamp(0.68rem, 2.9vw, 0.95rem);
        gap: 0.45rem;
    }

    .subtitle .hero-word {
        letter-spacing: 0.22em;
    }

    .subtitle::before,
    .subtitle::after {
        width: 1.35rem;
        opacity: 1;
    }

    .booking-form-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-booking {
        align-self: stretch;
        margin-top: 1rem;
    }

    .booking-container {
        bottom: -200px;
    }

    .about-section {
        padding-top: 22rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .context-container {
        flex-direction: column;
        text-align: center;
    }

    .context-text ul {
        text-align: left;
        display: inline-block;
    }

    .location-inner {
        grid-template-columns: 1fr;
    }

    .location-copy {
        text-align: center;
    }

    .location-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .location-list {
        text-align: left;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

    .location-actions {
        justify-content: center;
    }

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

    .site-footer-col--brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .site-footer-blurb {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .location-map {
        height: min(260px, 60vw);
    }

    /* Section padding — tighter on small screens */
    .reviews-section {
        padding: 3rem 5%;
    }

    .faq-section {
        padding: 3rem 5% 3.5rem;
    }

    .about-section {
        padding: 3.5rem 5% 2.5rem;
    }

    .page-section {
        padding-top: clamp(2.5rem, 8vw, 4rem);
        padding-bottom: clamp(2.5rem, 8vw, 4rem);
    }

    /* Re-centre the Airbnb badge so it doesn't overlap hero text */
    .hero-review-badge {
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 0.55rem 0.9rem 0.55rem 0.7rem;
        gap: 0.55rem;
    }

    .hero-review-badge__logo {
        height: 22px;
    }

    .hero-review-badge__stars {
        font-size: 0.8rem;
    }

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

    .site-footer-col {
        text-align: center;
    }

    .site-footer-heading {
        text-align: center;
    }

    .site-footer-list {
        display: inline-block;
        text-align: left;
    }
}

/* Homepage refinement: minimal, continuous editorial flow */
.home-page {
    background-color: #f6f2ea;
}

.home-page .hero {
    min-height: clamp(62vh, 78vh, 90vh);
    padding: 0;
}

.home-page .hero::before {
    background-image: none;
    animation: none;
}

.home-page .booking-container {
    display: none;
}

.home-page .about-section,
.home-page .context-section,
.home-page .services-section,
.home-page .bottom-gallery,
.home-page .reviews-section,
.home-page .faq-section,
.home-page .location-section {
    background: #f6f2ea;
}

.home-page .about-section {
    padding: clamp(4.5rem, 9vw, 7rem) 5% clamp(5rem, 9vw, 7.5rem);
}

.home-page .context-section {
    color: var(--text-dark);
    margin-top: 0;
    padding: clamp(2.5rem, 5vw, 4rem) 5% clamp(3rem, 6vw, 4.8rem);
}

.home-page .context-section::before {
    display: none;
}

.home-page .about-container,
.home-page .context-container {
    max-width: 1180px;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.home-page .about-image-wrapper,
.home-page .context-image {
    box-shadow: none;
    flex: 1.5 1.5 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
    position: relative;
    transform: none;
}

.home-page .about-image-wrapper::after,
.home-page .context-image::after {
    display: block;
    content: '';
    position: absolute;
    inset: clamp(0.75rem, 1.7vw, 1.25rem);
    border: 1px solid rgba(194, 168, 124, 0.72);
    pointer-events: none;
}

.home-page .about-image-wrapper img,
.home-page .context-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
}

.home-page .about-text p,
.home-page .context-text p,
.home-page .services-highlights,
.home-page .location-lead,
.home-page .faq-answer p {
    color: #4b4b4b;
}

.home-page .review-text {
    color: rgba(241, 241, 241, 0.88);
}

.home-page .context-text ul li,
.home-page .context-text ul li::before {
    color: #6a6a6a;
}

.home-page .amenities-container {
    margin: clamp(2.25rem, 5vw, 3.6rem) auto 0;
    padding: 0;
    border: none;
}

.home-page .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.4rem;
}

.home-page .amenity-item {
    color: #4a4a4a;
    border-bottom: 1px solid rgba(194, 168, 124, 0.35);
    padding: 0 0 0.75rem;
}

.home-page .icon-circle {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(194, 168, 124, 0.15);
}

.home-page .services-section {
    padding: clamp(2rem, 4vw, 3.25rem) 5% clamp(3.2rem, 6vw, 5rem);
}

.home-page .bottom-gallery {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.2rem, 5vw, 3.3rem);
}

.home-page .gallery-header {
    margin-bottom: 2rem;
}

.home-page .bottom-gallery .gallery-set img {
    height: clamp(260px, 30vw, 380px);
    width: clamp(320px, 40vw, 520px);
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.home-page .bottom-gallery .gallery-set img:hover {
    transform: none;
    box-shadow: none;
}

.home-page .image-band {
    min-height: min(82vh, 936px);
    background-color: transparent;
}

.home-page .image-band .image-band-inner {
    display: none;
}

.home-page .image-band .image-band-overlay {
    background: none;
}

.home-page .reviews-section {
    padding: clamp(3.25rem, 6vw, 5rem) 5% clamp(2.2rem, 5vw, 3.3rem);
}

.home-page .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-page .review-card {
    background: var(--navy-dark);
    border: var(--frame-border) solid var(--accent-gold-line);
    box-shadow: 0 8px 28px rgba(6, 18, 36, 0.18);
    padding: 2rem 1.75rem;
}

.home-page .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(6, 18, 36, 0.26);
}

.home-page .review-author {
    color: var(--accent-gold-line);
}

.home-page .faq-section {
    padding: clamp(2.8rem, 5vw, 4rem) 5% clamp(3.5rem, 6vw, 5.2rem);
}

.home-page .location-section {
    padding: clamp(2.8rem, 5vw, 4.2rem) 5% clamp(5rem, 8vw, 6.5rem);
}

.home-page .location-map-wrap {
    border: none;
    box-shadow: none;
}

/* Sticky availability bookmark + modal */
.availability-sticky-btn {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(0);
    z-index: 2600;
    border: 1px solid rgba(194, 168, 124, 0.9);
    border-bottom: none;
    background: var(--navy-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 1.9rem 0.82rem;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.availability-sticky-btn:hover {
    background: var(--accent-gold);
    color: var(--navy-dark);
    border-color: var(--accent-gold);
    transform: translateX(-50%) translateY(-6px);
}

.availability-modal {
    position: fixed;
    inset: 0;
    z-index: 2700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2.8vw, 2rem);
    background: rgba(6, 18, 36, 0.68);
}

.availability-modal.is-open {
    display: flex;
}

.availability-modal-panel {
    width: min(1080px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    background: transparent;
    position: relative;
}

.availability-modal-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.72);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.availability-modal-layout {
    margin: 0;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .home-page .about-section {
        padding-top: clamp(3.2rem, 7vw, 4.2rem);
    }

    .home-page .about-image-wrapper img,
    .home-page .context-image img {
        height: 100%;
    }

    .home-page .about-image-wrapper,
    .home-page .context-image {
        aspect-ratio: 5 / 4;
    }

    .home-page .amenities-grid {
        grid-template-columns: 1fr;
    }

    .availability-sticky-btn {
        width: min(92vw, 24rem);
        padding: 0.85rem 1.3rem 0.78rem;
    }

    .availability-modal {
        align-items: flex-end;
        padding: 0;
    }

    .availability-modal-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 0;
    }

    .availability-modal-close {
        top: 0.45rem;
        right: 0.45rem;
    }

    /* Push FABs above the check availability bar (~48px tall) */
    .whatsapp-widget {
        bottom: 3.8rem;
        right: 1rem;
    }

    /* Shrink FABs on tablet/mobile */
    .wa-widget-btn {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

    .scroll-top-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

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

@media (max-width: 600px) {
    .home-page .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Full-width check availability bar on small phones */
    .availability-sticky-btn {
        width: 100%;
        left: 0;
        transform: none;
        font-size: 0.72rem;
        padding: 1rem 1rem 0.92rem;
        border-left: none;
        border-right: none;
    }

    .availability-sticky-btn:hover {
        transform: none;
    }

    /* Full-screen modal on mobile — scrolls top to bottom */
    .availability-modal {
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
        overflow: hidden;
    }

    .availability-modal-panel {
        width: 100%;
        height: 100dvh;
        height: 100vh; /* fallback for older browsers */
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--accent-warm);
        border-radius: 0;
        display: flex;
        flex-direction: column;
        padding-top: 3.25rem; /* space for the fixed close button */
    }

    /* Close button fixed at top-right so it's always reachable */
    .availability-modal-close {
        position: fixed;
        top: 0.75rem;
        right: 0.75rem;
        width: 2.4rem;
        height: 2.4rem;
        background: var(--navy-dark);
        border-color: rgba(194, 168, 124, 0.55);
        z-index: 2800;
    }

    /* Modal inner layout — single column, full scroll */
    .availability-modal-layout {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .availability-modal-layout .contact-panel,
    .availability-modal-layout .contact-form {
        border: none;
        border-bottom: 1px solid rgba(194, 168, 124, 0.28);
        border-radius: 0;
        background: white;
        padding: 1.5rem 1.25rem;
    }

    .availability-modal-layout .contact-form {
        border-bottom: none;
        flex: 1;
        padding-bottom: 5rem; /* room above the check availability button */
    }

    .availability-modal-layout .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Very narrow screens — allow hero title text to wrap */
@media (max-width: 480px) {
    .hero-title {
        white-space: normal;
    }

    .subtitle,
    .hero-title-line--upper,
    .hero-title-line--display {
        white-space: normal;
    }

    .hero-title-line--display {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.62rem, 2.8vw, 0.85rem);
        letter-spacing: 0.2em;
    }
}