/* ===================================================================
   The Manor Collection — app.css
   =================================================================== */

:root {
    --olive-dark: #3e3f22; /* footer / dark sections */
    --olive-mid: #565838;
    --gold: #b9aa3a; /* primary accent / buttons */
    --gold-dark: #a3942f; /* button hover */
    --cream: #f4f1e8;
    --white: #ffffff;
    --ink: #2c2c1f;
    --grey: #6b6b5e;
    --header-h: 86px;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans:
        "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
}

/* ---- Toast ---- */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    padding: 16px 18px;
    background: var(--olive-dark);
    color: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.4;
    animation:
        toast-in 0.4s ease,
        toast-out 0.4s ease 4.6s forwards;
}
.toast-icon {
    color: var(--gold);
    font-size: 18px;
    display: flex;
}
.toast-msg {
    flex: 1;
}
.toast-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 20px;
    line-height: 1;
    padding: 0;
    margin-left: 4px;
    cursor: pointer;
    opacity: 0.7;
}
.toast-close:hover {
    opacity: 1;
}

@keyframes toast-in {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes toast-out {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Bottom of viewport on small screens */
@media (max-width: 560px) {
    .toast {
        top: auto;
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

/* ---- Button sending state ---- */
.btn-book .btn-loading {
    display: none;
}
.btn-book.is-sending .btn-label {
    display: none;
}
.btn-book.is-sending .btn-loading {
    display: inline;
}
.btn-book.is-sending {
    pointer-events: none;
    opacity: 0.9;
}

.btn-loading .dots::after {
    content: "";
    animation: dots 1.2s steps(1, end) infinite;
}
@keyframes dots {
    0% {
        content: "";
    }
    25% {
        content: ".";
    }
    50% {
        content: "..";
    }
    75% {
        content: "...";
    }
    100% {
        content: "";
    }
}

/* ---- reCAPTCHA: hide badge + attribution ---- */
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha-terms {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--grey);
}
.recaptcha-terms a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ---- Deter image saving / dragging ---- */
img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none; /* blocks the iOS long-press save menu */
    pointer-events: none;
}

/* ---------- Shared button ---------- */
.btn-book {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 3px;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
    white-space: nowrap;
}
.btn-book:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}
.btn-book--flat:hover {
    transform: none;
}

@media (max-width: 620px) {
    .btn-book--center {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(62, 63, 34, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 74px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s ease;
}

.header-logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav a:not(.btn-book) {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.header-nav a:not(.btn-book)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}
.header-nav a:not(.btn-book):hover {
    color: var(--gold-dark);
}
.header-nav a:not(.btn-book):hover::after,
.header-nav a.active:not(.btn-book)::after {
    width: 100%;
}
.header-nav a.active:not(.btn-book) {
    color: var(--gold-dark);
}

.header-nav .btn-book {
    font-size: 0.7rem;
    padding: 10px 22px;
}

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1102;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--olive-dark);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 12, 0.45);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 1100;
}
body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
}
body.nav-open {
    overflow: hidden;
}

/* --- responsive --- */
@media (max-width: 880px) {
    .nav-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 82vw);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 96px 0 30px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1101;
        overflow-y: auto;
    }
    .header-nav.open {
        transform: translateX(0);
    }

    .header-nav a:not(.btn-book) {
        padding: 16px 28px;
        font-size: 0.78rem;
        letter-spacing: 1.6px;
        border-bottom: 1px solid rgba(62, 63, 34, 0.06);
    }
    .header-nav a:not(.btn-book)::after {
        display: none;
    }
    .header-nav a:not(.btn-book):hover {
        background: rgba(185, 170, 58, 0.08);
    }
    .header-nav a.active:not(.btn-book) {
        border-left: 3px solid var(--gold);
        background: rgba(185, 170, 58, 0.06);
    }

    .header-nav .btn-book {
        margin: 24px 28px 0;
        text-align: center;
        padding: 14px;
        font-size: 0.76rem;
    }

    /* hamburger morphs to X */
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 16, 0.35), rgba(20, 20, 16, 0.45));
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 24px;
}
.hero-welcome {
    font-size: 0.95rem;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 18px;
}
.hero-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    letter-spacing: 4px;
    line-height: 1.05;
    text-transform: uppercase;
    position: relative;
    padding: 22px 0;
    margin-bottom: 34px;
}
.hero-title::before,
.hero-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, 80%);
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}
.hero-title::before {
    top: 0;
}
.hero-title::after {
    bottom: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

@keyframes bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--olive-dark);
    color: rgba(255, 255, 255, 0.85);
}
.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 32px 48px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.4fr;
    gap: 48px;
}

/* brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    width: 240px;
    max-width: 100%;
    margin-bottom: 26px;
    filter: brightness(0) invert(1);
}
.footer-book {
    font-size: 0.72rem;
}

/* column headings */
.footer-col h4 {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}

/* quick links */
.footer-links ul li {
    margin-bottom: 13px;
}
.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* contact */
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.footer-contact i {
    color: var(--gold);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease;
    word-break: break-word;
}
.footer-contact a:hover {
    color: var(--gold);
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}
.footer-legal a:hover {
    color: var(--gold);
}
.footer-legal .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- tablet ---------- */
@media (max-width: 920px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 8px;
    }
}

/* ---------- mobile ---------- */
@media (max-width: 620px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 48px 26px 8px;
        gap: 0;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        padding-bottom: 34px;
    }
    .footer-logo {
        width: 200px;
        margin-bottom: 22px;
    }
    .footer-book {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px;
    }

    /* each section divided + evenly spaced */
    .footer-links,
    .footer-contact {
        padding: 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .footer-col h4 {
        text-align: left;
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        margin-bottom: 20px;
    }

    /* left-align lists */
    .footer-links ul,
    .footer-contact ul {
        display: block;
        text-align: left;
        margin: 0;
    }
    .footer-links ul li {
        margin-bottom: 16px;
    }
    .footer-links a {
        font-size: 1rem;
    }
    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-contact ul li {
        gap: 12px;
        margin-bottom: 16px;
        font-size: 0.84rem;
    }
    .footer-contact i {
        font-size: 0.85rem;
        width: 16px;
    }
    .footer-contact ul li:last-child {
        align-items: flex-start;
    }
    .footer-contact ul li:last-child a {
        line-height: 1.35;
    }

    /* bottom bar */
    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 22px 26px;
    }
    .footer-bottom-inner span {
        white-space: nowrap;
        font-size: 0.78rem;
    }
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--olive-dark);
    transform: translateY(-2px);
}
/* ===================================================================
   INTRO
   =================================================================== */
.intro {
    position: relative;
    background: var(--white);
    padding: 90px 32px 70px;
    text-align: center;
    overflow: hidden;
}
.intro-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.intro-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    color: var(--olive-mid);
    line-height: 1.25;
    margin-bottom: 22px;
}
.intro-text {
    color: var(--grey);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
}
.leaf {
    position: absolute;
    top: 10px;
    width: 230px;
    height: 230px;
    color: var(--gold);
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
}
.leaf-left {
    left: -30px;
    transform: scaleY(-1);
}
.leaf-right {
    right: -30px;
    transform: scale(-1, -1);
}

/* divider rule */
.section-rule {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-rule span {
    display: block;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

/* ===================================================================
   ACCOMMODATION
   =================================================================== */
.accommodation {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 90px;
}
.section-head {
    text-align: center;
    margin-bottom: 17px;
}
.section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--olive-dark);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
.section-title .tick {
    width: 30px;
    height: 2px;
    background: var(--olive-mid);
}
.section-sub {
    max-width: 560px;
    margin: 0 auto;
    color: var(--grey);
    font-weight: 300;
    font-size: 0.95rem;
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.stay-card {
    text-align: left;
}
.stay-image {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
}
.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.stay-card:hover .stay-image img {
    transform: scale(1.06);
}
.stay-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--olive-dark);
    margin-bottom: 10px;
}
.stay-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.65;
}
.stay-more {
    color: var(--olive-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.stay-more:hover {
    color: var(--gold-dark);
}

/* outline button */
.btn-outline {
    display: inline-block;
    border: 1px solid var(--olive-mid);
    color: var(--olive-mid);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 11px 26px;
    border-radius: 3px;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}
.btn-outline:hover {
    background: var(--olive-mid);
    color: var(--white);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
    .stay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .leaf {
        width: 160px;
        height: 160px;
        opacity: 0.18;
    }
}

@media (max-width: 620px) {
    .hero-title {
        letter-spacing: 2px;
    }
    .stay-grid {
        grid-template-columns: 1fr;
    }
    .leaf {
        display: none;
    }
}
/* ===================================================================
   ACCOMMODATION CARDS — revised
   =================================================================== */
.stay-grid {
    gap: 30px;
}

.stay-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(62, 63, 34, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.stay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(62, 63, 34, 0.14);
}

.stay-image {
    position: relative;
    margin: 0;
    border-radius: 0;
    aspect-ratio: 4 / 3;
}
.stay-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 63, 34, 0.3), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.stay-card:hover .stay-image::after {
    opacity: 1;
}

.stay-name {
    position: relative;
    margin: 24px 22px 14px;
    padding-bottom: 14px;
    font-size: 1.35rem;
}
.stay-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.stay-desc {
    margin: 0;
    padding: 0 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.stay-more {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-dark);
}
.stay-more::after {
    content: "\2192";
    transition: transform 0.25s ease;
}
.stay-card:hover .stay-more::after {
    transform: translateX(4px);
}

/* --- responsive --- */
@media (max-width: 620px) {
    .stay-name {
        font-size: 1.45rem;
    }
    .stay-desc {
        padding-bottom: 22px;
    }
}

/* ===================================================================
   SPLIT SECTIONS (Events / Get in Touch) — shared
   =================================================================== */
.events,
.contact-cta {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 90px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-text p {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.split-text .btn-book {
    margin-top: 10px;
}

/* event bullet list */
.split-text .split-lead {
    color: var(--grey);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 26px;
}

.split-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}

/* event chips */
.event-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
}
.event-list li {
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    color: var(--olive-dark);
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(185, 170, 58, 0.4);
    border-radius: 100px;
    background: rgba(185, 170, 58, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}
.event-list li:hover {
    background: rgba(185, 170, 58, 0.14);
    border-color: var(--gold);
}

/* media block */
.split-media {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 36px rgba(62, 63, 34, 0.16);
}
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.split-media:hover img {
    transform: scale(1.05);
}
.split-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(62, 63, 34, 0.55),
        transparent 60%
    );
}
.split-media--plain::after {
    display: none;
}
.split-media--plain {
    cursor: default;
}

.media-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.media-label::after {
    content: "\2192";
    transition: transform 0.25s ease;
}
.split-media:hover .media-label::after {
    transform: translateX(4px);
}

/* --- responsive --- */
@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    /* keep image below text on Get in Touch for natural reading order */
    .contact-cta .split-media {
        order: 2;
    }
}
@media (max-width: 620px) {
    .events,
    .contact-cta {
        padding: 50px 24px 60px;
    }
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 80px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.review-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 10px;
    padding: 38px 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(62, 63, 34, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(62, 63, 34, 0.12);
}
.stars {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 20px;
}
.stars svg {
    width: 17px;
    height: 17px;
    fill: var(--gold);
}
.review-quote {
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 24px;
}
.review-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--olive-dark);
}
.review-stay {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-style: italic;
}

/* --- responsive --- */
@media (max-width: 900px) {
    .review-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}
@media (max-width: 620px) {
    .testimonials {
        padding: 50px 24px 60px;
    }
}

/* ===================================================================
   FOLLOW STRIP
   =================================================================== */
.follow {
    padding-bottom: 0;
}
.follow-cta {
    text-align: center;
    padding-bottom: 36px;
}
.follow-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.follow-tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.follow-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.follow-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--olive-dark);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.follow-tile:hover img {
    transform: scale(1.08);
}
.follow-tile:hover::after {
    opacity: 0.35;
}

/* --- responsive --- */
@media (max-width: 900px) {
    .follow-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .follow-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================================================
   PAGE BANNER (interior page hero strip)
   =================================================================== */
.page-banner {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(62, 63, 34, 0.2), rgba(62, 63, 34, 0.3));
}

/* --- responsive --- */
@media (max-width: 620px) {
    .page-banner {
        height: 220px;
    }
}

/* ===================================================================
   ABOUT INTRO
   =================================================================== */
.about-intro {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 40px;
}
.about-intro .split {
    margin-bottom: 0;
}
.about-intro .section-rule {
    margin: 60px auto;
}

/* left-aligned plain section heading (Values / Activities) */
.section-head--left {
    text-align: left;
    margin-bottom: 36px;
}
.section-title--plain {
    display: block;
    gap: 0;
}
.section-title--plain .tick {
    display: none;
}

/* --- responsive --- */
@media (max-width: 620px) {
    .about-intro {
        padding: 50px 24px 30px;
    }
    .about-intro .section-rule {
        margin: 40px auto;
    }
}

/* ===================================================================
   OUR VALUES
   =================================================================== */
.values {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 32px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}
.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.value-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-icon i {
    font-size: 22px;
    color: var(--white);
    line-height: 1;
}
.value-body h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.value-body p {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- responsive --- */
@media (max-width: 760px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 620px) {
    .values {
        padding: 40px 24px;
    }
}
/* ===================================================================
   NEARBY ACTIVITIES
   =================================================================== */
.activities {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 32px 90px;
}
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.activity-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(62, 63, 34, 0.1);
}
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.activity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(62, 63, 34, 0.75),
        transparent 55%
    );
}
.activity-card:hover img {
    transform: scale(1.07);
}
.activity-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.activities-action {
    text-align: center;
    margin-top: 44px;
}

/* --- responsive --- */
@media (max-width: 860px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
    .activities {
        padding: 40px 24px 60px;
    }
}

/* ===================================================================
   MOBILE POLISH
   =================================================================== */
html {
    overflow-x: hidden;
} /* stop the off-canvas panel adding scroll */
:root {
    --header-h: 74px;
} /* match the real header height */

@media (max-width: 620px) {
    .hero-welcome {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    .hero-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
        letter-spacing: 1px;
        padding: 16px 0;
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        gap: 12px;
    }
    .section-title .tick {
        width: 20px;
    }

    .intro {
        padding: 60px 24px 50px;
    }
    .accommodation {
        padding: 50px 24px 60px;
    }
}

/* ===================================================================
   ACCOMMODATION / ROOMS
   =================================================================== */
.rooms {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 90px;
}
.rooms .section-rule {
    margin: 56px auto;
}

.room {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.room--reverse .room-media {
    order: 2;
} /* image moves right on desktop */

.room-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 40px rgba(62, 63, 34, 0.16);
}
.room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-media:hover img {
    transform: scale(1.04);
}
/* gallery button on room image */
.room-media-link {
    display: block;
    width: 100%;
    height: 100%;
}
.room-gallery-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(28, 28, 20, 0.6);
    color: var(--cream);
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition:
        background 0.25s ease,
        color 0.25s ease;
}
.room-gallery-btn:hover {
    background: var(--gold);
    color: var(--olive-dark);
}

/* ===================================================================
   GALLERY MODAL
   =================================================================== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(28, 28, 20, 0.97);
    display: none;
    flex-direction: column;
}
.gallery-modal.open {
    display: flex;
}

.gm-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    flex-shrink: 0;
}
.gm-title {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
}
.gm-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.gm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--cream);
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.76rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 500;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.gm-btn:hover {
    background: var(--gold);
    color: var(--olive-dark);
}
.gm-btn--icon {
    padding: 9px 12px;
}

/* grid view */
.gm-grid {
    --gm-cols: 6;
    --gm-rows: 4;
    --gm-gap: 12px;
    --gm-chrome: 104px; /* bar height + grid bottom padding */

    display: none;
    grid-template-columns: repeat(var(--gm-cols), 1fr);
    grid-auto-rows: calc(
        (100dvh - var(--gm-chrome) - (var(--gm-rows) - 1) * var(--gm-gap)) /
            var(--gm-rows)
    );
    gap: var(--gm-gap);
    padding: 0 24px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex: 1;
    min-height: 0;
    align-content: start;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.gallery-modal.mode-grid .gm-grid {
    display: grid;
}

.gm-grid::-webkit-scrollbar {
    width: 8px;
}
.gm-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}
.gm-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.gm-grid button {
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: block;
    width: 100%;
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    content-visibility: auto;
    contain-intrinsic-size: 300px 190px;
    contain: paint;
}

.gm-grid button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 var(--gold);
    transition: box-shadow 0.25s ease;
    pointer-events: none;
}
.gm-grid button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.gm-grid button:hover::after {
    box-shadow: inset 0 0 0 2px var(--gold);
}
.gm-grid button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.gm-grid img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gm-grid button:hover img {
    transform: scale(1.06);
}

/* fade at the bottom so it reads as scrollable */
.gallery-modal.mode-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
        to top,
        rgba(28, 28, 20, 0.97),
        rgba(28, 28, 20, 0)
    );
    pointer-events: none;
}

/* single view */
.gm-single {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 24px 28px;
    min-height: 0;
}
.gallery-modal.mode-single .gm-single {
    display: flex;
}
.gm-single img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.gm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--cream);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.gm-nav:hover {
    background: var(--gold);
    color: var(--olive-dark);
}
.gm-prev {
    left: 20px;
}
.gm-next {
    right: 20px;
}
.gm-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 0.82rem;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 14px;
    border-radius: 999px;
}

@media (max-width: 620px) {
    .gm-bar {
        padding: 12px 14px;
        gap: 10px;
    }
    .gm-title {
        font-size: 1.02rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .gm-btn {
        padding: 9px 14px;
        font-size: 0.7rem;
    }
    .gm-btn--icon {
        padding: 9px 11px;
    }

    .gm-grid {
        --gm-cols: 2;
        --gm-gap: 8px;
        --gm-pad: 14px;
        /* square tiles: (viewport - side padding - one gap) / 2 */
        grid-auto-rows: calc(
            (100vw - (var(--gm-pad) * 2) - var(--gm-gap)) / 2
        );
        gap: var(--gm-gap);
        padding: 0 var(--gm-pad) 28px;
    }
    .gm-grid button {
        aspect-ratio: auto;
        height: 100%;
        border-radius: 8px;
        content-visibility: visible;
        contain: none;
    }

    /* no hover on touch: use active instead */
    .gm-grid button:hover {
        transform: none;
        box-shadow: none;
    }
    .gm-grid button:hover img {
        transform: none;
    }
    .gm-grid button:active {
        transform: scale(0.97);
    }
    .gm-grid button:active::after {
        box-shadow: inset 0 0 0 2px var(--gold);
    }

    .gallery-modal.mode-grid::after {
        height: 48px;
    }

    .gm-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .gm-prev {
        left: 8px;
    }
    .gm-next {
        right: 8px;
    }
    .gm-single {
        padding: 0 8px 22px;
    }
    .room-gallery-btn {
        font-size: 0.68rem;
        padding: 7px 12px;
    }
}
.room-tagline {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}
.room-name {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 14px;
}
.room-desc {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* unified meta row — specs + amenities */
.room-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0 0 26px;
    padding: 0;
}
.room-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--grey);
}
.room-meta i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* actions */
.room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* inverted "Book Direct" button */
.btn-book--outline {
    background: var(--white);
    color: var(--olive-dark);
    border: 1px solid var(--olive-dark);
}
.btn-book--outline:hover {
    background: var(--olive-dark);
    color: var(--white);
    border-color: var(--olive-dark);
}

/* --- responsive --- */
@media (max-width: 860px) {
    .room {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    /* always show image first on mobile, regardless of desktop side */
    .room-media,
    .room--reverse .room-media {
        order: -1;
    }
    .rooms .section-rule {
        margin: 44px auto;
    }
}
@media (max-width: 620px) {
    .rooms {
        padding: 50px 24px 60px;
    }
    .room-name {
        font-size: 1.5rem;
    }
    .room-media {
        aspect-ratio: 16 / 11;
    }
    .room-meta {
        gap: 10px 20px;
    }
    .room-actions {
        flex-direction: column;
    }
    .room-actions .btn-book {
        width: 100%;
        text-align: center;
    }
}
/* ===================================================================
   ACTIVITIES PAGE
   =================================================================== */
.activities-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 40px;
}

/* category */
.ac-category {
    margin-bottom: 56px;
}
.ac-cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 26px;
    letter-spacing: -0.3px;
}

/* horizontal scroll row */
.ac-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 1fr);
    gap: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 16px 8px 44px; /* bottom clears the 40px shadow */
    margin: -16px -8px -20px; /* pull following content back up */
    -webkit-overflow-scrolling: touch;
}
.ac-row::-webkit-scrollbar {
    height: 6px;
}
.ac-row::-webkit-scrollbar-thumb {
    background: rgba(62, 63, 34, 0.25);
    border-radius: 3px;
}
.ac-row::-webkit-scrollbar-track {
    background: transparent;
}

/* card */
.ac-card {
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(62, 63, 34, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.ac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(62, 63, 34, 0.14);
}
.ac-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.ac-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ac-card:hover .ac-image img {
    transform: scale(1.06);
}

.ac-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ac-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}
.ac-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: var(--grey);
}
.ac-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ac-meta i {
    color: var(--gold);
    font-size: 0.8rem;
}

.ac-desc {
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.ac-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ac-actions .btn-book,
.ac-actions .btn-outline {
    font-size: 0.66rem;
    padding: 9px 14px;
}

/* ===================================================================
   ACTIVITIES MAP
   =================================================================== */
.ac-map {
    max-width: 1320px;
    margin: 0 auto 70px;
    padding: 0 32px;
}
.ac-map iframe {
    width: 100%;
    height: 440px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.12);
    display: block;
}

/* --- responsive --- */
@media (max-width: 620px) {
    .activities-page {
        padding: 50px 24px 30px;
    }
    .ac-cat-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    /* show ~1.1 cards so the next one peeks, signalling swipe */
    .ac-row {
        grid-auto-columns: 85%;
        gap: 16px;
        padding: 16px 24px 44px;
        margin: -16px -24px -20px;
    }

    .ac-map {
        padding: 0 24px;
        margin-bottom: 50px;
    }
    .ac-map iframe {
        height: 320px;
    }
}

/* ===================================================================
   EVENTS — intro
   =================================================================== */
.events-intro {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 32px 80px;
}

/* ===================================================================
   EVENTS — conference packages
   =================================================================== */
.packages {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 32px 80px;
}
.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.package-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 14px;
    padding: 40px 38px;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.07);
}
.package-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 6px;
}
.package-label {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 22px;
}
.package-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--ink);
}
.package-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive-mid);
}

/* ===================================================================
   EVENTS — why choose us
   =================================================================== */
.why {
    background: var(--cream);
    padding: 70px 0;
}
.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.why .section-head {
    margin-bottom: 44px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.why-item i {
    font-size: 2.2rem;
    color: var(--olive-dark);
}
.why-item span {
    font-size: 0.85rem;
    color: var(--ink);
    line-height: 1.35;
}
.why-action {
    margin-top: 6px;
}

/* ===================================================================
   EVENTS — how it works (timeline)
   =================================================================== */
.steps {
    max-width: 960px;
    margin: 0 auto;
    padding: 70px 32px 80px;
}

.timeline {
    position: relative;
    margin-top: 10px;
}
/* center spine */
.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(var(--gold), rgba(185, 170, 58, 0.25));
}

.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
    margin-bottom: 36px;
}
.tl-item:last-child {
    margin-bottom: 0;
}

/* gold number node on the spine */
.tl-marker {
    grid-column: 2;
    justify-self: center;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 14px rgba(62, 63, 34, 0.22);
}

/* card */
.tl-card {
    grid-column: 1; /* default: left side */
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.tl-item:nth-child(even) .tl-card {
    grid-column: 3;
} /* alternate right */
.tl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(62, 63, 34, 0.16);
}

.tl-thumb {
    aspect-ratio: 16 / 8;
    overflow: hidden;
}
.tl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tl-card:hover .tl-thumb img {
    transform: scale(1.05);
}

.tl-content {
    padding: 22px 26px 24px;
}
.tl-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.tl-desc {
    font-size: 0.88rem;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
}
.tl-content .check-list {
    margin-top: 4px;
}

/* --- responsive: rail moves left, all cards stack right --- */
@media (max-width: 760px) {
    .steps {
        padding: 50px 24px 60px;
    }

    .timeline::before {
        left: 26px;
    }

    .tl-item {
        grid-template-columns: 52px 1fr;
        column-gap: 22px;
        align-items: start;
        margin-bottom: 26px;
    }
    .tl-marker {
        grid-column: 1;
        margin-top: 4px;
    }
    .tl-card,
    .tl-item:nth-child(even) .tl-card {
        grid-column: 2;
    }

    /* arrow points left toward the rail on every card */
    .tl-card::after,
    .tl-item:nth-child(odd) .tl-card::after,
    .tl-item:nth-child(even) .tl-card::after {
        top: 26px;
        left: -7px;
        right: auto;
        border-right: none;
        border-top: none;
        border-left: 1px solid rgba(62, 63, 34, 0.08);
        border-bottom: 1px solid rgba(62, 63, 34, 0.08);
        transform: rotate(45deg);
    }
}
/* shared gold check list */
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.check-list i {
    color: var(--gold);
    font-size: 1rem;
}

/* ===================================================================
   EVENTS — plan CTA banner
   =================================================================== */
.plan {
    position: relative;
    max-width: 1320px;
    margin: 30px auto 0;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 63, 34, 0.78);
}
.plan-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 32px;
}
.plan-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 16px;
}
.plan-content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================================================
   EVENTS — our venues
   =================================================================== */
.venues {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 32px;
}
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.venue-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.07);
}
.venue-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.venue-card:hover .venue-image img {
    transform: scale(1.05);
}
.venue-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin: 24px 0 20px;
}

/* ===================================================================
   EVENTS — perfect for
   =================================================================== */
.perfect {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 32px 90px;
}
.perfect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.perfect-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.07);
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}
.perfect-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.perfect-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.perfect-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1.3;
    margin: 24px 30px 18px;
}
.perfect-card .check-list {
    padding: 0 30px;
    flex: 1;
}
.perfect-cta {
    margin: 22px 30px 0;
    text-align: center;
}

/* ===================================================================
   EVENTS — responsive
   =================================================================== */
@media (max-width: 860px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
    }
}
@media (max-width: 760px) {
    .package-grid,
    .venue-grid,
    .perfect-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 620px) {
    .events-intro {
        padding: 50px 24px 60px;
    }
    .packages {
        padding: 10px 24px 60px;
    }
    .package-card {
        padding: 32px 26px;
    }

    .why {
        padding: 56px 0;
    }
    .why-inner {
        padding: 0 24px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 16px;
    }
    .why-item i {
        font-size: 2rem;
    }

    .plan {
        margin: 20px 0 0;
        border-radius: 0;
    }
    .plan-content {
        padding: 50px 26px;
    }

    .venues {
        padding: 60px 24px;
    }
    .perfect {
        padding: 10px 24px 70px;
    }
    .perfect-title {
        margin: 22px 24px 16px;
    }
    .perfect-card .check-list {
        padding: 0 24px;
    }
    .perfect-cta {
        margin: 20px 24px 0;
    }
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 32px 90px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: start;
}

/* info column */
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 14px;
}
.contact-intro {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.ci-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(185, 170, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-icon i {
    color: var(--gold-dark);
    font-size: 1.05rem;
}
.ci-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 3px;
}
.contact-details a,
.contact-details div > span:not(.ci-label) {
    font-size: 0.92rem;
    color: var(--ink);
    word-break: break-word;
    transition: color 0.2s ease;
}
.contact-details a:hover {
    color: var(--gold-dark);
}
/* form card */
.contact-form-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 38px;
    box-shadow: 0 10px 30px rgba(62, 63, 34, 0.06);
}
.form-alert {
    background: rgba(185, 170, 58, 0.15);
    border: 1px solid var(--gold);
    color: var(--olive-dark);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}
.field-optional {
    color: var(--grey);
    font-weight: 400;
    font-size: 0.85em;
}

/* inputs, textarea, select — shared styling */
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.14);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--ink);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.form-field textarea {
    resize: vertical;
    min-height: 130px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 170, 58, 0.15);
}

/* select-only: custom chevron + spacing */
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    height: 46px;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b5e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-error {
    display: block;
    color: #b3261e;
    font-size: 0.76rem;
    margin-top: 6px;
}
.contact-form .btn-book {
    margin-top: 6px;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 13px 30px;
}

/* --- responsive --- */
@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        order: 2;
    } /* form first on tablet/mobile */
    .contact-form-card {
        order: 1;
    }
}
@media (max-width: 620px) {
    .contact-page {
        padding: 50px 24px 60px;
    }
    .contact-form-card {
        padding: 28px 22px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    } /* stack name/surname etc */
    .contact-form .btn-book {
        width: 100%;
        text-align: center;
    }
}
/* ===================================================================
   PROPERTY SHOW — listing tweaks (price under CTA)
   =================================================================== */
.room-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.room-price {
    font-size: 0.85rem;
    color: var(--grey);
}
.room-price strong {
    color: var(--olive-dark);
    font-size: 1rem;
}

/* ===================================================================
   PROPERTY SHOW — hero
   =================================================================== */
.show-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.show-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 12, 0.88),
        rgba(20, 20, 12, 0.55) 55%,
        rgba(20, 20, 12, 0.55)
    );
}
.show-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 32px;
    color: var(--white);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.show-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    transition: color 0.2s ease;
}
.show-back:hover {
    color: var(--gold);
}
.show-tagline {
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cfc157;
    margin-bottom: 8px;
}
.show-name {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 12px;
}
.show-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}
.show-loc i {
    color: #cfc157;
}
.show-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    font-size: 0.86rem;
}
.show-quick span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.show-quick i {
    color: var(--gold);
}

/* ===================================================================
   PROPERTY SHOW — gallery
   =================================================================== */
.show-gallery {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 32px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
}
.gallery-tile {
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: var(--cream);
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-tile:hover img {
    transform: scale(1.05);
}
.gallery-tile--lead {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 12, 0.55);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================================================
   PROPERTY SHOW — body layout
   =================================================================== */
.show-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 32px 90px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
}
.show-block {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(62, 63, 34, 0.1);
}
.show-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.show-h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.show-desc {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.96rem;
    line-height: 1.8;
}

/* highlight chips */
.show-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.hl-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1px solid rgba(62, 63, 34, 0.1);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.82rem;
    color: var(--olive-dark);
}
.hl-chip i {
    color: var(--gold-dark);
    font-size: 0.95rem;
}

/* beds */
.bed-list li,
.landmark-list li,
.rule-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--ink);
}
.bed-list i,
.landmark-list i,
.rule-list i {
    color: var(--gold);
    margin-top: 2px;
}

/* amenities */
.amenity-groups {
    columns: 2;
    column-gap: 40px;
}
.amenity-group {
    break-inside: avoid;
    margin-bottom: 28px;
}
.amenity-group:last-child {
    margin-bottom: 0;
}
.amenity-group h4 {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.amenity-group ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--ink);
}
.amenity-group ul i {
    color: var(--gold);
    font-size: 0.95rem;
}

.show-loc-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--olive-dark);
    margin-bottom: 16px;
}
.show-loc-line i {
    color: var(--gold);
}
.landmark-list {
    margin-bottom: 22px;
}

/* reviews */
.review-star {
    color: var(--gold);
    font-size: 1.2rem;
}
.rating-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 36px;
    margin-bottom: 28px;
}
.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rb-label {
    font-size: 0.84rem;
    color: var(--ink);
    width: 110px;
    flex-shrink: 0;
}
.rb-track {
    flex: 1;
    height: 4px;
    background: rgba(62, 63, 34, 0.12);
    border-radius: 2px;
    overflow: hidden;
}
.rb-fill {
    display: block;
    height: 100%;
    background: var(--gold);
}
.rb-score {
    font-size: 0.82rem;
    color: var(--olive-dark);
    font-weight: 600;
    width: 28px;
    text-align: right;
}

.review-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.review-item {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(62, 63, 34, 0.05);
}
.ri-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.ri-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--olive-mid);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.ri-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--olive-dark);
}
.ri-date {
    font-size: 0.78rem;
    color: var(--grey);
}
.ri-text {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.65;
    font-style: italic;
}

/* ===================================================================
   PROPERTY SHOW — booking sidebar
   =================================================================== */
.show-aside {
    position: sticky;
    top: 94px;
}
.book-card {
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.12);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(62, 63, 34, 0.12);
}
.book-price {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 4px;
}
.book-price strong {
    font-size: 1.9rem;
    color: var(--olive-dark);
}
.book-rating {
    font-size: 0.88rem;
    color: var(--olive-dark);
    margin-bottom: 18px;
}
.book-rating i {
    color: var(--gold);
}
.book-specs {
    margin-bottom: 20px;
}
.book-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid rgba(62, 63, 34, 0.07);
}
.book-specs i {
    color: var(--gold);
}
.book-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.8rem;
}
.book-enquire {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px;
}
.book-note {
    font-size: 0.74rem;
    color: var(--grey);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

/* sticky mobile book bar (hidden on desktop) */
.book-bar {
    display: none;
}

/* ===================================================================
   PROPERTY SHOW — lightbox
   =================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 12, 8, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    border-radius: 6px;
}
.lb-close,
.lb-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.lb-close:hover,
.lb-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lb-close {
    top: 24px;
    right: 24px;
}
.lb-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.lb-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================================================================
   PROPERTY SHOW — responsive
   =================================================================== */
@media (max-width: 980px) {
    .show-body {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .show-aside {
        position: static;
        margin-bottom: 40px;
        order: -1;
    } /* booking card up top on tablet */
    .gallery-grid {
        grid-auto-rows: 130px;
    }
}
@media (max-width: 760px) {
    .amenity-groups {
        columns: 1;
    }
    .rating-bars,
    .review-cards {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .gallery-tile--lead {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 620px) {
    .show-hero {
        min-height: 340px;
    }
    .show-hero-inner {
        padding: 28px 24px;
    }
    .show-gallery {
        padding: 0 16px;
    }
    .show-body {
        padding: 36px 24px 110px;
    } /* extra bottom for sticky bar */

    /* hide desktop sidebar, show sticky bottom bar */
    .show-aside {
        display: none;
    }
    .book-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: var(--white);
        border-top: 1px solid rgba(62, 63, 34, 0.12);
        padding: 12px 20px;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    }
    .book-bar-price {
        font-size: 0.9rem;
        color: var(--grey);
    }
    .book-bar-price strong {
        color: var(--olive-dark);
        font-size: 1.15rem;
    }
    .book-bar .btn-book {
        padding: 12px 24px;
    }
}

/* ===================================================================
   ABOUT — banner with title
   =================================================================== */
.about-banner {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(62, 63, 34, 0.5), rgba(62, 63, 34, 0.68));
}
.about-banner-inner {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 24px;
}
.ab-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
}
.ab-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 12px;
}
@media (max-width: 620px) {
    .ab-title {
        font-size: 37px;
    }
    .ab-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 6px 16px;
    }
}
.ab-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================================================
   ABOUT — story lead + stats
   =================================================================== */
.about-lead {
    max-width: 765px;
    margin: 0 auto;
    padding: 80px 32px 50px;
    text-align: center;
}
.lead-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.lead-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--olive-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.lead-text {
    color: var(--grey);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(62, 63, 34, 0.1);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
}
.stat-num small {
    font-size: 1rem;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
}

/* ===================================================================
   ABOUT — story split (framed image)
   =================================================================== */
.story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 80px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-media {
    position: relative;
    border-radius: 14px;
}
.story-media img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(62, 63, 34, 0.18);
    position: relative;
    z-index: 2;
}
.story-media::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    border-radius: 14px;
    z-index: 1;
}
.story-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    background: var(--white);
    color: var(--olive-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(62, 63, 34, 0.15);
}
.story-text h3 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 18px;
}
.story-text p {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.story-text .btn-book {
    margin-top: 8px;
}

/* ===================================================================
   ABOUT — value cards
   =================================================================== */
.values-section {
    background: var(--cream);
    padding: 80px 0;
}
.values-section .section-head {
    margin-bottom: 50px;
}
.value-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.value-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(62, 63, 34, 0.06);
    box-shadow: 0 8px 24px rgba(62, 63, 34, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(62, 63, 34, 0.12);
}
.value-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(185, 170, 58, 0.14);
    margin-bottom: 22px;
}
.value-card-icon i {
    font-size: 1.5rem;
    color: var(--gold-dark);
}
.value-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.65;
}

/* ===================================================================
   ABOUT — cta band
   =================================================================== */
.about-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 63, 34, 0.82);
}
.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 32px;
    color: var(--white);
}
.about-cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 14px;
}
.about-cta-inner p {
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}
.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline--light {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}
.btn-outline--light:hover {
    background: var(--white);
    color: var(--olive-dark);
    border-color: var(--white);
}

/* ===================================================================
   ABOUT — responsive
   =================================================================== */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-media {
        order: -1;
    }
    .value-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .about-banner {
        min-height: 300px;
    }
    .about-lead {
        padding: 56px 24px 40px;
    }
    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
    .stat-num {
        font-size: 2rem;
    }
    .story {
        padding: 30px 24px 60px;
    }
    .story-media::before {
        display: none;
    }
    .values-section {
        padding: 56px 0;
    }
    .value-cards {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .about-cta-inner {
        padding: 60px 26px;
    }
    .about-cta-actions {
        flex-direction: column;
    }
    .about-cta-actions .btn-book,
    .about-cta-actions .btn-outline {
        width: 100%;
    }
}
/* ===================================================================
   ACCOMMODATION — extra treatment
   =================================================================== */
.rooms {
    padding-top: 30px;
} /* lead section already gives top spacing */

/* price tag on the image */
.room-media {
    position: relative;
}
.room-price-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(62, 63, 34, 0.2);
}

/* tagline above the name */
.room-tagline {
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

/* icons inside spec pills */
.room-specs .spec {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.room-specs .spec i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* secondary "book direct" link beside the CTA */
.room-actions {
    gap: 22px;
}
.room-book-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--olive-dark);
    transition: color 0.2s ease;
}
.room-book-link i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}
.room-book-link:hover {
    color: var(--gold-dark);
}
.room-book-link:hover i {
    transform: translate(2px, -2px);
}

@media (max-width: 620px) {
    .room-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .room-actions .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* ===================================================================
   ACTIVITIES — map heading + spacing
   =================================================================== */
.ac-map .section-head {
    margin-bottom: 36px;
}

@media (max-width: 620px) {
    .ac-map .section-head {
        margin-bottom: 24px;
    }
}

/* ===================================================================
   CONTACT — map
   =================================================================== */
.contact-map {
    width: 100%;
    line-height: 0;
}
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.15);
}

@media (max-width: 620px) {
    .contact-map iframe {
        height: 300px;
    }
}

/* ===================================================================
   HOME — hero polish
   =================================================================== */
.hero-strap {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll i {
    font-size: 1.8rem;
    color: var(--white);
}

@media (max-width: 620px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn-book,
    .hero-actions .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===================================================================
   HOME — featured stays
   =================================================================== */
.featured {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 32px 70px;
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.feat-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(62, 63, 34, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(62, 63, 34, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(62, 63, 34, 0.16);
}
.feat-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feat-card:hover .feat-img img {
    transform: scale(1.07);
}
.feat-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(62, 63, 34, 0.35),
        transparent 50%
    );
}
.feat-price {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(62, 63, 34, 0.2);
}
.feat-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.feat-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.feat-desc {
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.feat-link i {
    transition: transform 0.25s ease;
}
.feat-card:hover .feat-link i {
    transform: translateX(4px);
}

.featured-action {
    text-align: center;
    margin-top: 44px;
}

/* ===================================================================
   HOME — why stay feature band
   =================================================================== */
.home-features {
    background: var(--cream);
    padding: 70px 0;
}
.home-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.home-feature {
    text-align: center;
}
.hf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(62, 63, 34, 0.08);
    margin-bottom: 20px;
}
.hf-icon i {
    font-size: 1.6rem;
    color: var(--gold-dark);
}
.home-feature h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 10px;
}
.home-feature p {
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.6;
}

/* ===================================================================
   HOME — star icon fix (Bootstrap icons in testimonials)
   =================================================================== */
.stars i {
    color: var(--gold);
    font-size: 0.95rem;
}

/* ===================================================================
   HOME — responsive
   =================================================================== */
@media (max-width: 980px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-features-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}
@media (max-width: 560px) {
    .featured {
        padding: 60px 24px 50px;
    }
    .feat-grid {
        grid-template-columns: 1fr;
    }
    .home-features {
        padding: 56px 0;
    }
    .home-features-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
}

/* ===================================================================
   LEGAL PAGES
=================================================================== */

.legal {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

.legal-inner {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 12px;
    border: 1px solid rgba(62, 63, 34, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.legal-updated {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.55rem 1rem;
    background: rgba(185, 170, 58, 0.12);
    color: var(--gold-dark);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    position: relative;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
}

.legal-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: var(--gold);
}

.legal-block p {
    margin-bottom: 1.25rem;
    color: var(--grey);
    line-height: 1.9;
}

.legal-block ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-block li {
    margin-bottom: 0.9rem;
    color: var(--grey);
    line-height: 1.8;
}

.legal-block strong {
    color: var(--olive-dark);
    font-weight: 600;
}

.legal a {
    color: var(--gold-dark);
    transition: color 0.25s ease;
}

.legal a:hover {
    color: var(--gold);
}

.legal-contact {
    margin-top: 1.5rem;
    padding: 0 !important;
    list-style: none !important;
}

.legal-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.legal-contact i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.legal-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(62, 63, 34, 0.12);
    color: var(--grey);
    font-style: italic;
    line-height: 1.8;
}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 768px) {
    .legal {
        padding: 4rem 1rem;
    }

    .legal-inner {
        padding: 2rem 1.5rem;
    }

    .legal-intro {
        font-size: 1rem;
    }

    .legal-block {
        margin-bottom: 2.5rem;
    }

    .legal-block h2 {
        font-size: 1.8rem;
    }

    .legal-contact li {
        gap: 0.75rem;
    }
}

/* ===================================================================
   WHATSAPP FLOAT
   =================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* gentle attention pulse */
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

@media (max-width: 620px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ===================================================================
   FULL VENUE + UNIT CARDS
   =================================================================== */
.venue-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.venue-card {
    background: var(--olive-dark);
    border-radius: 14px;
    padding: 34px 32px;
    color: var(--cream);
}
.venue-card .venue-eyebrow {
    color: var(--gold);
}
.venue-title {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.venue-copy {
    font-weight: 300;
    line-height: 1.75;
    opacity: 0.88;
    margin-bottom: 20px;
    max-width: 60ch;
}
.venue-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    font-size: 0.9rem;
}
.venue-specs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.venue-specs i {
    color: var(--gold);
}

.unit-intro {
    color: var(--grey);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 62ch;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.unit-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.unit-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.unit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.unit-gallery-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(28, 28, 20, 0.8);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    padding: 7px 14px;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}
.unit-gallery-btn:hover {
    background: var(--gold);
    color: var(--olive-dark);
}

.unit-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.unit-tagline {
    font-size: 0.68rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}
.unit-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 6px;
}
.unit-price {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 12px;
}
.unit-price strong {
    color: var(--olive-dark);
    font-size: 1.02rem;
}
.unit-short {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.unit-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.8rem;
    color: var(--grey);
}
.unit-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.unit-meta i {
    color: var(--gold-dark);
}
.unit-note {
    font-size: 0.78rem;
    color: var(--grey);
    background: rgba(0, 0, 0, 0.035);
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    line-height: 1.5;
}
.unit-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.unit-cta {
    text-align: center;
    font-size: 0.78rem;
}

.book-from-note {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: -8px;
    margin-bottom: 14px;
}

@media (max-width: 700px) {
    .venue-card {
        padding: 26px 22px;
    }
    .venue-title {
        font-size: 1.5rem;
    }
}
/* ===================================================================
   FULL VENUE CARD (fv-) + UNIT CARDS
   =================================================================== */
.fv-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 8px;
}
.fv-eyebrow--light {
    color: var(--gold-dark);
    opacity: 1;
    margin-bottom: 10px;
}

.fv-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--olive-dark);
    background-size: cover;
    background-position: center;
    color: var(--cream);
    isolation: isolate;
}
.fv-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        105deg,
        rgba(38, 39, 24, 0.97) 0%,
        rgba(38, 39, 24, 0.94) 52%,
        rgba(38, 39, 24, 0.7) 100%
    );
}
.fv-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(185, 170, 58, 0.3);
    pointer-events: none;
}

.fv-inner {
    padding: 44px 44px 40px;
    max-width: 640px;
}

.fv-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(185, 170, 58, 0.14);
    border: 1px solid rgba(185, 170, 58, 0.42);
    color: var(--gold);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.66rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.fv-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--cream);
}

.fv-rule {
    display: block;
    width: 54px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 22px;
}

.fv-copy {
    font-weight: 300;
    font-size: 0.97rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 54ch;
}

.fv-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.fv-specs li {
    flex: 1 1 130px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fv-num {
    font-family: var(--serif);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 600;
}
.fv-label {
    font-size: 0.7rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.72;
}

.fv-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 26px;
}
.fv-cta {
    padding: 15px 32px;
}
.fv-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cream);
    font-size: 0.8rem;
    letter-spacing: 0.6px;
    opacity: 0.72;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;
}
.fv-link:hover {
    opacity: 1;
    border-bottom-color: var(--gold);
}
.fv-link i {
    font-size: 0.8rem;
    color: var(--gold);
}

/* ---- individual unit cards ---- */
.unit-intro {
    color: var(--grey);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 62ch;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.unit-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(62, 63, 34, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 6px 20px rgba(62, 63, 34, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(62, 63, 34, 0.14);
}

.unit-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.unit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.unit-card:hover .unit-media img {
    transform: scale(1.05);
}
.unit-gallery-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(28, 28, 20, 0.6);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    padding: 7px 14px;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition:
        background 0.25s ease,
        color 0.25s ease;
}
.unit-gallery-btn:hover {
    background: var(--gold);
    color: var(--olive-dark);
}

.unit-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.unit-tagline {
    font-size: 0.68rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}
.unit-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 6px;
}
.unit-price {
    font-size: 0.88rem;
    color: var(--grey);
    margin-bottom: 12px;
}
.unit-price strong {
    color: var(--olive-dark);
    font-size: 1.02rem;
}
.unit-short {
    color: var(--grey);
    font-weight: 300;
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.unit-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.79rem;
    color: var(--grey);
}
.unit-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.unit-meta i {
    color: var(--gold);
}
.unit-note {
    font-size: 0.76rem;
    color: var(--grey);
    background: rgba(185, 170, 58, 0.09);
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    line-height: 1.5;
}
.unit-note i {
    color: var(--gold-dark);
    margin-top: 2px;
}
.unit-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.unit-cta {
    text-align: center;
    font-size: 0.74rem;
    padding: 12px 18px;
    white-space: normal;
}

/* ---- sidebar "from" caption ---- */
.book-from-note {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    margin: -2px 0 14px;
}

/* ---- responsive ---- */
@media (max-width: 760px) {
    .fv-inner {
        padding: 32px 24px 30px;
        max-width: none;
    }
    .fv-overlay {
        background: linear-gradient(
            160deg,
            rgba(38, 39, 24, 0.97) 0%,
            rgba(38, 39, 24, 0.9) 100%
        );
    }
    .fv-specs li {
        flex: 1 1 100px;
        padding: 13px 14px;
    }
    .fv-num {
        font-size: 1.5rem;
    }
    .fv-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .fv-cta {
        text-align: center;
    }
    .fv-link {
        justify-content: center;
    }
}

/* ===================================================================
   MOBILE OVERFLOW FIX — long CTA labels
   =================================================================== */
.fv-cta,
.book-cta,
.book-enquire,
.unit-cta {
    white-space: normal;
    overflow-wrap: break-word;
}
.fv-actions > *,
.unit-actions > * {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 620px) {
    .fv-cta {
        padding: 14px 20px;
        line-height: 1.4;
    }
    .book-bar {
        flex-wrap: nowrap;
        min-width: 0;
    }
    .book-bar-price {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .book-bar .btn-book {
        flex-shrink: 0;
    }
}
/* view all photos button under the show gallery */
.show-gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}
.gallery-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: none;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 500;
}
.gallery-all-btn i {
    font-size: 0.95rem;
}