/* ════════════════════════════════
       NAVBAR
    ════════════════════════════════ */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    padding: 6px 18px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    padding: 2px;
    border: none;
    background: none;
}

.nav-mobile {
    display: flex;
}

.nav-desktop {
    display: none;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.img-logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-logo svg {
    width: 22px;
    height: 28px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .brand {
    color: var(--gold);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-logo-text .sub {
    color: var(--white);
    font-size: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

/* Desktop nav links – hidden by default, shown via media query */
.nav-links-desktop {
    display: none;
}

/* ════════════════════════════════
       HAMBURGER MENU OVERLAY
    ════════════════════════════════ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    z-index: 300;
    display: flex;
    flex-direction: column;
    background: var(--white);
    transform: translateX(-110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    visibility: hidden;
}

.menu-overlay.open {
    transform: translateX(0);
    visibility: visible;
}

/* Top bar inside overlay */
.menu-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    padding: 12px 18px;
    flex-shrink: 0;
}

.menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* Nav links */
.menu-links {
    flex: 1;
    /* padding: 0px 0 20px; */
}

.menu-links a {
    display: block;
    padding: 18px 28px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.menu-links a:hover {
    color: var(--gold);
}

/* Contact block at bottom of menu */
.menu-contact {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 14px;
}

.menu-contact-item a {
    color: var(--navy);
    text-decoration: none;
}

.menu-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.menu-socials {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.menu-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
}

.menu-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-socials svg {
    width: 16px;
    height: 16px;
}

/* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 20px 0;
}

.footer-inner {
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text .brand {
    color: var(--gold);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
}

.footer-logo-text .sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Collapsible accordion */
.footer-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
}

.acc-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.32s ease;
}

.footer-acc-item.open .acc-chevron {
    transform: rotate(180deg);
}

.footer-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-acc-item.open .footer-acc-body {
    max-height: 300px;
}

.footer-acc-links {
    padding: 2px 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-acc-links a {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-acc-links a:hover {
    color: var(--gold);
}

.footer-divider {
    border: none;
    margin: 10px 0;
}

/* Stay in Touch */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0px 18px 0;
}

.footer-stay {
    padding: 0 24px;
}

/* .footer-stay h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
} */
.footer-stay p {
    color: var(--white);
}

.footer-email-row {
    display: flex;
    margin-bottom: 24px;
}

.footer-email-row input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-size: 12px;
    font-family: var(--font-secondary);
    outline: none;
}

.footer-email-row input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.footer-email-row button {
    background: var(--gold);
    border: none;
    color: var(--white);
    padding: 11px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-secondary);
}

/* Contact */
.footer-contact {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 12px;
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--cream2);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
    padding: 0 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
}

/* ════════════════════════════════
       HOME PAGE 1 – HERO BANNER
    ════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    /* height: 300px; */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ════════════════════════════════
       HOME PAGE 2 – STAY WITH US  (room cards)
    ════════════════════════════════ */
.stay-section {
    background: var(--cream);
}

/* ════════════════════════════════
       HOME PAGE 3 – WELCOME / ABOUT
    ════════════════════════════════ */
.welcome-section {
    background: var(--white);
}

.welcome-heading {
    text-align: center;
    padding: 0 22px 18px;
}

.welcome-heading h2 {
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.welcome-heading .italic-sub {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 15px;
    color: var(--text-mid);
}

.welcome-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.welcome-img-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}

.welcome-body {
    padding-top: 10px;
}

.welcome-body p {
    font-size: 14px;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* .link-read-more {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s;
}
.link-read-more:hover {
    color: var(--gold);
} */

.m-img-full {
    background-image: url("../images/Parallax.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    height: 280px;
}

.full-width-image .m-img-full--parallax {
    background-size: cover;
}

.m-img-full--parallax {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.m-img-full--parallax .m-img-full__image {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (min-width: 1024px) {
    .m-img-full--parallax {
        background-attachment: fixed;
    }
}

.ratio-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.ratio-content img {
    object-fit: cover;
}

.ratio-content img,
.ratio-content iframe {
    width: 100%;
    height: 100%;
}

.ratio-content img {
    vertical-align: middle;
}

/* ════════════════════════════════
       HOME PAGE 4 – EXPERIENCES & OFFERS
    ════════════════════════════════ */
.offers-section {
    background: var(--cream);
}

.offer-card {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(13, 27, 62, 0.07);
    overflow: hidden;
}

.offer-card-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.offer-card-img svg {
    width: 100%;
    height: 100%;
    display: block;
}

.offer-card-body {
    padding: 12px 12px 14px;
}

.offer-card-title {
    color: var(--navy);
    text-align: left;
}

/* .offer-card-desc {
    font-size: 11px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 10px;
} */
.btn-read-more {
    display: inline-block;
    padding: 7px 16px;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-read-more:hover {
    background: var(--gold);
}

.view-all-row {
    text-align: right;
    padding: 14px 18px 0;
}

/* .view-all-link {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.view-all-link:hover {
    color: var(--gold);
} */

/* ════════════════════════════════
       HOME PAGE 5 – PROMO BANNER
    ════════════════════════════════ */
.cls-section {
    grid-template-columns: 1fr;
}

.cls-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.cls-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cls-caption {
    padding: 1.5rem 2rem 1.5rem;
    text-align: center;
    background: #ffffff;
}

.cls-caption h2 {
    color: var(--navy);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
}

.cls-caption p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.cls-right h3 {
    color: var(--navy);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.1rem;
}

.cls-right .sub {
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
    margin: 0 0 0.3rem;
    font-family: var(--font-secondary);
}

.cls-field {
    display: flex;
    align-items: center;
    border: 1px solid var(--gold);
    padding: 10px 12px;
    height: 46px;
    gap: 10px;
    background: #ffffff;
    transition: border-color 0.2s;
    margin-bottom: 10px;
}

.cls-field:focus-within {
    border-color: var(--gold);
}

.cls-field svg {
    flex-shrink: 0;
    color: var(--navy);
}

.cls-field input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: var(--navy);
    background: transparent;
    font-family: var(--font-secondary);
}

.cls-field input::placeholder {
    color: var(--navy);
    font-family: var(--font-secondary);
}

.cls-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 3px;
    height: 46px;
    font-size: 1.05rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    margin-bottom: 10px;
}

.cls-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cls-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
}

.cls-consent label {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.45;
    font-family: var(--font-secondary);
}

.cls-right {
    padding: 0 15px;
}

/* ════════════════════════════════
       HOME PAGE 6 – TESTIMONIALS
    ════════════════════════════════ */
.testimonial-section {
    background: var(--navy);
    text-align: center;
}

.testimonial-section .section-heading h2 {
    color: var(--gold);
}

.testimonial-section .section-heading .sub {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.testimonial-wrap {
    position: relative;
    margin-top: 28px;
    min-height: 140px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.45s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.quote-mark {
    font-family: var(--font-primary);
    font-size: 52px;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: 8px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-primary);
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.quote-sub {
    color: var(--white);
    margin-bottom: 6px;
}

.quote-author {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream2);
}

/* Dot indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.t-dot.active {
    background: var(--gold);
}

/* ════════════════════════════════
       HOME PAGE 7 – THE CHIC JOURNAL
    ════════════════════════════════ */
.journal-section {
    background: var(--cream);
}

.journal-card {
    display: flex;
    gap: 14px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(13, 27, 62, 0.06);
    overflow: hidden;
}

.journal-card-img {
    width: 110px;
    flex-shrink: 0;
    height: 110px;
    overflow: hidden;
}

.journal-card-img svg {
    width: 100%;
    height: 100%;
    display: block;
}

.journal-card-body {
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.journal-date {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.journal-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 8px;
}

.journal-read-more {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.journal-read-more:hover {
    color: var(--gold);
}

/* ════════════════════════════════
       HOME PAGE 8 – NEIGHBOURLY PLACES (Map)
    ════════════════════════════════ */
.map-section {
    background: var(--white);
}

.map-section .section-heading h2 {
    color: var(--navy);
}

.map-desc {
    text-align: center;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    padding: 0 22px 22px;
}

/* Illustrated map */
.map-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #e8edf2;
}

.map-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ════════════════════════════════
       HOME PAGE 8 – FAQS (Accordion)
    ════════════════════════════════ */
/* .faq-wrap {
    padding: 2rem 1rem;
} */
/* .faq-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    padding: 0 0 1.5rem;
    letter-spacing: 0.02em;
    font-family: var(--font-primary);
} */
.faq-content-wrap {
    background-color: var(--cream);
    padding: 1rem 0;
}

.faq-content {
    padding: 20px 15px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 16px 0;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.45;
    font-family: var(--font-secondary);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.2s;
}

.faq-icon span {
    display: block;
    width: 10px;
    height: 1px;
    background: var(--text-dark);
    position: relative;
    transition: transform 0.3s;
}

.faq-icon span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 1px;
    background: var(--text-dark);
    transform: rotate(90deg);
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.faq-item.open .faq-icon span::after {
    transform: rotate(0deg);
    opacity: 0;
}

.faq-body {
    /* overflow: hidden;
    max-height: 0; */
    transition: max-height 0.3s ease;
    display: none;
    padding-bottom: 20px;
}

.open .faq-body {
    display: block;
}

.faq-body-inner {
    padding: 0 2rem 1.1rem 0;
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    font-family: var(--font-secondary);
}

/* ════════════════════════════════
       TABLET  (≥ 768px)
    ════════════════════════════════ */
@media (min-width: 768px) {
    body {
        max-width: 100%;
    }

    /* ── Navbar ── */
    nav {
        padding: 14px 40px;
    }

    .img-logo {
        height: 65px;
    }

    .nav-logo-text .brand {
        font-size: 15px;
    }

    .nav-logo-text .sub {
        font-size: 8px;
    }

    .btn-book-nav {
        font-size: 13px;
        padding: 10px 22px;
    }

    /* ── Menu overlay spans full viewport on tablet ── */
    .menu-overlay {
        max-width: 100%;
    }

    .menu-topbar {
        padding: 0 40px;
    }

    .menu-links a {
        font-size: 22px;
        padding: 10px 40px;
    }

    .menu-contact {
        padding: 20px 40px;
    }

    /* ── Footer: 2-col accordion → inline columns ── */
    footer {
        padding: 40px 0;
    }

    .footer-inner {
        padding: 0 40px;
    }

    .footer-accordion {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-acc-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-acc-item:last-child {
        border-right: none;
    }

    .footer-stay,
    .footer-contact {
        padding: 0 40px;
    }

    .footer-socials {
        padding: 0 40px;
    }

    .footer-email-row input {
        font-size: 13px;
    }

    /* ════════════════════════════════
       HOME PAGE
    ════════════════════════════════ */

    /* ── Hero ── */
    .hero {
        /* height: 440px; */
    }

    /* Reservation CSS */
    .reservation-card {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        background: var(--navy);
        padding: 20px 22px;
        width: 350px;
    }

    .res-title {
        color: var(--white);
        font-family: var(--font-primary);
        font-size: 22px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 14px;
        letter-spacing: 0.02em;
    }

    .res-divider {
        border: none;
        margin-bottom: 14px;
    }

    .date-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .date-box {
        background: var(--cream);
        padding: 8px 10px;
        text-align: center;
        position: relative;
    }

    .date-label {
        font-size: 12px;
        color: var(--text-dark);
        font-family: var(--font-secondary);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: block;
        margin-bottom: 2px;
    }

    .date-day {
        font-size: 26px;
        color: var(--text-dark);
        font-family: var(--font-secondary);
        font-weight: 500;
        display: block;
        line-height: 1;
    }

    .date-month {
        font-size: 12px;
        color: var(--text-dark);
        font-family: var(--font-secondary);
        font-weight: 500;
        margin-top: 1px;
        display: block;
    }

    .date-box input[type="date"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
        border: none;
    }

    .reservation-btn {
        display: flex;
        margin: 0 auto;
    }

    /* ── Section headings ── */
    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading .sub {
        font-size: 26px;
    }

    /* ── Welcome / About ── */

    .welcome-heading {
        padding: 0 36px 24px;
    }

    .welcome-heading h2 {
        font-size: 26px;
    }

    .welcome-img-wrap {
        height: 300px;
    }

    .welcome-body {
        padding-top: 20px;
    }

    .welcome-body p {
        font-size: 16px;
    }

    .m-img-full {
        height: 265.5px;
    }

    /* ── Offers ── */

    .offer-card-img {
        height: 150px;
    }

    /* .offer-card-title {
        font-size: 15px;
    } */
    /* .offer-card-desc {
        font-size: 12px;
    } */
    .view-all-row {
        padding: 16px 36px 0;
    }

    /* ── Promo ── */
    .cls-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* .cls-divider {
        width: 100%;
        height: 1px;
    } */

    .cls-left {
        flex: 1.1;
        display: flex;
        flex-direction: column;
    }

    .cls-right {
        flex: 1;
        padding: 2rem 2.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        background: #ffffff;
    }

    .cls-img-wrap {
        aspect-ratio: 16/9;
    }

    .cls-caption h2 {
        font-size: 32px;
    }

    .cls-caption p {
        font-size: 18px;
    }

    .cls-right h3 {
        font-size: 28px;
    }

    .cls-right .sub {
        font-size: 16px;
    }

    /* ── Testimonials ── */

    .quote-text {
        font-size: 18px;
    }

    .testimonial-wrap {
        min-height: 150px;
    }

    /* ── Journal ── */

    .journal-card {
        flex-direction: column;
    }

    .journal-card-img {
        width: 100%;
        height: 160px;
        flex-shrink: unset;
    }

    .journal-card-body {
        padding: 14px 16px 16px 16px;
    }

    .journal-title {
        font-size: 15px;
    }

    .journal-date {
        font-size: 14px;
    }

    .journal-title {
        font-size: 20px;
    }

    .journal-read-more {
        font-size: 16px;
    }

    /* ── Map ── */

    .map-desc {
        padding: 0 36px 24px;
        font-size: 14px;
    }

    .map-container {
        height: 420px;
    }

    .faq-content {
        padding: 20px 100px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ════════════════════════════════
       DESKTOP  (1024px +)
    ════════════════════════════════ */
@media (min-width: 1024px) {

    /* ── Navbar: show full links, hide hamburger ── */
    nav {
        padding: 0 60px;
        height: 80px;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
        gap: 8px;
        padding-right: 44px; /* reserve space for absolutely-positioned hamburger */
    }

    .nav-mobile {
        display: none;
    }

    /* Absolutely positioned at right edge of the sticky nav */
    .nav-desktop {
        display: flex;
        position: absolute;
        right: 60px; /* matches nav horizontal padding */
        top: 50%;
        transform: translateY(-50%);
    }

    /* Desktop inline nav links */
    .nav-links-desktop {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
        justify-content: center;
    }

    .nav-links-desktop a {
        color: rgba(255, 255, 255, 0.82);
        text-decoration: none;
        font-family: var(--font-secondary);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        transition: color 0.2s;
        white-space: nowrap;
    }

    .nav-links-desktop a:hover {
        color: var(--gold);
    }

    .btn-book-nav {
        font-size: 16px;
        padding: 12px 28px;
    }

    /* ── Menu overlay: narrow slide-in panel on desktop ── */
    .menu-overlay {
        max-width: 380px;
    }

    .menu-topbar {
        padding: 0 28px;
    }

    .menu-links a {
        font-size: 15px;
        padding: 15px 28px;
    }

    .menu-contact {
        padding: 20px 28px;
    }

    /* ── Footer: full 4-column layout ── */
    /* footer {
        padding: 56px 0 36px;
    } */
    .footer-inner {
        padding: 0 60px;
        margin-bottom: 40px;
    }

    .footer-bottom-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding: 0 60px;
        align-items: start;
    }

    /* Accordion becomes static columns on desktop */
    .footer-accordion {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        border-top: none;
        padding: 0 60px;
        margin-bottom: 40px;
    }

    .footer-acc-item {
        border-bottom: none;
        border-right: none !important;
    }

    .footer-acc-header {
        cursor: default;
        padding: 0 0 14px 0;
        pointer-events: none;
        /* font-size: 18px; */
    }

    /* .footer-acc-header span {
        font-size: 11px;
        letter-spacing: 2px;
    } */
    .acc-chevron {
        display: none;
    }

    .footer-acc-body {
        max-height: none !important;
        overflow: visible;
    }

    .footer-acc-links {
        padding: 0;
        gap: 12px;
    }

    .footer-acc-links a {
        font-size: 16px;
    }

    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }

    .footer-contact-item {
        font-size: 16px;
    }

    .footer-divider {
        margin: 0 60px 32px;
    }

    .footer-stay {
        padding: 0 60px;
        /* margin-bottom: 28px; */
    }

    /* .footer-stay h4 {
        font-size: 14px;
    } */
    /* .footer-stay p {
        font-size: 13px;
    } */
    .footer-email-row {
        max-width: 440px;
    }

    .footer-contact {
        padding: 0 60px;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-socials {
        padding: 0 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ════════════════════════════════
       HOME PAGE
    ════════════════════════════════ */

    /* ── Hero ── */
    .hero {
        /* height: 580px; */
    }

    .hero-tagline {
        font-size: 46px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .btn-hero-stay {
        padding: 15px 54px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* ── Section headings ── */
    .section-heading h2 {
        font-size: 32px;
    }

    /* ── Welcome ── */
    .welcome-section {
        display: grid;
        align-items: stretch;
    }

    .welcome-heading {
        grid-column: 1 / -1;
        padding: 0 64px 32px;
        text-align: center;
    }

    .welcome-heading h2 {
        font-size: 34px;
    }

    .welcome-img-wrap {
        height: 480px;
        order: 2;
    }

    .welcome-body {
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .welcome-body p {
        font-size: 22px;
        line-height: 1.85;
    }

    /* ── Offers ── */

    .offer-card-img {
        height: 180px;
    }

    .view-all-row {
        padding: 20px 64px 0;
    }

    /* ── Promo ── */
    .promo-img-wrap {
        min-height: 460px;
    }

    .promo-body {
        padding: 60px 72px 60px 64px;
    }

    .promo-eyebrow {
        font-size: 11px;
    }

    .promo-body h2 {
        font-size: 42px;
    }

    .promo-body p {
        font-size: 16px;
    }

    /* ── Testimonials ── */

    .quote-text {
        font-size: 22px;
    }

    .quote-mark {
        font-size: 64px;
    }

    /* ── Journal ── */

    .journal-card-img {
        height: 200px;
    }

    /* ── Map ── */

    .map-desc {
        padding: 0 64px 30px;
    }

    .map-container {
        height: 500px;
    }

    .faq-question {
        font-size: 20px;
    }
}

/* ════════════════════════════════
       WIDE DESKTOP  (1280px +)
    ════════════════════════════════ */
@media (min-width: 1280px) {
    .img-logo {
        height: 75px;
    }

    nav {
        padding: 0 80px;
    }

    .footer-inner {
        padding: 0 80px;
    }

    .footer-accordion {
        padding: 0 80px;
    }

    .footer-divider {
        margin: 0 80px 32px;
    }

    /* .footer-stay,
    .footer-contact {
        padding: 0 80px;
    } */
    .footer-socials {
        padding: 0;
    }

    /* ════════════════════════════════
       HOME PAGE
    ════════════════════════════════ */

    .rooms-strip {
        gap: 35px;
    }

    .welcome-heading {
        padding: 0 80px 36px;
    }

    .m-img-full {
        height: 427.5px;
    }

    .view-all-row {
        padding: 22px 80px 0;
    }

    .promo-body {
        padding: 72px 88px 72px 80px;
    }

    .promo-body h2 {
        font-size: 48px;
    }

    .map-desc {
        padding: 0 80px 36px;
    }

    .map-container {
        height: 560px;
    }
}

/* ════════════════════════════════
      HOTELBOOK PAGE
    ════════════════════════════════ */

/* FILTER TABS */
.filter-bar {
    display: flex;
    padding: 20px 16px;
    background: var(--white);
}

.filter-tab {
    padding: 7px 22px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-mid);
    border: 1px solid var(--border1);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 12px;
}

.filter-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    z-index: 1;
}

@media (min-width: 768px) {

    /* ── Filter bar ── */
    .filter-bar {
        padding: 18px 40px;
    }

    .filter-tab {
        padding: 9px 32px;
        font-size: 13px;
        margin-left: 20px;
    }
}

@media (min-width: 1024px) {

    /* ── Filter bar ── */
    .filter-bar {
        padding: 22px 60px;
        justify-content: flex-start;
        gap: 0;
    }

    .filter-tab {
        padding: 10px 38px;
        font-size: 13px;
    }
}