/* ================================================================
   PC HOSPITALITY — style.css
   ================================================================
   FONTS
     Manrope       -> all body text, UI labels, nav, buttons, tags
     Larken        -> all headings (h1-h6, .hero-title,
                     .section-title, .card-two-card__title, .card-one__name)

   STRUCTURE — each section has base styles + its own @media rules:
   ─────────────────────────────────────────────────────────────
   [GLOBAL]
     1.  CSS Variables
     2.  Global Reset & Base
     3.  Shared Section Components

   [SIDE MENU]
     4.  Side Overlay
     5.  Side Menu Panel

   [HEADER]
     6.  Site Header Wrapper
     7.  Top Bar (3-col Grid)
     8.  Top Bar — Left (Hamburger + Search)
     9.  Top Bar — Center (Logo)
     10. Top Bar — Right (Privilege Club + Book Now)
     11. Mobile Second Row
     12. Header Divider
     13. Desktop Navigation
         ↳ Header Responsive

   [BOOKING SECTION]
     14. Booking Section
         ↳ Booking Responsive

   [HERO SECTION]
     15. Hero Section
         ↳ Hero Responsive

   [OUR card-two SECTION]
     16. card-two Section Wrapper + Breadcrumb
     17. card-two Carousel Wrapper
     18. card-two Cards
     19. Carousel Navigation
         ↳ card-two Responsivesection-line

   [OUR HOTELS & RESORTS SECTION]
     20. Hotels Section Wrapper
     21. Hotels Search Bar
     22. Hotels Grid Wrapper + Fade Overlay
     23. Hotel Cards
         ↳ Hotels Responsive
   ================================================================ */


/* ════════════════════════════════════════════════════════════════
   GLOBAL
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   1. CSS VARIABLES
   ──────────────────────────────────────────────────────────────── */

.section-label-wrap {
    width: 100%;
}

.section-line {
    width: 80px;
    height: 2px;
    background: var(--wedding-gold);
    flex-shrink: 0;
}

.section-label {
    color: var(--wedding-heading);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
}


/* .section-title {
    color: var(--wedding-heading);
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
} */

.section-label-light {
    color: var(--wedding-white);
}

.section-title-light {
    color: var(--wedding-white);
}

:root {
    /* Colors */
    /* wed */
    --wedding-bg-cream: #f6f0ea;
    --wedding-gold: #b58216;
    --wedding-gold-dark: #9c7a35;
    --wedding-heading: #002A34;
    --wedding-dark: #313131;
    --wedding-muted: #7a7a7a;
    --wedding-white: #ffffff;
    /* wed */
    --clr-bg: #252422;
    --clr-bg-input: #2d2b29;
    --clr-border-dark: #3d3b38;
    /* --clr-gold: #B88525; */
    --clr-gold: #AC956D;
    /* --clr-gold-hover: #9e7120; */
    --clr-gold-hover: #8a7653;
    --clr-cream: #f0ece4;
    --clr-cream-border: #d6d0c4;
    --clr-text-light: #f0ece4;
    --clr-text-muted: #9a9690;
    /* --clr-heading: #002A34; */
    --clr-heading: #221E1f;
    --clr-body: #4a4642;
    /* --clr-label: #002A34; */
    --clr-label: #221E1F;
    --clr-tag-bg: #f5f0e8;
    --clr-tag-border: #c9973a;
    --clr-tag-text: #7a6030;
    --clr-sidemenu-bg: #ffffff;
    --clr-sidemenu-link: #2a2724;
    --clr-sidemenu-div: #e0ddd8;
    --clr-card-inside: #F0DCB7;
    --clr-dark: #313131;
    /* --line-color: #b58216; */
    --line-color: #AC956D;
    /* Fonts */
    --font-ui: 'Manrope', 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Larken', Georgia, 'Times New Roman', serif;
    /* Sizing */
    --header-h: 64px;
    --nav-h: 48px;
    --logo-h: 52px;
    --logo-h-mob: 42px;
    --sidemenu-w: 300px;
    --px: 52px;
    --px-mob: 20px;
    /* Transitions */
    --t: 0.2s ease;
    --t-mid: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Manrope - variable font for UI text */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}


/* Larken - heading font */

@font-face {
    font-family: 'Larken';
    src: url('../fonts/Larken_Font/Larken-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Larken';
    src: url('../fonts/Larken_Font/Larken-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* ────────────────────────────────────────────────────────────────
   2. GLOBAL RESET & BASE
   ──────────────────────────────────────────────────────────────── */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background-color: var(--clr-cream);
    overflow-x: hidden;
    color: var(--clr-text-light);
}

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

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


/* All heading tags use Larken */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

body.no-scroll {
    overflow: hidden;
}


/* ────────────────────────────────────────────────────────────────
   3. SHARED SECTION COMPONENTS
   Used across card-two + Hotels sections
   ──────────────────────────────────────────────────────────────── */

.section-heading {
    text-align: center;
    padding: 0 24px 0px;
    /* max-width: 1250px; */
    margin: 0 auto;
}

.section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-label-line {
    display: block;
    width: 52px;
    height: 1.5px;
    background: var(--line-color) !important;
    flex-shrink: 0;
}

.section-label-text {
    font-family: var(--font-ui);
    font-size: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--clr-label);
    white-space: wrap;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 650px;
    margin: 12px auto;
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 400;
    color: var(--clr-label);
    line-height: 1.6;
}


/* Target the specific input or use a global utility */

.form-control::placeholder {
    color: #fff !important;
    /* Pure white or slightly transparent */
    opacity: 1;
    /* Firefox requires this to show the full color */
}


/* Side Menu Links */


/* ════════════════════════════════════════════════════════════════
   SIDE MENU
   ════════════════════════════════════════════════════════════════ */


/* Custom Gold Styling */

.btn-gold {
    background-color: var(--clr-gold);
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--clr-gold-hover);
    transform: translateY(-1px);
}

.border-gold {
    border-color: var(--clr-gold) !important;
}


/* Side Menu Links */

.side-link {
    color: var(--side-links-clr) !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 12px 24px !important;
    transition: 0.3s;
    color: var(--clr-heading) !important;
}

.side-link:hover {
    color: var(--clr-gold) !important;
    padding-left: 30px !important;
}

.dot-indicator {
    width: 7px;
    height: 7px;
    background: #666;
    border-radius: 50%;
}


/* Create the gold separator after every 5th link */

#sideMenu .side-link:nth-child(5n) {
    position: relative;
    /* Add bottom margin to make room for the line */
    margin-bottom: 20px;
}

#sideMenu .side-link:nth-child(5n)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* Positions the line between links */
    left: 24px;
    /* Matches your side-link padding */
    right: 24px;
    /* Matches your side-link padding */
    height: 1px;
    background-color: var(--clr-gold);
    opacity: 1;
}


/* Optional: Remove the line from the very last item if it's a multiple of 5 */

.side-link:last-child::after {
    display: none;
}


/* Desktop Nav Hover Line */

.navbar-nav .nav-link {
    position: relative;
    letter-spacing: 0.12em;
    font-size: 14px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-gold);
    transform: scaleX(0);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}


/* Sidebar Sub-menu links */


/* 1. Header & Back Button Scaling */

#hotelsOffcanvas .offcanvas-header .btn {
    font-size: 11px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    color: var(--clr-heading);
}


/* #hotelsOffcanvas .offcanvas-header .btn:hover {
    color: var(--clr-gold) !important;
} */

#hotelsOffcanvas h6 {
    /* font-size: 12px;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
    color: var(--clr-heading) */
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
    color: var(--clr-heading);
    font-weight: 800;
}

.city-group {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.city-group:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background-color: var(--clr-gold);
}

#hotelsOffcanvas .side-link {
    color: var(--clr-heading) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
}

#hotelsOffcanvas .side-link:hover {
    color: var(--clr-gold) !important;
}


/* Mega Menu Background */


/* Glassmorphism Panel */

.glass-panel {
    background: linear-gradient( 135deg, rgba(45, 45, 45, 0.9) 0%, rgba(25, 25, 25, 0.85) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


/* Mega Menu Link Styling */

.mega-menu-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: block;
}

.mega-menu-link:hover {
    color: #fff;
    transform: translateX(5px);
}


/* Gold Button Branding */

.btn-gold:hover {
    background-color: (--clr-gold-hover);
}


/* Tracking utility for headers */

.tracking-widest {
    letter-spacing: 0.15em;
}


/* Remove default dropdown arrow for cleaner look */

.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu:not(.glass-panel) {
        display: block;
        margin-top: 0;
    }
}

.dropdown-toggle-split {
    background: transparent;
    border: none;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.dropdown-toggle-split:hover {
    opacity: 1;
}


/* Prevent gap between nav and dropdown panel */

.navbar-nav .nav-item.dropdown .dropdown-menu {
    margin-top: 0 !important;
}

.navbar-nav .nav-item.dropdown.is-closing .dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mega-menu-masonry {
    column-count: 4;
    column-gap: 2rem;
}

@media (max-width: 1200px) {
    .mega-menu-masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .mega-menu-masonry {
        column-count: 2;
    }
}

.mega-menu-col {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
}

.nav-btn {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    padding: 12px 0px 12px 0px;
}


/* ════════════════════════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   14. BOOKING SECTION — wrapper + card
   ──────────────────────────────────────────────────────────────── */


/* ── Section background ── */

.booking-section {
    background: var(--clr-cream);
}


/* ── Card border & shadow tweak ── */

.booking-card {
    border: 1px solid var(--clr-cream-border) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}


/* Allow flex children to shrink below content size */

.booking-field {
    min-width: 0;
}


/* ── Field labels ── */

.booking-field__label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--clr-label);
    white-space: nowrap;
}


/* ── Trigger button ── */

.booking-field__trigger {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--clr-cream-border);
    border-radius: 6px;
    color: #1a1816;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 400;
    padding: 11px 32px 11px 34px;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--t);
    appearance: none;
    position: relative;
    min-width: 0;
}

.booking-field__trigger--no-icon {
    padding-left: 14px !important;
}

.booking-field__trigger:focus,
.booking-field__wrap.is-open .booking-field__trigger {
    border-color: var(--clr-gold);
    outline: none;
    box-shadow: none;
}

.booking-field__trigger-text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-field__trigger-text--placeholder {
    color: #9a9690;
}


/* ── Left icon + right chevron (absolute inside position-relative wrap) ── */

.booking-field__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
    z-index: 2;
}

.booking-field__chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: transform .22s ease;
    z-index: 2;
}

.booking-field__wrap.is-open .booking-field__chevron {
    transform: translateY(-50%) rotate(180deg);
}


/* ── Vertical divider (hidden on mobile via d-none d-lg-block) ── */

.booking-divider {
    width: 1px;
    height: 50px;
    background: var(--clr-cream-border);
    flex-shrink: 0;
    align-self: flex-end;
}


/* ── Find Hotel button ── */

.btn-find-hotel {
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 13px 32px;
    cursor: pointer;
    width: 100%;
    /* full-width on mobile */
    transition: background var(--t), transform var(--t);
    align-self: flex-end;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .btn-find-hotel {
        width: auto;
        /* shrink-to-content on tablet+ */
        flex-shrink: 0;
        white-space: nowrap;
        margin-left: 16px;
    }
}

.btn-find-hotel:hover {
    background: var(--clr-gold-hover);
    transform: translateY(-1px);
}

.btn-find-hotel:disabled,
.btn-find-hotel.is-loading {
    cursor: not-allowed;
    opacity: .85;
}

.btn-find-hotel.is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-find-hotel__spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: btn-find-hotel-spin .6s linear infinite;
}

@keyframes btn-find-hotel-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ════════════════════════════════
           DROPDOWN PANELS
           ════════════════════════════════ */

.bk-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1.5px solid var(--clr-cream-border);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    z-index: 500;
    overflow: hidden;
    animation: bkPanelIn .18s ease;
}

.bk-panel.is-open {
    display: block;
}

@keyframes bkPanelIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* City list */

.bk-panel--list {
    padding: 6px 0;
    min-width: 200px;
}

.bk-panel__option {
    display: block;
    width: 100%;
    padding: 12px 18px;
    text-align: left;
    background: transparent;
    border: none;
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: #1a1816;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.bk-panel__option:hover {
    background: var(--clr-cream);
}

.dropdown-item:active,
.dropdown-item:focus {
    background: var(--clr-cream) !important;
}

.global-search-results .dropdown-item {
    font-size: 13px;
    line-height: 1.35;
}

.global-search-results .dropdown-item .fw-bold,
.global-search-results .dropdown-item .fs-6 {
    font-size: 13px !important;
    line-height: 1.35;
}

.global-search-results .dropdown-item .small {
    font-size: 12px;
    line-height: 1.35;
}

.bk-panel__option--selected {
    background: var(--clr-cream);
    color: var(--clr-gold);
    font-weight: 600;
}


/* Dates panel */

.bk-panel--dates {
    padding: 20px 18px 16px;
    min-width: 350px;
}

.bk-panel--dates .flatpickr-calendar.inline {
    margin: 0 auto;
    box-shadow: none;
    border: none;
}

.bk-dates-field__label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clr-label);
}

.bk-dates-field__input {
    width: 100%;
    border: 1.5px solid var(--clr-cream-border);
    border-radius: 6px;
    padding: 9px 12px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: #1a1816;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color var(--t);
}

.bk-dates-field__input:focus {
    border-color: var(--clr-gold);
}

.bk-dates-sep {
    width: 1px;
    background: var(--clr-cream-border);
    align-self: stretch;
    margin: 0 4px;
}


/* Guests stepper */

.bk-panel--guests {
    padding: 20px 18px 16px;
    min-width: 260px;
}

.bk-stepper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-cream-border);
}

.bk-stepper-row:last-of-type {
    border-bottom: none;
}

.bk-stepper-row__label {
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: #1a1816;
}

.bk-stepper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-stepper__btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-gold);
    background: transparent;
    color: var(--clr-gold);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
    flex-shrink: 0;
}

.bk-stepper__btn:hover {
    background: var(--clr-gold);
    color: #fff;
}

.bk-stepper__btn:disabled {
    border-color: #d0cbc4;
    color: #d0cbc4;
    cursor: not-allowed;
}

.bk-stepper__val {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    color: #1a1816;
    min-width: 18px;
    text-align: center;
}


/* Shared DONE button */

.bk-panel__done {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--t);
}

.bk-panel__done:hover {
    background: var(--clr-gold-hover);
}


/* Mobile panel full-width */

@media (max-width: 767px) {
    .bk-panel {
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
    }
    .bk-panel--dates {
        min-width: 0;
    }
    .bk-panel--guests {
        min-width: 0;
    }
    .bk-dates-sep {
        display: none;
    }
}


/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   15. HERO SECTION-Home-Page
   Full-bleed BG image + bottom-left text overlay
   ──────────────────────────────────────────────────────────────── */

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.png') center top / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 7, 6, 0.70) 0%, rgba(8, 7, 6, 0.26) 42%, transparent 72%);
}

.hero-content {
    position: absolute;
    bottom: 56px;
    /* left: var(--px); */
    z-index: 2;
    max-width: 520px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.18;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.hero-title strong {
    font-weight: 500;
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}


/* ── HERO RESPONSIVE ── */

@media (max-width: 767px) {
    .hero-section {
        height: 480px;
    }
    .hero-bg {
        background-image: url('assets/mobile-hero.png');
        background-position: center;
    }
    .hero-content {
        bottom: 40px;
        left: var(--px-mob);
        right: var(--px-mob);
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.3rem);
    }
    .hero-tagline {
        font-size: 12px;
    }
}


/* Hotel & resorts-hero hero */


/* Custom Hero Height Controls */

.hero-img {
    height: 200px;
    /* Default Mobile */
    transition: height 0.3s ease;
}

@media (min-width: 576px) {
    .hero-img {
        height: 260px;
    }
}

@media (min-width: 768px) {
    .hero-img {
        height: 370px;
    }
}


/* Branding Font */

.hero-text {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Added for better readability on bright images */
    font-size: 3rem;
}


/* ════════════════════════════════════════════════════════════════
   OUR card-two SECTION
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   16. card-two SECTION WRAPPER + BREADCRUMB
   ──────────────────────────────────────────────────────────────── */

.card-two-section {
    background: var(--clr-cream);
    padding: 48px 0 60px;
}


/* ────────────────────────────────────────────────────────────────
   17. card-two CAROUSEL WRAPPER
   ──────────────────────────────────────────────────────────────── */

.card-two-carousel-wrapper {
    padding: 0 var(--px);
    max-width: 1380px;
    margin: 0 auto;
}

.card-two-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.card-two-carousel.owl-carousel .owl-stage {
    display: flex;
}

.card-two-carousel.owl-carousel .owl-item {
    float: none;
    flex: 0 0 auto;
}


/* ────────────────────────────────────────────────────────────────
   18. card-two CARDS
   ──────────────────────────────────────────────────────────────── */

.card-two-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 432px;
    margin: 0 auto;
}

.card-two-card__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.card-two-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-two-card:hover .card-two-card__img {
    transform: scale(1.04);
}

.card-two-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-two-card__title {
    font-family: var(--font-heading);
    font-size: 1.42rem;
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.25;
    margin: 0;
}

.card-two-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-two-card__tag {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-tag-text);
    /* background: var(--clr-tag-bg); */
    background: var(--clr-card-inside);
    ;
    border: 1px solid var(--clr-tag-border);
    border-radius: 4px;
    padding: 4px 11px;
}

.card-two-card__desc {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--clr-heading);
    line-height: 1.5;
    flex: 1;
    /* font-family: var(--font-ui);
    font-size: 15px;
    color: var(--clr-heading);
    line-height: 1.5;
    flex: 1;
    font-weight: 300; */
}

.card-two-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.card-two-card__btn {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 11px 22px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    transition: background var(--t), color var(--t), transform var(--t);
}

.card-two-card__btn--primary {
    background: var(--clr-gold);
    color: #fff;
    border: 2px solid var(--clr-gold);
}

.card-two-card__btn--primary:hover {
    background: var(--clr-gold-hover);
    border-color: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.card-two-card__btn--outline {
    background: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
}

.card-two-card__btn--outline:hover {
    background: var(--clr-gold);
    color: #fff;
    transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────────
   19. CAROUSEL NAVIGATION  (prev/next arrows + dots)
   ──────────────────────────────────────────────────────────────── */

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 0 0;
}

.carousel-nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid var(--clr-gold);
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--t);
}

.carousel-nav__arrow img {
    width: 20px;
    height: 20px;
}

.carousel-nav__arrow:hover {
    background: var(--clr-gold);
}

.carousel-nav__arrow:hover img {
    filter: brightness(10);
}

.flip-x {
    transform: scaleX(-1);
}

.carousel-nav__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--t), transform var(--t);
}

.carousel-dot--active {
    background: var(--clr-gold);
    transform: scale(1.25);
}


/* ── card-two RESPONSIVE ── */

@media (max-width: 767px) {
    .card-two-section {
        padding: 32px 0 48px;
    }
    .card-two-breadcrumb {
        padding: 0 var(--px-mob) 18px;
    }
    .card-two-carousel-wrapper {
        padding: 0 var(--px-mob);
    }
    .card-two-card__actions {
        flex-wrap: wrap;
    }
    .card-two-card__btn {
        flex: 1;
        text-align: center;
    }
    .carousel-nav {
        padding: 24px 0 0;
    }
}


/* ════════════════════════════════════════════════════════════════
   OUR HOTELS & RESORTS SECTION
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   20. HOTELS SECTION WRAPPER
   ──────────────────────────────────────────────────────────────── */

.hotels-section {
    padding: 60px var(--px) 0;
}


/* ────────────────────────────────────────────────────────────────
   21. HOTELS SEARCH BAR
   Desktop: [City] [Brand] [SEARCH btn] — one row
   Mobile: stacked, full-width button
   ──────────────────────────────────────────────────────────────── */

.hotels-search-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 52px;
}

.hotels-search-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotels-search-field__label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-label);
    letter-spacing: 0.02em;
}

.hotels-search-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hotels-search-field__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    z-index: 1;
    pointer-events: none;
}

.hotels-search-field__chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    z-index: 1;
    pointer-events: none;
}

.hotels-search-field__select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1.5px solid var(--clr-cream-border);
    border-radius: 6px;
    color: #1a1816;
    font-family: var(--font-ui);
    font-size: 13.5px;
    padding: 13px 40px 13px 38px;
    outline: none;
    cursor: pointer;
    transition: border-color var(--t);
}

.hotels-search-field__select:focus {
    border-color: var(--clr-gold);
}

.hotels-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background var(--t), transform var(--t);
}

.hotels-search-btn:hover {
    background: var(--clr-gold-hover);
    transform: translateY(-1px);
}

.hotels-search-btn__icon {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}


/* ────────────────────────────────────────────────────────────────
   22. HOTELS GRID WRAPPER + FADE OVERLAY
   Bootstrap .row.g-4 handles 3-col grid
   Fade covers bottom 2 rows; View More btn in overlay centre
   ──────────────────────────────────────────────────────────────── */

.card-one-grid-wrapper {
    position: relative;
}

.card-one-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.card-one-view-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 1) 100%) !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 36px;
}

.card-one-view-more-btn {
    display: inline-block;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 16px 56px;
    transition: background var(--t), transform var(--t);
}

.card-one-view-more-btn:hover {
    background: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────────
   23. HOTEL CARDS
   ──────────────────────────────────────────────────────────────── */

.card-one {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 405px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgb(0 0 0 / 14%);
    transition: box-shadow var(--t), transform var(--t);
}

.card-one:hover {
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12); */
    transform: translateY(-2px);
}
.card-hotel-carousel.owl-carousel:not(.owl-loaded) {
    display: flex;
}

.card-hotel-carousel.owl-carousel .owl-item {
    display: flex;
}

.card-hotel-carousel__item {
    display: flex;
}

.card-hotel-carousel__item .card-one {
    width: 100%;
}

.card-hotel-carousel-wrapper .card-hotel-carousel__nav {
    display: none;
}

@media (max-width: 1199px) {
    .card-hotel-carousel-wrapper {
        max-width: 1080px;
    }
}

@media (max-width: 991px) {
    .card-hotel-carousel-wrapper {
        max-width: 780px;
    }
}

@media (max-width: 767px) {
    .card-hotel-carousel-wrapper {
        max-width: none;
    }
    .card-hotel-carousel-wrapper .card-hotel-carousel__nav:not(.d-none) {
        display: flex;
        justify-content: center;
        gap: 18px;
    }
    .card-hotel-carousel-wrapper .card-two-dots {
        flex: 0 1 auto;
        justify-content: center;
        gap: 8px;
        min-width: 0;
    }
    .card-hotel-carousel-wrapper .carousel-dot {
        width: 8px;
        height: 8px;
    }
}
.card-one__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.card-one__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-one:hover .card-one__img {
    transform: scale(1.04);
}

.card-one__city-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 5px 10px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2a2724;
}

.card-one__city-icon {
    width: 12px;
    height: 12px;
}

.card-one__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card-one__name-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-one__brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border: 1px solid var(--clr-cream-border);
    border-radius: 4px;
    padding: 4px;
    background: #fff;
    flex-shrink: 0;
}

.card-one__name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.2;
    margin: 0;
}

.card-one__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-one__tag {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-tag-text);
    /* background: var(--clr-tag-bg); */
    background: var(--clr-card-inside);
    border: 1px solid var(--clr-tag-border);
    border-radius: 4px;
    padding: 4px 11px;
}

.card-one__desc {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--clr-heading);
    line-height: 1.5;
    flex: 1;
    font-weight: 300;
}

.card-one__rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.card-one__star {
    width: 16px;
    height: 16px;
}

.card-one__rating-text {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-body);
    margin-left: 4px;
}

.card-one__reviews {
    color: var(--clr-gold);
    transition: color var(--t);
}

.card-one__reviews:hover {
    color: var(--clr-gold-hover);
}

.card-one__price-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-one__price-label {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--clr-label);
}

.card-one__price {
    font-family: var(--font-ui);
    font-size: 21px;
    color: var(--clr-heading);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.card-one__price strong {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--clr-heading);
}

.card-one__price-unit {
    font-size: 11px;
    color: var(--clr-label);
    font-weight: 400;
}

.card-one__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.card-one__btn {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 11px 20px;
    /* new line */
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    transition: background var(--t), color var(--t), transform var(--t);
}

.card-one__btn--primary {
    background: var(--clr-gold);
    color: #fff;
    border: 2px solid var(--clr-gold);
}

.card-one__btn--primary:hover {
    background: var(--clr-gold-hover);
    border-color: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.card-one__btn--outline {
    background: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
}

.card-one__btn--outline:hover {
    background: var(--clr-gold);
    color: #fff;
    transform: translateY(-1px);
}

.card-one__btn--disabled {
    background: #ccc;
    color: #666;
    border: 2px solid #ccc;
    cursor: not-allowed;
}

.card-one__btn--disabled:hover {
    background: #ccc;
    color: #666;
    transform: none;
}

.bw-results-notice {
    font-size: 14px;
    color: #b8860b;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 20px;
}


/* ── HOTELS RESPONSIVE ── */

@media (max-width: 991px) {
    .hotels-section {
        padding: 48px 20px 0;
    }
    .hotels-search-bar {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .hotels-section {
        padding: 36px var(--px-mob) 0;
    }
    .hotels-search-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        max-width: 100%;
        margin-bottom: 32px;
    }
    .hotels-search-btn {
        width: 100%;
        padding: 14px;
    }
    .card-one-grid {
        padding-bottom: 180px;
    }
    .card-one-view-more-overlay {
        height: 320px;
    }
    .card-one-view-more-btn {
        width: calc(100% - 40px);
        text-align: center;
        padding: 15px 24px;
    }
    .card-one__actions {
        flex-wrap: wrap;
    }
    .card-one__btn {
        flex: 1;
        text-align: center;
    }
}


/* full carousel */


/* Carousel wrapper — arrows flank the owl track */

.hotel-facilities__carousel-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hotel-facilities__carousel {
    flex: 1;
    min-width: 0;
}
.hotel-facilities--single .facilitiesCarousel .owl-stage {
    display: flex;
    justify-content: center;
    width: 100% !important;
}

.hotel-facilities--single .facilitiesCarousel .owl-item {
    float: none;
    width: 100% !important;
}

@media (min-width: 576px) {
    .hotel-facilities--single .facilitiesCarousel .owl-item {
        width: calc((100% - 10px) / 2) !important;
    }
}

@media (min-width: 992px) {
    .hotel-facilities--single .facilitiesCarousel .owl-item {
        width: calc((100% - 20px) / 3) !important;
    }
}

/* Facility card */

.facility-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

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

.facility-card__img {
    width: 100%;
    /* height: 300px; */
    display: block;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-card__img {
    transform: scale(1.04);
}

.facility-card__body {
    padding: 18px 4px 20px;
}

.facility-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-body);
    margin: 0 0 8px;
}

.facility-card__desc {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--clr-body);
    line-height: 1.65;
    margin: 0;
}


/* Facilities-specific arrow tweak (inherits .reviews-arrow base styles) */

.facilities-arrow {
    flex-shrink: 0;
}


/* Hide default owl nav/dots — we use custom arrows */

.hotel-facilities__carousel .owl-nav,
.hotel-facilities__carousel .owl-dots {
    display: none;
}


/* Tablet */

@media (min-width: 768px) and (max-width: 1199px) {
    .hotel-facilities-section {
        padding: 52px 0 60px;
    }
    .hotel-facilities__inner {
        padding: 0 32px;
    }
    .hotel-facilities__carousel-wrap {
        gap: 14px;
    }
    .facility-card__img {
        height: 260px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .hotel-facilities-section {
        padding: 44px 0 52px;
    }
    .hotel-facilities__inner {
        padding: 0 var(--px-mob);
    }
    .hotel-facilities__heading {
        padding-bottom: 32px;
    }
    .hotel-facilities__carousel-wrap {
        gap: 12px;
    }
    .facility-card__img {
        height: 220px;
    }
    .facilities-arrow {
        width: 38px;
        height: 38px;
    }
    .facilities-arrow img {
        width: 16px;
        height: 16px;
    }
}


/* Odd items (1st, 3rd, 5th Card) - Full Height */

.owl-item:nth-child(odd) .facility-card__img {
    /* height: 500px; */
}


/* Even items (2nd, 4th, 6th Card) - Half Height */

.owl-item:nth-child(even) .facility-card__img {
    /* height: 250px; */
}


/* 4. Responsive adjustment for Mobile (≤ 767px) */

@media (max-width: 767px) {
    /* Make them uniform on mobile so they don't look too small */
    .owl-item:nth-child(odd) .facility-card__img,
    .owl-item:nth-child(even) .facility-card__img {
        /* height: 300px; */
    }
}


/* ════════════════════════════════════════════════════════════════
   RESTAURANTS & DINING SECTION
   Base styles + media queries for this section only.
   Keep this block self-contained for reuse on future pages.
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   24. RESTAURANTS SECTION WRAPPER
   ──────────────────────────────────────────────────────────────── */

.restaurants-section {
    padding: 24px 0 0;
    background: var(--clr-page-bg);
    overflow: hidden;
}

.restaurants-section__heading {
    margin-top: 20px;
}

.restaurants-section .section-label-row {
    gap: 18px;
    margin-bottom: 12px;
}

.restaurants-section .section-label-line {
    width: 60px;
    height: 1px;
    background: var(--clr-gold);
}


/* .restaurants-section .section-label-text {
    color: var(--clr-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.restaurants-section .section-title {
    margin-bottom: 0;
    color: var(--clr-heading);
    font-size: 55px;
    line-height: .95;
} */


/* ────────────────────────────────────────────────────────────────
   25. RESTAURANTS TABS / NAVIGATION
   ──────────────────────────────────────────────────────────────── */

.restaurants-tabs-wrap {
    max-width: 1370px;
    margin: 0 auto 42px;
    padding: 0 0px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 24px;
}

.restaurants-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    min-width: 0;
}

.restaurants-tab {
    border: 0;
    background: transparent;
    padding: 0;
    min-height: 44px;
    color: rgba(77, 72, 66, .36);
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--t), border-color var(--t), background var(--t);
    white-space: nowrap;
}

.restaurants-tab.is-active {
    min-width: 228px;
    padding: 0 34px;
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    color: var(--clr-gold);
    font-weight: 500;
}

.restaurants-tabs__arrow {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.restaurants-tabs__arrow img {
    width: 20px;
    height: 20px;
    display: block;
}


/* ────────────────────────────────────────────────────────────────
   26. RESTAURANTS STAGE / CARDS
   ──────────────────────────────────────────────────────────────── */


/* ────────────────────────────────────────────────────────────────
   26. RESTAURANTS STAGE / CARDS
   ──────────────────────────────────────────────────────────────── */


/* Swiper tab rail keeps the gold active frame fixed in the center. */

.restaurants-tabs-shell {
    --restaurants-frame-width: 154px;
    --restaurants-frame-height: 48px;
    max-width: min(100%, 980px);
    min-width: 0;
}

.restaurants-tabs-swiper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 18px 0;
}

.restaurants-tabs-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-property: transform;
    box-sizing: content-box;
}

.restaurants-tabs-swiper:not(.swiper-initialized) .swiper-wrapper {
    justify-content: center;
    gap: 48px;
}

.restaurants-tab-slide {
    width: auto;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.restaurants-tab-btn {
    min-height: var(--restaurants-frame-height);
    max-width: min(320px, 70vw);
    padding: 0 30px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: rgba(77, 72, 66, .45);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .25s ease;
}

.restaurants-tab-btn.active {
    color: var(--clr-gold);
    font-weight: 700;
}

.restaurants-tab-btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(184, 133, 37, .2);
}

.restaurants-tabs-active-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: min(var(--restaurants-frame-width), calc(100% - 8px));
    height: var(--restaurants-frame-height);
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease;
}

@media (max-width: 767px) {
    .restaurants-tabs-shell {
        --restaurants-frame-height: 46px;
        max-width: calc(100vw - 112px);
    }
    .restaurants-tabs-swiper {
        padding: 14px 0;
    }
    .restaurants-tabs-swiper:not(.swiper-initialized) .swiper-wrapper {
        justify-content: flex-start;
        gap: 28px;
    }
    .restaurants-tab-btn {
        max-width: calc(100vw - 142px);
        padding: 0 20px;
        font-size: 12px;
    }
}

#restaurantsSliderWrapper {
    position: relative;
    isolation: isolate;
}

#restaurantsSliderWrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--restaurants-bg-next);
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease-in-out;
}

#restaurantsSliderWrapper.is-bg-transitioning::before {
    opacity: 1;
}

#restaurantsSliderWrapper>* {
    position: relative;
    z-index: 1;
}

.restaurants-stage {
    position: relative;
    min-height: 548px;
    overflow: hidden;
}

.restaurants-stage__bg {
    width: 100%;
    height: 548px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.restaurants-stage__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, .26);
    pointer-events: none;
}

.restaurants-card {
    position: absolute;
    color: #fff;
}

.restaurants-card--active {
    top: 112px;
    left: 50%;
    transform: translateX(-47%);
    width: 621px;
    max-height: 344px;
    padding: 34px 58px 40px;
    background: rgba(55, 55, 55, .58);
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.restaurants-card__active-icon {
    display: none;
    width: 74px;
    height: auto;
    margin: 0 auto 18px;
}

.restaurants-card__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.restaurants-card__title-line,
.restaurants-card__preview-line {
    width: 118px;
    height: 1px;
    background: rgba(255, 255, 255, .88);
    flex: 0 0 auto;
}

.restaurants-card__script {
    width: 186px;
    height: auto;
    display: block;
}

.restaurants-card__heading {
    display: none;
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    line-height: .95;
    font-weight: 400;
}

.restaurants-card__heading--visible {
    display: block;
}

.restaurants-card__desc {
    max-width: 560px;
    margin: 0 auto 34px;
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .97);
}

.restaurants-card__btn {
    min-width: 165px;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 3px;
    background: #fff;
    color: var(--clr-gold);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.restaurants-card--preview {
    top: 120px;
    right: -112px;
    width: 521px;
    max-height: 461px;
    padding: 15px 0 39px 0px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    text-align: center;
    z-index: 1;
}

.restaurants-card__preview-icon {
    width: 82px;
    height: auto;
    margin: 0 auto 28px;
    display: block;
}

.restaurants-card__preview-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.restaurants-card__preview-title {
    margin: 0;
    color: rgba(255, 255, 255, .96);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .36em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.restaurants-card__preview-desc {
    max-width: 320px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.52;
}

.restaurants-card__btn--preview {
    min-width: 158px;
    min-height: 48px;
    font-size: 12px;
}

@media (max-width: 1399px) {
    .restaurants-tabs-wrap {
        padding: 0 40px;
    }
    .restaurants-tabs {
        gap: 34px;
    }
    .restaurants-tab {
        font-size: 15px;
    }
    .restaurants-tab.is-active {
        min-width: 210px;
    }
    .restaurants-card--active {
        transform: translateX(-45%);
        width: 640px;
    }
    .restaurants-card--preview {
        right: -150px;
        width: 500px;
        padding-left: 102px;
    }
}

@media (max-width: 1199px) {
    .restaurants-tabs-wrap {
        padding: 0 22px;
        margin-bottom: 34px;
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 12px;
    }
    .restaurants-tabs {
        gap: 24px;
    }
    .restaurants-tab {
        font-size: 14px;
        letter-spacing: .13em;
    }
    .restaurants-tab.is-active {
        min-width: 180px;
        padding: 0 20px;
    }
    .restaurants-stage,
    .restaurants-stage__bg {
        height: 500px;
        min-height: 500px;
    }
    .restaurants-card--active {
        top: 90px;
        width: 560px;
        min-height: 290px;
        padding: 40px 34px 28px;
    }
    .restaurants-card__title-line,
    .restaurants-card__preview-line {
        width: 72px;
    }
    .restaurants-card__script {
        width: 150px;
    }
    .restaurants-card__heading {
        font-size: 3rem;
    }
    .restaurants-card__desc {
        font-size: 15px;
        max-width: 440px;
    }
    .restaurants-card__btn {
        min-width: 150px;
        min-height: 48px;
        font-size: 13px;
    }
    .restaurants-card--preview {
        top: 76px;
        right: -180px;
        width: 430px;
        min-height: 348px;
        padding: 50px 24px 30px 82px;
    }
    .restaurants-card__preview-icon {
        width: 64px;
        margin-bottom: 20px;
    }
    .restaurants-card__preview-title {
        font-size: 13px;
        letter-spacing: .24em;
    }
    .restaurants-card__preview-desc {
        max-width: 250px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .restaurants-section {
        padding-top: 2px;
    }
    .restaurants-section__heading {
        margin-bottom: 28px;
        padding: 0 12px;
        margin-top: 39px;
    }
    .restaurants-section .section-label-row {
        gap: 10px;
        margin-bottom: 12px;
    }
    .restaurants-section .section-label-line {
        width: 58px;
    }
    .restaurants-section .section-label-text {
        font-size: 11px;
        letter-spacing: .30em;
    }
    .restaurants-section .section-title {
        font-size: 2.6rem;
        line-height: .98;
    }
    .restaurants-tabs-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0 12px;
        margin-bottom: 20px;
    }
    .restaurants-tabs {
        flex: 1;
        justify-content: flex-start;
        gap: 28px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .restaurants-tabs::-webkit-scrollbar {
        display: none;
    }
    .restaurants-tabs__arrow {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }
    .restaurants-tabs__arrow img {
        width: 22px;
        height: 22px;
    }
    .restaurants-tab {
        font-size: 12px;
        letter-spacing: .16em;
        min-height: 34px;
        flex: 0 0 auto;
    }
    .restaurants-tab.is-active {
        min-width: 140px;
        min-height: 38px;
        padding: 0 16px;
    }
    .restaurants-stage,
    .restaurants-stage__bg {
        height: 474px;
        min-height: 474px;
    }
    .restaurants-stage__bg {
        object-position: 42% center;
    }
    .restaurants-card--active {
        top: 72px;
        left: 14px;
        right: 14px;
        transform: none;
        width: auto;
        min-height: 236px;
        padding: 34px 22px 26px;
        border-radius: 8px;
    }
    .restaurants-card__active-icon {
        width: 58px;
        margin-bottom: 12px;
    }
    .restaurants-card__title-row {
        gap: 14px;
        margin-bottom: 18px;
    }
    .restaurants-card__title-line {
        width: 52px;
    }
    .restaurants-card__script {
        width: 132px;
    }
    .restaurants-card__heading {
        font-size: 2rem;
    }
    .restaurants-card__desc {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .restaurants-card__btn {
        min-width: 168px;
        min-height: 52px;
        font-size: 13px;
    }
    .restaurants-card--preview {
        display: none;
    }
}

.restaurants-card--active,
.restaurants-card--preview {
    will-change: opacity, transform;
    transition: opacity 0.55s ease, transform 0.35s ease;
}

.restaurants-card--active.is-animating {
    animation: restaurantsCardSlideFade 0.55s ease;
}

.restaurants-card--preview.is-animating {
    animation: restaurantsCardSlideFade 0.55s ease;
}

@keyframes restaurantsCardSlideFade {
    0% {
        opacity: 0.2;
        animation: restaurantMainInRight 0.55s ease-out;
    }
    100% {
        transition: transform 0.35s ease-in, opacity 0.55 ease;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .restaurants-section {
        padding: 20px 0 0;
    }
    .restaurants-section__heading {
        margin-top: 26px;
    }
    .restaurants-section .section-title {
        font-size: clamp(2.4rem, 5vw, 3.2rem);
    }
    .restaurants-tabs-wrap {
        padding: 0 24px;
        margin-bottom: 28px;
        gap: 14px;
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }
    .restaurants-tabs {
        gap: 36px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
    }
    .restaurants-tabs::-webkit-scrollbar {
        display: none;
    }
    .restaurants-tab {
        font-size: 13px;
        letter-spacing: .13em;
        flex: 0 0 auto;
    }
    .restaurants-tab.is-active {
        min-width: 160px;
        padding: 0 18px;
    }
    .restaurants-stage,
    .restaurants-stage__bg {
        height: 460px;
        min-height: 460px;
    }
    .restaurants-card--active {
        min-height: auto;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: min(86vw, 520px);
        padding: 28px 30px 28px;
    }
    .restaurants-card__title-line,
    .restaurants-card__preview-line {
        width: 60px;
    }
    .restaurants-card__script {
        width: 138px;
    }
    .restaurants-card__heading {
        font-size: 2.6rem;
    }
    .restaurants-card__desc {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .restaurants-card__btn {
        min-width: 144px;
        min-height: 46px;
        font-size: 13px;
    }
    .restaurants-card--preview {
        display: none;
    }
}

.restaurants-tile__content,
.restaurants-tile__logo {
    display: none !important;
}

@media (max-width: 1199px) {
    .card-two-carousel-wrapper {
        max-width: 820px;
    }
    .card-two-card {
        max-width: 100%;
    }
    .card-one-grid {
        max-width: 1080px;
    }
    .card-one {
        max-width: 340px;
    }
}

@media (max-width: 991px) {
    .card-two-carousel-wrapper {
        max-width: 680px;
    }
    .card-two-card {
        max-width: 100%;
    }
    .hotels-search-bar {
        max-width: 720px;
    }
    .card-one-grid {
        max-width: 780px;
    }
    .card-one {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .card-two-carousel-wrapper {
        max-width: none;
    }
    .card-two-card {
        max-width: 100%;
    }
    .hotels-search-bar {
        max-width: none;
    }
    .card-one-grid {
        max-width: none;
    }
    .card-one {
        max-width: 100%;
    }
}


/* ════════════════════════════════════════════════════════════════
   OUR AMENITIES SECTION
   Base styles + media queries for this section only.
   Keep this block self-contained for reuse on future pages.
   ════════════════════════════════════════════════════════════════ */

.amenities-section {
    padding: 24px 0 42px;
    background: var(--clr-cream);
}

.amenities-section__heading {
    /* margin-bottom: 34px; */
    margin-top: 20px;
}

.amenities-section .section-label-row {
    gap: 18px;
    margin-bottom: 12px;
}


/* .amenities-section .section-label-line {
    width: 60px;
    height: 1px;
    background: var(--clr-gold);
} */

.ameneties-card:hover {
    /* transform: scale(1.04); */
    transform: translateY(-2px);
    transition: transform 0.4s ease-in-out;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12); */
}


/* .amenities-tile--image:hover {
    transform: scale(1.04);
} */


/* .amenities-section .section-label-text {
    color: var(--clr-label);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
} */


/* .amenities-section .section-title {
    margin-bottom: 10px;
    color: var(--clr-heading);
    font-size: clamp(2.8rem, 4.4vw, 4rem);
    line-height: .98;
} */

.amenities-section__subtitle {
    margin: 0;
    color: var(--clr-label);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.15;
    text-align: center;
}

.amenities-grid-wrap {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 18px;
}

.amenities-grid {
    /* --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
    row-gap: 18px; */
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
    row-gap: 0px;
}

.amenities-tile {
    position: relative;
    width: 100%;
    min-height: 330px;
    overflow: hidden;
    background: #f2efe9;
}

.amenities-tile__img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    /* transition: transform 0.4s ease; */
}

.amenities-tile--hover {
    cursor: pointer;
}

.amenities-hover-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(117, 121, 126, .96) 0%, rgba(75, 74, 80, .96) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.amenities-tile--hover:hover .amenities-hover-card,
.amenities-tile--hover:focus-within .amenities-hover-card,
.amenities-tile--hover:focus-visible .amenities-hover-card {
    opacity: 1;
    visibility: visible;
}

.amenities-feature {
    height: 100%;
    /* min-height: 330px;
    padding: 62px 38px 34px; */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenities-feature__icon {
    width: 54px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    opacity: .95;
}

.amenities-feature__title-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.amenities-feature__line {
    flex: 1 1 auto;
    max-width: 37px;
    height: 1px;
    background: rgba(255, 255, 255, .75);
}

.amenities-feature__title {
    margin: 0;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.amenities-feature__desc {
    max-width: 286px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .92);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.85;
}

.amenities-feature__btn {
    min-width: 188px;
    margin-bottom: 16px;
    min-height: 44px;
    margin-top: auto;
    /* padding: 0 28px; */
    border-radius: 3px;
    background: #fff;
    color: var(--clr-gold);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .amenities-grid-wrap {
        max-width: 980px;
    }
    .amenities-tile,
    .amenities-tile__img,
    .amenities-feature {
        min-height: 300px;
    }
    .amenities-tile__img {
        height: 300px;
    }
    .amenities-feature {
        padding: 44px 26px 28px;
    }
    .amenities-feature__title-row {
        margin-bottom: 20px;
    }
    .amenities-feature__title {
        font-size: 18px;
        letter-spacing: .2em;
    }
    .amenities-feature__desc {
        max-width: 260px;
        font-size: 13px;
        line-height: 1.7;
    }
    .amenities-feature__btn {
        min-width: 180px;
        min-height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .amenities-section {
        padding: 22px 0 34px;
    }
    .amenities-grid-wrap {
        max-width: 760px;
    }
    .amenities-grid {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px;
        row-gap: 14px;
    }
    .amenities-tile,
    .amenities-tile__img,
    .amenities-feature {
        min-height: 280px;
    }
    .amenities-tile__img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .amenities-section {
        padding: 20px 0 26px;
    }
    .amenities-section__heading {
        margin-bottom: 39px;
        margin-top: 18px;
    }
    .amenities-section .section-label-row {
        gap: 10px;
        margin-bottom: 8px;
    }
    .amenities-section .section-label-line {
        width: 46px;
    }
    .amenities-section .section-label-text {
        font-size: 12px;
        letter-spacing: .28em;
    }
    .amenities-section .section-title {
        font-size: 2.35rem;
        line-height: 1.02;
    }
    .amenities-section__subtitle {
        font-size: 1rem;
    }
    .amenities-grid-wrap {
        padding: 0 24px;
        max-width: 430px;
        margin-top: -25px;
    }
    .amenities-grid {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0px;
        row-gap: 24px;
    }
    .amenities-tile,
    .amenities-tile__img,
    .amenities-feature {
        min-height: 380px;
    }
    .amenities-tile__img {
        height: 380px;
    }
    .amenities-hover-card {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: block;
    }
    .amenities-tile--hover:hover .amenities-hover-card,
    .amenities-tile--hover:focus-within .amenities-hover-card,
    .amenities-tile--hover:focus-visible .amenities-hover-card,
    .amenities-tile--hover.is-active .amenities-hover-card {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .desktop-nav__mega {
        display: none !important;
    }
}


/* ════════════════════════════════════════════════════════════════
   H. OUR BRANDS SECTION
   Base styles + media queries kept in one self-contained block.
   ════════════════════════════════════════════════════════════════ */

.brands-lite-section {
    background: var(--clr-page-bg);
    padding: 0 0 0px;
}

.brands-lite-section__heading {
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 47px;
}

.brands-lite-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 28px 52px 0; */
}

.brands-lite-arrow {
    width: 58px;
    height: 58px;
    border: 1.5px solid var(--clr-gold);
    border-radius: 4px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .2s ease;
}

.brands-lite-arrow img {
    width: 22px;
    height: 22px;
}

.brands-lite-arrow:hover {
    background: var(--clr-gold);
}

.brands-lite-arrow:hover img {
    filter: brightness(10);
}

.brands-lite-viewall {
    min-width: 246px;
    min-height: 54px;
    padding: 0 32px;
    border: 1.5px solid var(--clr-gold);
    border-radius: 4px;
    color: var(--clr-gold);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.brands-lite-viewall:hover {
    background: var(--clr-gold);
    color: #fff;
}

.brands-lite-stage {
    position: relative;
    width: 100%;
    min-height: 620px;
    margin-top: 26px;
    overflow: hidden;
}

.brands-lite-stage__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brands-lite-stage__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .34);
}

.brands-lite-card {
    position: absolute;
    z-index: 2;
}

.brands-lite-card--active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(360px, 38vw, 680px);
    min-height: 404px;
    padding: 52px 54px;
    background: rgba(38, 35, 37, .68);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brands-lite-card__logo {
    width: auto;
    height: 118px;
    object-fit: contain;
    margin-bottom: 22px;
}

.brands-lite-card__title-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}

.brands-lite-card__title-line {
    flex: 1 1 auto;
    max-width: 96px;
    height: 1px;
    background: rgba(255, 255, 255, .72);
}

.brands-lite-card__heading {
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .34em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.brands-lite-card__desc {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.9;
}

.brands-lite-card--preview {
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 430px;
    min-height: 372px;
    border: 1px solid rgba(255, 255, 255, .30);
    background: rgba(205, 216, 234, .12);
    backdrop-filter: blur(2px);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brands-lite-card__preview-logo {
    width: auto;
    height: 108px;
    object-fit: contain;
    opacity: .72;
    margin-bottom: 20px;
}

.brands-lite-card__preview-title-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.brands-lite-card__preview-line {
    flex: 1 1 auto;
    max-width: 86px;
    height: 1px;
    background: rgba(255, 255, 255, .72);
}

.brands-lite-card__preview-title {
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .34em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.brands-lite-card__preview-desc {
    max-width: 290px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-ui);
    font-size: 12px;
    line-height: 1.65;
}

.brands-lite-card--active.is-animating {
    animation: brandsLiteActiveFade .38s ease;
}

.brands-lite-card--preview.is-animating {
    animation: brandsLitePreviewFade .38s ease;
}

@keyframes brandsLiteActiveFade {
    from {
        opacity: .22;
        transform: translate(-50%, -50%) translateX(16px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0);
    }
}

@keyframes brandsLitePreviewFade {
    from {
        opacity: .22;
        transform: translateY(-50%) translateX(16px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@media (max-width: 1199px) {
    .brands-lite-card--active {
        width: min(64vw, 620px);
    }
    .brands-lite-card--preview {
        width: 360px;
    }
}

@media (max-width: 991px) {
    .brands-lite-controls {
        /* padding: 24px 24px 0; */
    }
    .brands-lite-stage {
        min-height: 560px;
    }
    .brands-lite-card--active {
        width: min(72vw, 560px);
        min-height: 360px;
        padding: 40px 34px;
    }
    .brands-lite-card__logo {
        height: 96px;
    }
    .brands-lite-card__desc {
        font-size: 14px;
        line-height: 1.8;
    }
    .brands-lite-card--preview {
        width: 280px;
        min-height: 300px;
        right: -40px;
        padding: 38px 24px;
    }
    .brands-lite-card__preview-logo {
        height: 88px;
    }
}

@media (max-width: 767px) {
    .brands-lite-section {
        padding-bottom: 0px;
    }
    .brands-lite-controls {
        /* padding: 18px 16px 0; */
    }
    .brands-lite-arrow {
        width: 46px;
        height: 46px;
    }
    .brands-lite-arrow img {
        width: 18px;
        height: 18px;
    }
    .brands-lite-viewall {
        min-width: 172px;
        min-height: 46px;
        font-size: 10px;
        padding: 0 18px;
    }
    .brands-lite-stage {
        min-height: 520px;
        margin-top: 20px;
    }
    .brands-lite-card--active {
        width: 90%;
        min-height: auto;
        padding: 30px 22px;
    }
    .brands-lite-card__logo {
        height: 78px;
        margin-bottom: 18px;
    }
    .brands-lite-card__title-row {
        gap: 12px;
        margin-bottom: 18px;
    }
    .brands-lite-card__title-line {
        max-width: 52px;
    }
    .brands-lite-card__heading {
        font-size: 10px;
        letter-spacing: .26em;
    }
    .brands-lite-card__desc {
        font-size: 13px;
        line-height: 1.7;
    }
    .brands-lite-card--preview {
        display: none;
    }
}


/* ════════════════════════════════════════════════════════════════
   TOURS & TRAVEL SECTION  (Section I)
   ════════════════════════════════════════════════════════════════
   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────
   A. Section Wrapper
   B. Heading Block (overrides shared .section-heading padding)
   C. Carousel Outer — positions arrows outside the carousel track
   D. Arrow Buttons  — gold-outlined square, screen-edge anchored
   E. Tour Cards     — image + title (serif) + desc + EXPLORE btn
   ↳ Tours Responsive (tablet ≤ 991px + mobile ≤ 767px)
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   A. SECTION WRAPPER
   Cream background matching the site palette
   ──────────────────────────────────────────────────────────────── */

.tours-section {
    background: var(--clr-cream);
    padding: 60px 0 72px;
}


/* ────────────────────────────────────────────────────────────────
   B. HEADING BLOCK
   Reuses shared .section-heading; just controls bottom spacing
   ──────────────────────────────────────────────────────────────── */

.tours-section .section-heading {
    padding-bottom: 40px;
}


/* ────────────────────────────────────────────────────────────────
   C. CAROUSEL OUTER WRAPPER
   Flex row: [← arrow] [owl track] [→ arrow]
   Arrows sit outside the scrolling track so cards fill full width
   ──────────────────────────────────────────────────────────────── */

.tours-carousel-outer {
    display: flex;
    align-items: center;
    /* vertically centre arrows to image row */
    gap: 0;
    padding: 0 var(--px);
    /* matches site-wide horizontal padding  */
}


/* Owl carousel track fills all space between the two arrows */

.tours-carousel.owl-carousel {
    flex: 1;
    min-width: 0;
}


/* Reset any Owl margin that would break the flex layout */

.tours-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 0;
}


/* ────────────────────────────────────────────────────────────────
   D. ARROW BUTTONS
   Gold-outlined square matching other carousel arrows on the site
   ──────────────────────────────────────────────────────────────── */

.tours-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid var(--clr-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--t, 0.2s ease);
    /* Arrows sit outside the carousel; give them a small margin */
    margin: 0 16px;
}

.tours-arrow img {
    width: 20px;
    height: 20px;
}

.tours-arrow:hover {
    background: var(--clr-gold);
}

.tours-arrow:hover img {
    filter: brightness(10);
    /* turns SVG white on hover */
}


/* ────────────────────────────────────────────────────────────────
   E. TOUR CARDS
   Large landscape image + body below (title / desc / EXPLORE btn)
   ──────────────────────────────────────────────────────────────── */

.tour-card {
    display: flex;
    flex-direction: column;
    /* Cards are full Owl item width — no explicit max-width needed */
}


/* ── Image area ── */

.tour-card__img-wrap {
    width: 100%;
    aspect-ratio: 2.05 / 1;
    /* matches the landscape 651×320 design ratio */
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card__img {
    transform: scale(1.04);
}


/* ── Text body ── */

.tour-card__body {
    padding: 20px 0 0;
    /* no side padding — card fills column width */
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Destination name — Larken serif, dark green */

.tour-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.2;
    margin: 0;
}


/* Duration badge — days / nights */

.tour-card__duration {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-body);
}


/* Description paragraph */

.tour-card__desc {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 400;
    /* color: var(--clr-body); */
    color: var(--clr-label);
    line-height: 1.68;
    margin: 0;
}


/* EXPLORE CTA button — solid gold, uppercase */

.tour-card__btn {
    display: inline-block;
    align-self: flex-start;
    /* don't stretch full width */
    background: var(--clr-gold);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 2px solid var(--clr-gold);
    border-radius: 4px;
    padding: 12px 32px;
    text-decoration: none;
    margin-top: 4px;
    transition: background var(--t, 0.2s ease), transform var(--t, 0.2s ease);
}

.tour-card__btn:hover {
    background: var(--clr-gold-hover);
    border-color: var(--clr-gold-hover);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────────
   TOURS & TRAVEL — RESPONSIVE
   Tablet ≤ 991px  |  Mobile ≤ 767px
   ──────────────────────────────────────────────────────────────── */


/* Tablet: reduce side padding slightly */

@media (max-width: 991px) {
    .tours-section {
        padding: 48px 0 56px;
    }
    .tours-carousel-outer {
        padding: 0 20px;
    }
    .tours-arrow {
        margin: 0 10px;
    }
}


/* Mobile: single-column, full-width card */

@media (max-width: 767px) {
    .tours-section {
        padding: 36px 0 48px;
    }
    /* On mobile tuck heading into section padding */
    .tours-section .section-heading {
        padding-bottom: 28px;
    }
    /* Outer wrapper keeps arrows at edges */
    .tours-carousel-outer {
        padding: 0 16px;
    }
    .tours-arrow {
        width: 36px;
        height: 36px;
        margin: 0 8px;
    }
    /* Slightly taller ratio on mobile for better fill */
    .tour-card__img-wrap {
        aspect-ratio: 16 / 10;
    }
    .tour-card__title {
        font-size: clamp(1.3rem, 6vw, 1.5rem);
    }
    .tour-card__desc {
        font-size: 13px;
    }
    /* EXPLORE button: full width on mobile */
    .tour-card__btn {
        align-self: stretch;
        text-align: center;
    }
}


/* ════════════════════════════════════════════════════════════════
   NEWS & ARTICLES SECTION  (Section J)
   ════════════════════════════════════════════════════════════════
   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────
   A. Section Wrapper
   B. Heading Block
   C. Carousel Outer  (flex: arrow | track | arrow)
   D. Arrow Buttons   (gold-outlined square, screen-edge anchored)
   E. News Cards      (photo + serif headline, no description)
   F. SEE MORE button (centred below carousel, solid gold)
   ↳ News Responsive  (tablet ≤ 991px + mobile ≤ 767px)
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────────
   A. SECTION WRAPPER
   Same cream background as other content sections
   ──────────────────────────────────────────────────────────────── */

.news-section {
    background: var(--clr-cream);
    padding: 64px 0 72px;
}


/* ────────────────────────────────────────────────────────────────
   B. HEADING BLOCK
   Reuses shared .section-heading — only controls bottom spacing
   ──────────────────────────────────────────────────────────────── */

.news-section .section-heading {
    padding-bottom: 44px;
}


/* Title is two lines on desktop matching the design */

.news-section .section-title {
    line-height: 1.15;
}


/* ────────────────────────────────────────────────────────────────
   C. CAROUSEL OUTER WRAPPER
   Flex row: [← arrow] [owl track] [→ arrow]
   Mirrors the same pattern as .tours-carousel-outer
   ──────────────────────────────────────────────────────────────── */

.news-carousel-outer {
    display: flex;
    align-items: center;
    padding: 0 var(--px);
}


/* Owl track fills all space between arrows */

.news-carousel.owl-carousel {
    flex: 1;
    min-width: 0;
}

.news-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}


/* ────────────────────────────────────────────────────────────────
   D. ARROW BUTTONS
   Identical to .tours-arrow — gold-outlined square
   ──────────────────────────────────────────────────────────────── */

.news-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid var(--clr-gold);
    border-radius: 4px;
    cursor: pointer;
    margin: 0 16px;
    transition: background var(--t, 0.2s ease);
}

.news-arrow img {
    width: 20px;
    height: 20px;
}

.news-arrow:hover {
    background: var(--clr-gold);
}

.news-arrow:hover img {
    filter: brightness(10);
}


/* ────────────────────────────────────────────────────────────────
   E. NEWS CARDS
   Photo (3:2 aspect ratio matching 425×280 assets) + serif headline
   No tags, no description — clean editorial look as per design
   ──────────────────────────────────────────────────────────────── */

.news-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Image area — 425:280 ≈ 3:2 */

.news-card__img-wrap {
    width: 100%;
    aspect-ratio: 425 / 280;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.04);
}


/* Headline — Larken serif, dark green, no clamping */

.news-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.35;
    margin: 0;
}


/* ────────────────────────────────────────────────────────────────
   F. SEE MORE BUTTON
   Solid gold, centred below the carousel, wide padding
   ──────────────────────────────────────────────────────────────── */

.news-see-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 48px;
}

.news-see-more-btn {
    display: inline-block;
    background: var(--clr-gold);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    border: 2px solid var(--clr-gold);
    border-radius: 4px;
    padding: 16px 80px;
    text-decoration: none;
    transition: background var(--t, 0.2s ease), transform var(--t, 0.2s ease);
}

.news-see-more-btn:hover {
    background: var(--clr-gold-hover);
    border-color: var(--clr-gold-hover);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────────
   NEWS & ARTICLES — RESPONSIVE
   Tablet ≤ 991px  |  Mobile ≤ 767px
   ──────────────────────────────────────────────────────────────── */


/* Tablet */

@media (max-width: 991px) {
    .news-section {
        padding: 48px 0 56px;
    }
    .news-carousel-outer {
        padding: 0 20px;
    }
    .news-arrow {
        margin: 0 10px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .news-section {
        padding: 36px 0 48px;
    }
    .news-section .section-heading {
        padding-bottom: 28px;
    }
    .news-carousel-outer {
        position: relative;
        padding: 0 16px;
    }
    .news-carousel.owl-carousel {
        width: 100%;
    }
    .news-arrow {
        position: absolute;
        top: -24px;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        margin: 0;
        z-index: 3;
        background: var(--clr-cream);
    }
    .news-card__img {
        height: 30vh;
        margin-top: 20px;
    }
    .news-arrow--prev {
        left: 16px;
    }
    .news-arrow--next {
        right: 16px;
    }
    .news-card {
        gap: 16px;
    }
    .news-card__img-wrap {
        aspect-ratio: auto;
        height: auto;
    }
    .news-card__title {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    /* SEE MORE full-width on mobile */
    .news-see-more-btn {
        width: calc(100% - 32px);
        text-align: center;
        padding: 15px 24px;
    }
    .news-see-more-wrap {
        padding: 32px 16px 0;
    }
}


/* ════════════════════════════════════════════════════════════════
   J. PRIVILEGE CLUB SECTION
   Base styles + media queries are kept in one self-contained block.
   Reusable image + overlapping card section.
   ════════════════════════════════════════════════════════════════ */

.privilege-section {
    background: var(--clr-page-bg);
    padding: 24px 0 52px;
}

.privilege-section__inner {
    max-width: 1388px;
    margin: 0 auto;
    padding: 0 26px;
    position: relative;
}

.privilege-section__image-wrap {
    width: 79%;
}

.privilege-section__image {
    width: 100%;
    height: 518px;
    object-fit: cover;
    display: block;
}

.privilege-card {
    position: absolute;
    top: 108px;
    right: 26px;
    width: min(42%, 600px);
    background: var(--clr-gold);
    border-radius: 8px;
    padding: 34px 40px 32px;
    color: #fff;
}

.privilege-card__title {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.8vw, 2.5rem);
    font-weight: 500;
    line-height: 1.08;
}

.privilege-card__desc {
    margin: 0 0 28px;
    max-width: 500px;
    color: rgba(255, 255, 255, .96);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.7;
}

.privilege-card__btn {
    min-width: 244px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 4px;
    background: #fff;
    color: var(--clr-heading);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease;
}

.privilege-card__btn:hover {
    background: #f6f1e7;
    color: var(--clr-gold);
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .privilege-section__image-wrap {
        width: 75%;
    }
    .privilege-section__image {
        height: 470px;
    }
    .privilege-card {
        top: 96px;
        width: min(44%, 540px);
        padding: 30px 32px;
    }
    .privilege-card__desc {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .privilege-section {
        padding: 18px 0 42px;
    }
    .privilege-section__inner {
        padding: 0 18px;
    }
    .privilege-section__image-wrap {
        width: 100%;
    }
    .privilege-section__image {
        height: 420px;
    }
    .privilege-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: -8px;
        border-radius: 0 0 8px 8px;
        padding: 28px 24px;
    }
    .privilege-card__title {
        font-size: 2.3rem;
    }
}

@media (max-width: 767px) {
    .privilege-section {
        padding: 12px 0 28px;
    }
    .privilege-section__inner {
        padding: 0 16px;
    }
    .privilege-section__image {
        height: 278px;
    }
    .privilege-card {
        margin-top: -18px;
        border-radius: 8px;
        padding: 24px 18px 20px;
    }
    .privilege-card__title {
        font-size: 2.05rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .privilege-card__desc {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 20px;
    }
    .privilege-card__btn {
        min-width: 206px;
        min-height: 44px;
        font-size: 10px;
    }
}


/* ════════════════════════════════════════════════════════════════
   K. APP DOWNLOAD SECTION
   Base CSS + media queries are kept in one self-contained block.
   Reusable split promotional section before footer.
   ════════════════════════════════════════════════════════════════ */

.app-download-section {
    background: var(--clr-page-bg);
    padding: 8px 0 0;
}

.app-download-section__inner {
    display: grid;
    grid-template-columns: 40.9% 59.1%;
    min-height: 470px;
}

.app-download-section__content {
    background: linear-gradient(90deg, #5a594d 0%, #5d5d50 24%, #6a685b 62%, #767566 100%);
    padding: 105px 58px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-download-section__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.app-download-section__eyebrow-line {
    width: 48px;
    height: 1px;
    background: rgba(198, 154, 54, .72);
    flex: 0 0 auto;
}

.app-download-section__eyebrow {
    color: #f6f2e9;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.app-download-section__title {
    margin: 0 0 22px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2.45rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.08;
}

.app-download-section__desc {
    max-width: 470px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .96);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.75;
}

.app-download-section__stores {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.app-download-section__store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-download-section__store img {
    height: 40px;
    width: auto;
    display: block;
}

.app-download-section__media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
}

.app-download-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .app-download-section__content {
        padding: 76px 40px 44px;
    }
    .app-download-section__title {
        font-size: 3rem;
    }
    .app-download-section__desc {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .app-download-section__inner {
        grid-template-columns: 1fr;
    }
    .app-download-section__media {
        order: -1;
        min-height: 360px;
    }
    .app-download-section__content {
        padding: 34px 24px 30px;
    }
    .app-download-section__title {
        font-size: 2.55rem;
    }
    .app-download-section__desc {
        max-width: none;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .app-download-section {
        padding-top: 0;
    }
    .app-download-section__media {
        min-height: 250px;
    }
    .app-download-section__content {
        padding: 28px 20px 22px;
        position: absolute;
        /* min-height: 518px; */
        min-height: 470px;
        ;
        opacity: 0.93;
    }
    .app-download-section__eyebrow-row {
        gap: 12px;
        margin-bottom: 14px;
    }
    .app-download-section__eyebrow-line {
        width: 36px;
    }
    .app-download-section__eyebrow {
        font-size: 10px;
        letter-spacing: .24em;
    }
    .app-download-section__title {
        font-size: 3.05rem;
        margin-bottom: 16px;
    }
    .app-download-section__desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 26px;
    }
    .app-download-section__stores {
        gap: 10px;
    }
    .app-download-section__store img {
        height: 36px;
    }
    .app-download-section__image {
        width: 100%;
        /* height: 55.5vh;
        object-fit: cover; */
        height: 100%;
        object-fit: cover;
        display: block;
    }
}


/* ════════════════════════════════════════════════════════════════
   K. FOOTER SECTION
   Base CSS + media queries kept in one self-contained block.
   Reusable premium footer section.
   ════════════════════════════════════════════════════════════════ */

.site-footer {
    background: #221E1F;
    color: #fff;
    padding: 26px 0 18px;
}

.site-footer__inner {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 34px;
}

.site-footer__hero {
    position: relative;
    text-align: center;
    padding: 54px 0 34px;
}

.site-footer__watermark {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 205px;
    opacity: .12;
    pointer-events: none;
}

.site-footer__hero-text {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #f1ebe4;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.3vw, 3.1rem);
    font-weight: 500;
    line-height: 1.28;
}

.site-footer__year-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.site-footer__year-line {
    flex: 1 1 auto;
    max-width: 560px;
    height: 1px;
    background: var(--clr-gold);
}

.site-footer__year {
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
}

.site-footer__brands {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    align-items: center;
    gap: 18px 28px;
    padding: 34px 0 40px;
    border-bottom: 1px solid var(--clr-gold);
}

.site-footer__brand {
    max-width: 170px;
    max-height: 70px;
    width: auto;
    height: auto;
    justify-self: center;
}

.site-footer__brand--pc {
    max-width: 150px;
}

.site-footer__brand--vogue {
    max-width: 160px;
}

.site-footer__main {
    padding-top: 34px;
}

.site-footer__links-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1.45fr;
    gap: 26px 34px;
}

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

.site-footer__links li+li {
    margin-top: 24px;
}

.site-footer__links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer__links a:hover {
    color: var(--clr-gold);
}

.site-footer__updates {
    padding-top: 2px;
}

.site-footer__updates-title {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer__subscribe {
    display: grid;
    grid-template-columns: 1fr 148px;
    gap: 0;
}

.site-footer__input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--clr-gold);
    background: transparent;
    color: #fff;
    outline: 0;
    font-family: var(--font-ui);
    font-size: 14px;
}

.site-footer__input::placeholder {
    color: rgba(255, 255, 255, .72);
}

.site-footer__subscribe-btn {
    min-height: 48px;
    border: 0;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer__bottom {
    margin-top: 46px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    opacity: .9;
}

.site-footer__socials img {
    max-width: 18px;
    max-height: 18px;
}

.site-footer__socials i {
    font-size: 18px;
    line-height: 1;
    color: #F6F1ED;
    opacity: .5;
}

.site-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .site-footer__inner {
        /* padding: 0 24px; */
    }
    .site-footer__hero {
        padding-top: 46px;
    }
    .site-footer__brands {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .site-footer__links-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .site-footer__updates {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .site-footer {
        /* padding: 0 0 14px; */
    }
    .site-footer__inner {
        /* padding: 0 14px; */
    }
    .site-footer__hero {
        padding: 18px 0 24px;
    }
    .site-footer__watermark {
        width: 110px;
        top: 0;
    }
    .site-footer__hero-text {
        font-size: 1.32rem;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .site-footer__year-row {
        gap: 14px;
    }
    .site-footer__year-line {
        display: none;
    }
    .site-footer__year {
        font-size: 2rem;
    }
    .site-footer__brands {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 12px;
        padding: 22px 0 24px;
    }
    .site-footer__brand {
        max-width: 110px;
        max-height: 52px;
    }
    .site-footer__brand--vogue {
        max-width: 120px;
    }
    .site-footer__brand--pc {
        max-width: 90px;
    }
    .site-footer__main {
        padding-top: 22px;
    }
    .site-footer__links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 22px;
    }
    .site-footer__links--desktop-only {
        display: none;
    }
    .site-footer__links li+li {
        margin-top: 16px;
    }
    .site-footer__links a,
    .site-footer__updates-title {
        font-size: 11px;
    }
    .site-footer__updates {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
    .site-footer__subscribe {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .site-footer__input,
    .site-footer__subscribe-btn {
        min-height: 40px;
    }
    .site-footer__bottom {
        margin-top: 28px;
        flex-direction: column-reverse;
        align-items: center;
        gap: 14px;
    }
    .site-footer__copyright {
        font-size: 10px;
        text-align: center;
        line-height: 1.5;
    }
    .site-footer__socials {
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .header-divider {
        width: 100%;
        margin-left: 0;
    }
}


/* ================================================================
   TABLET RESPONSIVE OVERRIDES  (768px – 1199px)
   All sections: card-two, Hotels, Restaurants, Brands, Tours,
   News, Privilege, App Download, Footer
   Changes are inside each section's own media-query block as
   requested — added here at the end so each section block stays
   self-contained and reusable on future pages.
   ================================================================ */


/* ────────────────────────────────────────────────────────────────
   OUR card-two SECTION — Tablet
   768-1199px: 2 cards per slide, correct wrapper width
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .card-two-section {
        padding: 40px 0 52px;
    }
    .card-two-breadcrumb {
        padding: 0 32px 22px;
    }
    .card-two-carousel-wrapper {
        padding: 0 32px;
        max-width: 100%;
    }
    .card-two-card {
        max-width: 100%;
    }
    .card-two-card__title {
        font-size: 1.28rem;
    }
    .carousel-nav {
        padding: 28px 0 0;
    }
}


/* ────────────────────────────────────────────────────────────────
   OUR HOTELS & RESORTS — Tablet
   768-1199px: 2-col grid (Bootstrap col-md-6 already handles this),
   fix section padding, search bar, grid wrapper
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .hotels-section {
        padding: 48px 32px 0;
    }
    .hotels-search-bar {
        max-width: 100%;
        gap: 14px;
        margin-bottom: 40px;
    }
    .card-one-grid {
        max-width: 100%;
        padding-bottom: 160px;
    }
    .card-one {
        max-width: 100%;
    }
    .card-one__name {
        font-size: 1.05rem;
    }
    .card-one__btn {
        padding: 10px 14px;
        font-size: 10.5px;
    }
}


/* ────────────────────────────────────────────────────────────────
   RESTAURANTS & DINING — Tablet
   768-1199px: stage height reduced, active card centred properly,
   preview card hidden (too cramped), tabs scrollable
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .restaurants-section {
        padding: 20px 0 0;
    }
    .restaurants-section__heading {
        margin-top: 26px;
    }
    .restaurants-section .section-title {
        font-size: clamp(2.4rem, 5vw, 3.2rem);
    }
    .restaurants-tabs-wrap {
        padding: 0 24px;
        margin-bottom: 28px;
        gap: 14px;
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }
    .restaurants-tabs {
        gap: 36px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
    }
    .restaurants-tabs::-webkit-scrollbar {
        display: none;
    }
    .restaurants-tab {
        font-size: 13px;
        letter-spacing: .13em;
        flex: 0 0 auto;
    }
    .restaurants-tab.is-active {
        min-width: 160px;
        padding: 0 18px;
    }
    .restaurants-stage,
    .restaurants-stage__bg {
        height: 460px;
        min-height: 460px;
    }
    .restaurants-card--active {
        min-height: auto;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: min(86vw, 520px);
        padding: 28px 30px 28px;
    }
    .restaurants-card__title-line,
    .restaurants-card__preview-line {
        width: 60px;
    }
    .restaurants-card__script {
        width: 138px;
    }
    .restaurants-card__heading {
        font-size: 2.6rem;
    }
    .restaurants-card__desc {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .restaurants-card__btn {
        min-width: 144px;
        min-height: 46px;
        font-size: 13px;
    }
    /* Hide preview card on tablet — not enough horizontal space */
    .restaurants-card--preview {
        display: none;
    }
}


/* ────────────────────────────────────────────────────────────────
   OUR BRANDS — Tablet
   768-1199px: controls inline, active card wider,
   preview card hidden below 1024px
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .brands-lite-controls {
        /* padding: 22px 28px 0; */
    }
    .brands-lite-arrow {
        width: 48px;
        height: 48px;
    }
    .brands-lite-arrow img {
        width: 18px;
        height: 18px;
    }
    .brands-lite-viewall {
        min-width: 200px;
        min-height: 48px;
        font-size: 12px;
        padding: 0 22px;
    }
    .brands-lite-stage {
        min-height: 540px;
        margin-top: 22px;
    }
    .brands-lite-card--active {
        width: min(80vw, 560px);
        min-height: auto;
        padding: 40px 36px;
    }
    .brands-lite-card__logo {
        height: 92px;
        margin-bottom: 18px;
    }
    .brands-lite-card__desc {
        font-size: 14px;
        line-height: 1.8;
    }
    /* Hide preview card below 1024px — no room */
    .brands-lite-card--preview {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    /* Restore preview card on larger tablets where there is room */
    .brands-lite-card--preview {
        display: flex;
        width: 300px;
        min-height: 320px;
        right: -20px;
        padding: 34px 22px;
        display: none;
    }
    .brands-lite-card__preview-logo {
        height: 80px;
    }
}


/* ────────────────────────────────────────────────────────────────
   TOURS & TRAVEL — Tablet
   768-1199px: proper padding, arrow size, card text
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .tours-section {
        padding: 44px 0 56px;
    }
    .tours-section .section-heading {
        padding-bottom: 34px;
    }
    .tours-carousel-outer {
        padding: 0 24px;
    }
    .tours-arrow {
        width: 40px;
        height: 40px;
        margin: 0 12px;
    }
    .tours-arrow img {
        width: 18px;
        height: 18px;
    }
    .tour-card__img-wrap {
        aspect-ratio: 16 / 9;
    }
    .tour-card__title {
        font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    }
    .tour-card__desc {
        font-size: 13px;
    }
    .tour-card__btn {
        padding: 11px 24px;
    }
}


/* ────────────────────────────────────────────────────────────────
   NEWS & ARTICLES — Tablet
   768-1199px: 2 cards (set in JS), proper padding + card text
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .news-section {
        padding: 52px 0 60px;
    }
    .news-section .section-heading {
        padding-bottom: 36px;
    }
    .news-carousel-outer {
        padding: 0 24px;
    }
    .news-arrow {
        width: 40px;
        height: 40px;
        margin: 0 12px;
    }
    .news-arrow img {
        width: 18px;
        height: 18px;
    }
    .news-card__title {
        font-size: clamp(1rem, 1.8vw, 1.15rem);
    }
    .news-see-more-btn {
        padding: 14px 60px;
    }
    .news-see-more-wrap {
        padding-top: 36px;
    }
}


/* ────────────────────────────────────────────────────────────────
   PRIVILEGE CLUB — Tablet
   768-1199px: image + overlapping card, tighten up
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .privilege-section {
        padding: 20px 0 44px;
    }
    .privilege-section__inner {
        padding: 0 22px;
    }
    .privilege-section__image-wrap {
        /* width: 72%; */
    }
    .privilege-section__image {
        height: 440px;
    }
    .privilege-card {
        top: 80px;
        right: 22px;
        /* width: min(46%, 500px); */
        padding: 28px 28px 28px;
    }
    .privilege-card__title {
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        margin-bottom: 14px;
    }
    .privilege-card__desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
    .privilege-card__btn {
        min-width: 200px;
        min-height: 48px;
        font-size: 12px;
        letter-spacing: .14em;
    }
}


/* ────────────────────────────────────────────────────────────────
   APP DOWNLOAD — Tablet
   768-1199px: side-by-side layout maintained but proportions fixed
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .app-download-section__inner {
        grid-template-columns: 48% 52%;
        min-height: 420px;
    }
    .app-download-section__content {
        padding: 52px 32px 44px;
    }
    .app-download-section__title {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        margin-bottom: 16px;
    }
    .app-download-section__desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .app-download-section__eyebrow {
        font-size: 10px;
    }
    .app-download-section__store img {
        height: 36px;
    }
    .app-download-section__media {
        min-height: 420px;
    }
}


/* ────────────────────────────────────────────────────────────────
   FOOTER — Tablet
   768-1199px: brands 3-col (already set), links-grid 2-col,
   bottom bar inline, tighter inner padding
   ──────────────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1199px) {
    .site-footer__input {
        width: auto;
    }
    .site-footer__inner {
        padding: 0 24px;
    }
    .site-footer__hero {
        padding: 40px 0 28px;
    }
    .site-footer__hero-text {
        font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    }
    .site-footer__year-row {
        gap: 20px;
    }
    .site-footer__year {
        font-size: clamp(2.4rem, 4vw, 3.6rem);
    }
    .site-footer__brands {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 20px;
        padding: 28px 0 32px;
    }
    .site-footer__brand {
        max-width: 130px;
        max-height: 56px;
    }
    .site-footer__main {
        padding-top: 26px;
    }
    .site-footer__links-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px 28px;
    }
    .site-footer__updates {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    .site-footer__subscribe {
        grid-template-columns: 1fr 140px;
    }
    .site-footer__links li+li {
        margin-top: 18px;
    }
    .site-footer__bottom {
        margin-top: 36px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .site-footer__copyright {
        font-size: 11px;
    }
}


/* Restaurants section tweak: image artwork already includes the title */

.restaurants-tile__content,
.restaurants-tile__logo {
    display: none !important;
}


/* Hotels-css */


/* * ════════════════════════════════════════════════════════════════ A. HOTEL HERO SECTION Cream intro block+full-bleed image with play button ════════════════════════════════════════════════════════════════ */


/* ── Hotel Hero – minimal custom CSS, zero media queries ── */

.hotel-hero-section {
    background: var(--clr-cream);
}


/* .hotel-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--clr-heading);
    line-height: 1.2;
    max-width: 700px;
} */


/* Media block — fluid height, no breakpoints */

.hotel-hero__media {
    /* height: clamp(300px, 40vw, 600px); */
    /* 300px mobile → 480px desktop */
}

.custom-hover-carousel .custom-carousel-img {
    /* height: 600px; */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .hotel-hero__media,
    .custom-hover-carousel .custom-carousel-img {
        height: 300px;
    }
}
/* Dark overlay */

.hotel-hero__overlay {
    background: rgba(10, 20, 40, .30);
    pointer-events: none;
}


/* Play button */

.hotel-hero__play {
    width: clamp(54px, 5.5vw, 68px);
    /* fluid: 54px → 68px */
    height: clamp(54px, 5.5vw, 68px);
    border: 2px solid rgba(255, 255, 255, .85) !important;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.hotel-hero__play:hover {
    background: rgba(255, 255, 255, .28);
    transform: translate(-50%, -50%) scale(1.08);
}


/* ════════════════════════════════════════════════════════════════
   B. HOTEL OVERVIEW SECTION
   Heading + amenity tiles grid
   ════════════════════════════════════════════════════════════════ */


/* 1. Custom 5-column grid for Large screens (lg) */

@media (min-width: 992px) {
    .col-lg-custom-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}


/* 2. Premium Hover Effect (Not in Bootstrap) */

.transition-base {
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--clr-gold) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}


/* 3. Global Utility for spacing (Standardizing PC Brand style) */

.tracking-wider {
    letter-spacing: 0.08em;
}


/* ════════════════════════════════════════════════════════════════
   E. RESTAURANTS & DINING SECTION
   Left tall feature card + 2x2 right image grid
   ════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════════
   E. RESTAURANTS & DINING SECTION
   Left tall feature card + 2x2 right image grid
   ════════════════════════════════════════════════════════════════ */

.hotel-dining-section {
    background: var(--clr-cream);
}

.dining-showcase-section {
    background: var(--clr-dark);
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
}

.dining-showcase-shell {
    padding: 0;
}

.dining-showcase-swiper {
    overflow: hidden;
    margin: 0 clamp(56px, 6vw, 86px);
    padding: 0;
}

.dining-showcase-swiper .swiper-wrapper {
    align-items: stretch;
}

.dining-showcase-swiper .swiper-slide {
    height: auto;
}

.dining-showcase-section--single .dining-showcase-swiper {
    margin: 0;
}

.dining-showcase-section--single .dining-showcase-arrow,
.dining-showcase-section--single .dining-showcase-controls {
    display: none !important;
}

.dining-showcase-slide {
    display: flex;
    align-items: center;
    min-height: clamp(360px, 38vw, 500px);
    height: 100%;
    padding: 0;
    opacity: .35;
    transform: translateY(10px);
    transition: opacity .65s ease, transform .65s ease;
}

.dining-showcase-slide>.row {
    flex: 1 1 auto;
    width: 100%;
}

.dining-showcase-swiper .swiper-slide-active .dining-showcase-slide {
    opacity: 1;
    transform: translateY(0);
}

.dining-showcase-slide__content {
    max-width: 590px;
}

.dining-showcase-slide__logo {
    width: auto;
    max-width: min(220px, 52vw);
    max-height: 72px;
    object-fit: contain;
}

.dining-showcase-slide__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.16;
}

.dining-showcase-slide__desc {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
}

.dining-showcase-slide__btn {
    min-width: 180px;
    min-height: 52px;
    padding: 0 28px;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: .14em;
    border-radius: 4px;
    transition: background var(--t), transform var(--t);
}

.dining-showcase-slide__btn:hover {
    background: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.dining-showcase-slide__image {
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}

.dining-showcase-slide__img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.dining-showcase-slide__image:hover .dining-showcase-slide__img {
    transform: scale(1.04);
}

.dining-showcase-controls {
    min-height: 28px;
}

.dining-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    transition: background var(--t), opacity var(--t), transform var(--t);
}

.dining-showcase-arrow:hover:not(.swiper-button-disabled) {
    transform: translateY(-50%) scale(1.04);
}

.dining-showcase-prev {
    left: 0;
}

.dining-showcase-next {
    right: 0;
}

.dining-showcase-arrow.swiper-button-disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.dining-showcase-pagination {
    min-width: 56px;
    gap: 10px;
}

.dining-showcase-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c9b99a;
    opacity: 1;
}

.dining-showcase-pagination .swiper-pagination-bullet-active {
    background: var(--clr-gold);
}

@media (max-width: 767.98px) {
    .dining-showcase-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.25rem !important;
    }
    .dining-showcase-slide {
        min-height: 0;
    }
    .dining-showcase-swiper {
        margin: 0 clamp(50px, 14vw, 64px);
        padding: 0;
    }
    .dining-showcase-prev {
        left: 0;
    }
    .dining-showcase-next {
        right: 0;
    }
    .dining-showcase-controls {
        min-height: 28px;
    }
    .dining-showcase-slide__image {
        aspect-ratio: 4 / 3;
        margin-left: auto;
        margin-right: auto;
    }
    .dining-showcase-slide__content {
        max-width: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .dining-showcase-slide__content>.d-flex {
        justify-content: center;
    }
    .dining-showcase-slide__title {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }
}


/* ── Left feature card ── */

.dining-feature-card {
    min-height: clamp(640px, 80vw, 988px);
    background: linear-gradient(180deg, rgba(34, 35, 39, .97) 0%, rgba(34, 35, 39, .94) 36%, rgba(34, 35, 39, .86) 100%), radial-gradient(circle at 50% 8%, rgba(177, 133, 43, .24) 0%, rgba(177, 133, 43, 0) 48%);
}

.dining-feature-card__overlay {
    background: linear-gradient(180deg, rgba(34, 35, 39, .22) 0%, rgba(34, 35, 39, .10) 22%, rgba(34, 35, 39, .58) 100%);
    pointer-events: none;
}

.dining-feature-card__line {
    width: clamp(36px, 4vw, 58px);
    height: 1px;
    background: rgba(198, 146, 39, .8);
    flex-shrink: 0;
}

.dining-feature-card__eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

.dining-feature-card__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.12;
}

.dining-feature-card__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.9rem);
    line-height: 1.3;
    color: #f2ece4;
}

.dining-feature-card__btn {
    min-height: 52px;
    max-width: 342px;
    background: var(--clr-gold);
    font-family: var(--font-ui);
    font-size: clamp(11px, 1vw, 12px);
    letter-spacing: .12em;
    border-radius: 4px;
    transition: background var(--t), transform var(--t);
}

.dining-feature-card__btn:hover {
    background: var(--clr-gold-hover);
    transform: translateY(-1px);
}


/* Chef image */

.dining-feature-card__chef-wrap {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.dining-feature-card__chef {
    width: clamp(110%, 116%, 116%);
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(8px);
    transition: transform .4s ease;
}

.dining-feature-card:hover .dining-feature-card__chef {
    transform: translateY(8px) scale(1.04);
}


/* ── Right grid cells ── */

.dining-grid__cell {
    min-height: clamp(280px, 25vw, 485px);
}

@media (min-width: 992px) {
    .hotel-dining-section .dining-grid-col {
        display: flex;
    }
    .hotel-dining-section .dining-grid-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        display: grid;
        flex: 1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        height: 100%;
        margin: 0;
    }
    .hotel-dining-section .dining-grid-row>.dining-grid__cell {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin-top: 0;
        padding: 0;
    }
    .hotel-dining-section .dining-grid-row .dining-grid__overlay-card {
        width: 100%;
    }
}

.dining-grid__img {
    transition: transform .4s ease;
}

.dining-grid__img-wrap:hover .dining-grid__img {
    transform: scale(1.04);
}


/* ── Cafe Latte overlay card ── */

.dining-grid__overlay-card {
    background: transparent;
}


/* Background image — always visible, zooms on hover */

.dining-grid__bg-img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

.dining-grid__overlay-card:hover .dining-grid__bg-img {
    transform: scale(1.04);
}


/* Green gradient + radial overlay — hidden by default, fades in on hover */

.dining-grid__overlay-bg {
    background: linear-gradient(180deg, rgba(78, 82, 63, .97) 0%, rgba(82, 88, 64, .94) 100%), radial-gradient(circle at 28% 34%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 16%, rgba(255, 255, 255, 0) 38%), radial-gradient(circle at 66% 66%, rgba(177, 133, 43, .18) 0%, rgba(177, 133, 43, 0) 34%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.dining-grid__overlay-card:hover .dining-grid__overlay-bg {
    opacity: 1;
}


/* Text content — hidden by default, fades up on hover */

.dining-grid__overlay-content {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.dining-grid__overlay-card:hover .dining-grid__overlay-content {
    opacity: 1;
    transform: translateY(0);
}


/* ── Cafe Latte text elements ── */

.dining-overlay__line {
    width: clamp(38px, 5vw, 80px);
    height: 1px;
    background: rgba(255, 255, 255, .65);
    flex-shrink: 0;
}

.dining-overlay__logo {
    width: clamp(104px, 8vw, 130px);
    height: auto;
}

.dining-overlay__desc {
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.3vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, .94);
}

.dining-overlay__btn {
    min-width: clamp(148px, 12vw, 198px);
    min-height: clamp(46px, 4vw, 58px);
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .06);
    font-family: var(--font-ui);
    font-size: clamp(11px, 1vw, 12px);
    letter-spacing: .12em;
    border-radius: 2px;
    transition: background var(--t), border-color var(--t), transform var(--t);
}

.dining-overlay__btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    transform: translateY(-1px);
}


/* ════════════════════════════════════════════════════════════════
   F. WEDDING & TOURS SERVICE BLOCKS
   Alternating text-image layout
   ════════════════════════════════════════════════════════════════ */


/* ── Hotel Services – minimal custom CSS, zero media queries ── */

.hotel-services-section {
    background: var(--clr-cream);
}


/* .service-block__eyebrow {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--clr-label);
} */

.service-block__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.service-block__desc,
.service-block__desc p {
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.2vw, 14px);
    /* fluid: 13px→14px */
    color: var(--clr-label);
    line-height: 1.75;
}

.service-block__btn {
    display: inline-block;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background var(--t), transform var(--t);
}

.service-block__btn:hover {
    background: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.service-block__img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    transition: transform .4s ease;
}

.service-block__image:hover .service-block__img {
    transform: scale(1.03);
}


/* ════════════════════════════════════════════════════════════════
   G. GUEST REVIEWS SECTION (dark background)
   ════════════════════════════════════════════════════════════════ */


/* ── Guest Reviews – minimal custom CSS, zero media queries ── */

.hotel-reviews-section {
    background: #2a2826;
}

.reviews-arrow img {
    width: 20px;
    height: 20px;
}

.review-card__avatar {
    width: 52px !important;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-gold);
}


/* Label / heading overrides for dark bg */

.hotel-reviews__label-line {
    background: var(--clr-gold) !important;
    opacity: .65;
}

.hotel-reviews__label-text {
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    /* color: var(--clr-label); */
    white-space: nowrap;
}

.hotel-reviews__title {
    color: #fff !important;
}


/* Hide default Owl nav/dots */

.reviews-carousel-track .owl-nav,
.reviews-carousel-track .owl-dots {
    display: none;
}


/* Make each Owl item a flex container so card fills height */

.reviews-carousel-track .owl-item {
    display: flex;
}


/* ── Review card – dimmed (non-centre) ── */

.review-card {
    background: #3a3836;
    padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2.2vw, 32px);
    /* fluid padding, no breakpoints */
    gap: 24px;
    min-height: clamp(280px, 28vw, 320px);
    /* fluid height */
    width: 100%;
    opacity: .5;
    transform: scale(.96);
    transition: opacity .4s ease, transform .4s ease, background .4s ease;
}


/* ── Centre card (active) – Owl adds .center ── */

.reviews-carousel-track .owl-item.center .review-card {
    background: #fff;
    opacity: 1;
    transform: scale(1);
}


/* Quote text */

.review-card__quote {
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.2vw, 14px);
    /* fluid: 13px → 14px */
    line-height: 1.7;
    color: rgba(240, 236, 228, .7);
}

.reviews-carousel-track .owl-item.center .review-card__quote {
    color: var(--clr-label);
}

.reviews-carousel-track .owl-item.center .review-card__stars {
    color: var(--clr-gold)
}


/* Avatar */

.review-card__avatar {
    width: 52px;
    height: 52px;
    border: 2px solid var(--clr-gold);
}


/* Decorative lines */

.review-card__line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--clr-gold);
    opacity: .6;
}


/* Author name */

.review-card__name {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(240, 236, 228, .6);
    white-space: nowrap;
}

.reviews-carousel-track .owl-item.center .review-card__name {
    color: var(--clr-label);
}


/* ── Arrow buttons ── */

.reviews-arrow {
    width: clamp(38px, 3.5vw, 44px);
    /* fluid: 38px → 44px */
    height: clamp(38px, 3.5vw, 44px);
    background: transparent;
    border: 1.5px solid var(--clr-gold) !important;
    border-radius: 5px;
    cursor: pointer;
    transition: background var(--t);
}

.reviews-arrow:hover {
    background: var(--clr-gold);
}

.reviews-arrow:hover img {
    filter: brightness(10);
}

.reviews-arrow__icon {
    width: clamp(16px, 1.6vw, 20px);
    /* fluid: 16px → 20px */
    height: clamp(16px, 1.6vw, 20px);
}


/* ════════════════════════════════════════════════════════════════
   H. HOTEL DETAILS + MAP SECTION
   ════════════════════════════════════════════════════════════════ */


/* ── Hotel Details – minimal custom CSS, zero media queries ── */

.hotel-details-section {
    background: var(--clr-cream);
}

.hotel-details__eyebrow {
    /* font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--clr-body); */
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--clr-label);
}

.hotel-details__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hotel-details__text p {
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.2vw, 14px);
    /* 13px mobile → 14px desktop */
    color: var(--clr-label);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.hotel-details__facilities-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500 !important;
    color: var(--clr-heading);
}

.details-facility {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--clr-body);
}

.details-facility__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: .75;
}


/* Map */

.hotel-map-img {
    max-height: clamp(280px, 35vw, 480px);
    /* 280px mobile → 480px desktop */
}

.hotel-map-btn {
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: clamp(10px, 1vw, 11px);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: clamp(11px, 1.2vw, 14px) clamp(18px, 2vw, 24px);
    text-decoration: none;
    border-radius: 4px;
    transition: background var(--t), transform var(--t);
}

.hotel-map-btn:hover {
    background: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}


/* ── FAQ – minimal custom CSS, zero media queries ── */

.hotel-faq-section {
    background: var(--clr-cream);
}


/* Hover shadow — no Bootstrap utility for custom shadow values */

.faq-item {
    transition: box-shadow .2s ease;
    border-color: #e0dbd2 !important;
    /* override Bootstrap's default border color */
}

.faq-item:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
}


/* Trigger button */

.faq-item__trigger {
    padding: clamp(14px, 1.5vw, 18px) clamp(16px, 1.8vw, 20px);
    /* fluid: 14/16px → 18/20px */
    font-family: var(--font-ui);
    font-size: clamp(12.5px, 1.1vw, 13.5px);
    /* fluid: 12.5px → 13.5px, no breakpoints needed */
    color: var(--clr-heading);
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
    transition: color var(--t);
}

.faq-item__trigger:hover {
    color: var(--clr-gold);
}

.faq-item--open .faq-item__trigger {
    color: var(--clr-gold);
}


/* Arrow icon */

.faq-item__icon {
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
    opacity: .6;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
    opacity: 1;
}


/* Accordion body */

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 clamp(16px, 1.8vw, 20px);
}

.faq-item--open .faq-item__body {
    max-height: 200px;
    padding: 0 clamp(16px, 1.8vw, 20px) 18px;
}

.faq-item__body p {
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: var(--clr-body);
    line-height: 1.65;
    border-top: 1px solid #f0ece4;
    padding-top: 14px;
}


/* =========================================================
   RESTAURANT GRID SECTION
   Filterable grid layout with city filtering
   ========================================================= */


/* .restaurant-grid-section {
    background: var(--clr-page-bg, #f9f6f0);
    padding: 48px 0 72px;
    overflow: hidden;
}

.restaurant-grid-heading {
    max-width: 980px;
    margin: 0 auto 48px;
    text-align: center;
}

.restaurant-grid-heading .section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
}

.restaurant-grid-heading .section-label-line {
    width: 56px;
    height: 1px;
    background: var(--clr-gold);
    flex-shrink: 0;
}

.restaurant-grid-heading .section-label-text {
    color: var(--clr-label);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.restaurant-grid-heading .section-title {
    margin-bottom: 16px;
    color: var(--clr-heading);
    font-family: var(--font-heading, 'Larken', serif);
    font-size: clamp(2.8rem, 4.4vw, 4rem);
    font-weight: 700;
    line-height: 1.18;
}

.restaurant-grid-heading .section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--clr-label);
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
} */


/* Filter Container */

.restaurant-filter-container {
    margin-bottom: 40px;
}

.restaurant-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurant-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--clr-cream-border);
    border-radius: 4px;
    background: #fff;
    color: var(--clr-label);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.restaurant-filter-btn:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 133, 37, 0.1);
}

.restaurant-filter-btn.active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #fff;
}

.restaurant-filter-btn.active .filter-btn-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.filter-btn-text {
    font-weight: 500;
}

.filter-btn-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background: var(--clr-cream);
    color: var(--clr-label);
    font-size: 12px;
    font-weight: 600;
}


/* Restaurant Grid */

.restaurant-grid-container {
    position: relative;
    min-height: 400px;
}

.restaurant-grid-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.restaurant-grid-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.restaurant-card {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.restaurant-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.restaurant-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.restaurant-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-card-img {
    transform: scale(1.05);
}

.restaurant-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.restaurant-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.badge-city {
    display: inline-block;
    padding: 6px 12px;
    background: var(--clr-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}

.restaurant-card-content {
    padding: 24px;
}

.restaurant-card-title {
    margin: 0 0 12px;
    color: var(--clr-heading);
    font-family: var(--font-heading, 'Larken', serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.restaurant-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--clr-body);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
}

.location-icon {
    flex-shrink: 0;
    color: var(--clr-gold);
}

.restaurant-card-description {
    margin: 0px;
    color: var(--clr-body);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    /* border-top: 1px solid var(--clr-cream-border); */
}

.view-details {
    color: var(--clr-gold);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arrow-icon {
    color: var(--clr-gold);
    transition: transform 0.3s ease;
}

.restaurant-card:hover .arrow-icon {
    transform: translateX(4px);
}


/* Empty State */

.restaurant-empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    margin-bottom: 24px;
    color: var(--clr-cream-border);
}

.empty-state-title {
    margin: 0 0 12px;
    color: var(--clr-heading);
    font-family: var(--font-heading, 'Larken', serif);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.empty-state-message {
    margin: 0 0 24px;
    color: var(--clr-body);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
}

.empty-state-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--clr-gold);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.empty-state-btn:hover {
    background: var(--clr-gold-hover);
}


/* Responsive Styles */

@media (max-width: 1199px) {
    .restaurant-grid-section {
        padding: 40px 0 60px;
    }
    .restaurant-grid-heading {
        margin-bottom: 40px;
    }
    .restaurant-card-image {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .restaurant-grid-section {
        padding: 32px 0 48px;
    }
    .restaurant-grid-heading .section-title {
        font-size: clamp(2.4rem, 4vw, 3.2rem);
    }
    .restaurant-filter-buttons {
        gap: 10px;
    }
    .restaurant-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .restaurant-card-image {
        height: 200px;
    }
    .restaurant-card-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .restaurant-grid-section {
        padding: 24px 0 40px;
    }
    .restaurant-grid-heading {
        margin-bottom: 32px;
    }
    .restaurant-grid-heading .section-label-row {
        gap: 12px;
    }
    .restaurant-grid-heading .section-label-line {
        width: 40px;
    }
    .restaurant-grid-heading .section-label-text {
        font-size: 10px;
    }
    .restaurant-grid-heading .section-title {
        font-size: 2.2rem;
    }
    .restaurant-grid-heading .section-subtitle {
        font-size: 14px;
    }
    .restaurant-filter-buttons {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .restaurant-filter-buttons::-webkit-scrollbar {
        display: none;
    }
    .restaurant-filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 12px;
    }
    .restaurant-card-image {
        height: 180px;
    }
    .restaurant-card-title {
        font-size: 1.25rem;
    }
    .restaurant-card-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 575px) {
    .restaurant-grid-item {
        margin-bottom: 20px;
    }
    .restaurant-card-image {
        height: 160px;
    }
    .restaurant-card-content {
        padding: 16px;
    }
    .restaurant-card-title {
        font-size: 1.125rem;
    }
    .empty-state-title {
        font-size: 1.5rem;
    }
    .empty-state-message {
        font-size: 14px;
    }
}


/* ════════════════════════════════
   DSH SECTION — minimal custom
   ════════════════════════════════ */


/* END BCS */


/* =========================================================
   EXPLORE BY SEASONS SECTION
   ========================================================= */

.explore-section {
    background: var(--wedding-dark);
    padding: 90px 0;
}

.explore-copy {
    max-width: 48rem;
    margin-block: 50px;
}

.explore-copy p {
    color: var(--wedding-white);
    /* font-size: 15px;
    line-height: 1.7; */
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.explore-grid-wrap {
    padding-inline: 1.25rem;
    max-width: 1440px;
}

.explore-card {
    background: #1f1f1f;
}

.explore-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
}

.explore-image {
    transition: transform 0.45s ease;
}

.explore-card:hover .explore-image {
    transform: scale(1.04);
}

.explore-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.08;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

@media (min-width: 576px) {
    .explore-copy p {
        font-size: 1rem;
    }
}


/* accomodation */


/* ════════════════════════════════════════════════════════════════
   C. ROOMS & SUITES SECTION
   ════════════════════════════════════════════════════════════════ */

.rooms-section {
    background: var(--clr-cream);
}

.rooms-eyebrow-line {
    display: block;
    width: 52px;
    height: 1px;
    background: var(--clr-gold);
    flex-shrink: 0;
}

.rooms-eyebrow-text {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #1b1b1b;
    text-transform: uppercase;
    white-space: pre-wrap;
}

.rooms-intro {
    font-family: var(--font-ui);
    font-size: 14.5px;
    color: var(--clr-body);
    line-height: 1.85;
    max-width: 620px;
}

.rooms-filter__btn {
    /* font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--clr-body);
    background: transparent;
    border: 1px solid transparent;
    padding: 9px 44px;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 1px;
    transition: color var(--t); */
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--clr-body);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 1px;
    transition: color var(--t);
    padding: 10px 30px;
}

.rooms-filter__btn--active {
    color: var(--clr-gold);
    border-color: var(--clr-gold);
}

.rooms-filter__btn:hover:not(.rooms-filter__btn--active) {
    color: var(--clr-gold);
}

.room-card__img {
    display: block;
    width: 100%;
    height: clamp(240px, 35vw, 480px);
    object-fit: cover;
    border-radius: 4px;
}

.room-card__name {
    /* font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    color: var(--clr-heading);
    line-height: 1.1; */
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
}

.room-card__desc {
    /* font-family: var(--font-ui);
    font-size: 13.5px;
    color: var(--clr-body);
    line-height: 1.8;
    max-width: 460px; */
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.2vw, 14px);
    color: var(--clr-label);
    line-height: 1.75;
    max-width: 460px;
}

.room-card__amenities {
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    padding: 20px 0;
    overflow: hidden;
}

.room-card__amenity {
    padding: 4px 10px;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--clr-body);
    line-height: 1.45;
    border-right: 1px solid rgba(184, 133, 37, 0.3);
    height: 100%;
}


/* Remove right border on last visible item */

.owl-item:last-child .room-card__amenity {
    border-right: none;
}

.room-card__amenity-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


/* Hide owl default stage padding */


/* .room-amenities-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.room-amenities-carousel .owl-item {
    display: flex;
} */

.room-card__spec-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-heading);
}

.room-card__spec-value {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--clr-body);
}

.room-card__btn {
    background: var(--clr-gold);
    color: #fff;
    border: 2px solid var(--clr-gold);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 11px 20px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    transition: background var(--t), color var(--t), transform var(--t);
}

.room-card__btn:hover {
    background: var(--clr-gold-hover);
    border-color: var(--clr-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.press-single-section .blog-single-section {
    background: var(--clr-cream);
    /* padding: 32px 0 80px; */
}

.press-single-container {
    max-width: 860px;
}


/* Breadcrumb reuses .card-two-breadcrumb — no extra styles needed */


/* ── Article Header ── */

.press-single-header {
    padding-bottom: 40px;
}

.press-single-title {
    /* font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 20px; */
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
}

.press-single-divider {
    /* width: 72px;
    height: 2px;
    background: var(--clr-gold);
    margin-bottom: 16px; */
    display: block;
    width: 52px;
    height: 1.5px;
    background: var(--line-color) !important;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.press-single-date {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--clr-body);
    display: block;
}


/* ── Article Body ── */

.press-single-body {
    background: #fff;
    padding: 40px 48px;
    margin-top: -90px;
}

.press-single-body p,
.press-single-body li {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--clr-body);
    line-height: 1.75;
    margin-bottom: 20px;
}

.press-single-body p:last-child {
    margin-bottom: 0;
}


/* ── Responsive ── */

@media (max-width: 767px) {
    .press-single-section,
    .blog-single-section {
        height: 27vh !important;
    }
    .press-single-body {
        padding: 24px 20px;
        margin: 0px !important;
    }
    .press-single-body p {
        font-size: 13.5px;
    }
}


/* Create the gold separator after every 5th link */


/* .side-link:nth-child(4n),
.side-link:nth-child(7n) {
    position: relative;

    margin-bottom: 20px;
}

.side-link:nth-child(4n)::after,
.side-link:nth-child(7n)::after {
    content: "";
    position: absolute;
    bottom: -10px;

    left: 24px;

    right: 24px;

    height: 1px;
    background-color: var(--clr-gold);
    opacity: 1;
} */


/* Optional: Remove the line from the very last item if it's a multiple of 5 */

.side-link:last-child::after {
    display: none;
}


/* ════════════════════════════════════════════════════════════════
   AMENITIES PAGE STYLES
   Eye-catching grid layout for 3 sections (tag1, tag2, noTag)
   ════════════════════════════════════════════════════════════════ */


/* Amenities Introduction Section */

.amenities-intro-section {
    padding: 60px 0 40px;
    background: var(--clr-page-bg, #f9f6f0);
}

.amenities-intro-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.amenities-intro-content .section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.amenities-intro-content .section-label-line {
    width: 56px;
    height: 1px;
    background: var(--clr-gold);
}

.amenities-intro-content .section-label-text {
    color: var(--clr-label);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.amenities-intro-content .section-title {
    margin-bottom: 20px;
    color: var(--clr-heading);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.amenities-intro-content .section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--clr-text);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}


/* Amenities Grid Sections */

.amenities-grid-section {
    padding: 80px 0;
}

.amenities-wedding {
    background: var(--clr-page-bg, #f9f6f0);
}

.amenities-event {
    background: var(--clr-cream);
}


/* Backward compatibility */

.amenities-premium {
    background: var(--clr-page-bg, #f9f6f0);
}

.amenities-additional {
    background: var(--clr-page-bg, #f9f6f0);
}

.amenities-section-heading {
    max-width: 980px;
    margin: 0 auto 50px;
    text-align: center;
}

.amenities-section-heading .section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.amenities-section-heading .section-label-line {
    width: 56px;
    height: 1px;
    background: var(--clr-gold);
}


/* .amenities-section-heading .section-label-text {
    color: var(--clr-label);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
} */


/* .amenities-section-heading .section-title {
    margin-bottom: 16px;
    color: var(--clr-heading);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
} */

.amenities-section-heading .section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--clr-text);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}


/* Amenities Grid Container */

.amenities-grid-container {
    position: relative;
}

.amenities-grid-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Amenity Card */

.amenity-card {
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* .amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
} */

.amenity-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.amenity-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.amenity-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-card-img {
    transform: scale(1.05);
}

.amenity-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

.amenity-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.badge-wedding,
.badge-event,
.badge-standard {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-wedding {
    background: var(--clr-gold);
    color: white;
}

.badge-event {
    background: var(--clr-blue, #2c5aa0);
    color: white;
}

.badge-standard {
    background: var(--clr-gold);
    color: white;
}


/* Backward compatibility */

.badge-premium {
    background: var(--clr-gold);
    color: white;
}

.badge-additional {
    background: var(--clr-gold);
    color: white;
}

.amenity-card-content {
    padding: 24px;
}

.amenity-card-title {
    margin: 0 0 12px;
    color: var(--clr-heading);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}


/* Property and City Info */

.amenity-card-property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 16px;
}

.property-name,
.property-city {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-light);
    font-size: 13px;
    font-weight: 500;
}

.property-name svg,
.property-city svg {
    flex-shrink: 0;
    color: var(--clr-gold);
}

.property-name {
    color: var(--clr-heading);
}

.amenity-card-description {
    margin: 0px;
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.5;
}


/* .amenity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
} */

.view-details {
    color: var(--clr-gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.amenity-card:hover .arrow-icon {
    transform: translateX(4px);
}


/* Empty State */

.amenities-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
}

.empty-message {
    color: var(--clr-label);
    font-size: 18px;
    font-style: italic;
}


/* CTA Section */

.amenities-cta-section {
    padding: 80px 0;
    background: var(--clr-gold);
    color: white;
    text-align: center;
}

.amenities-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
}

.cta-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 160px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--clr-gold);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--clr-gold);
}


/* Responsive Styles */

@media (max-width: 1199px) {
    .amenities-grid-section {
        padding: 60px 0;
    }
    .amenity-card-image {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .amenities-grid-section {
        padding: 50px 0;
    }
    .amenities-section-heading {
        margin-bottom: 40px;
    }
    .amenities-section-heading .section-title {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }
    .amenity-card-image {
        height: 200px;
    }
    .amenity-card-content {
        padding: 20px;
    }
    .amenity-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .amenities-intro-section,
    .amenities-grid-section {
        padding: 40px 0;
    }
    .amenities-intro-content .section-label-row,
    .amenities-section-heading .section-label-row {
        gap: 12px;
    }
    .amenities-intro-content .section-label-line,
    .amenities-section-heading .section-label-line {
        width: 40px;
    }
    .amenities-intro-content .section-label-text,
    .amenities-section-heading .section-label-text {
        font-size: 12px;
    }
    .amenities-intro-content .section-title,
    .amenities-section-heading .section-title {
        font-size: 2.2rem;
    }
    .amenities-intro-content .section-subtitle,
    .amenities-section-heading .section-subtitle {
        font-size: 16px;
    }
    .amenity-card-image {
        height: 180px;
    }
    .amenity-card-title {
        font-size: 1.25rem;
    }
    .amenity-card-description {
        font-size: 14px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .amenities-grid-item {
        margin-bottom: 20px;
    }
    .amenity-card-image {
        height: 160px;
    }
    .amenity-card-content {
        padding: 16px;
    }
    .amenity-card-title {
        font-size: 1.125rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-subtitle {
        font-size: 16px;
    }
}


/* ================================================================
   OFFERS PAGE STYLES
   ================================================================ */


/* Offers Section */

.offers-section {
    padding: 80px 0;
    background: var(--clr-cream);
}


/* Breadcrumb */


/* .card-two-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--clr-text-light);
} */


/* .card-two-breadcrumb__link {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color 0.2s;
} */


/* .card-two-breadcrumb__link:hover {
    color: var(--clr-gold-hover);
    text-decoration: underline;
}

.card-two-breadcrumb__sep {
    color: var(--clr-text-light);
}

.card-two-breadcrumb__current {
    color: var(--clr-text);
    font-weight: 500;
} */


/* Section Heading */


/* .section-heading {
    text-align: center;
    margin-bottom: 50px;
} */


/* .section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
} */


/* .section-label-line {
    width: 60px;
    height: 2px;
    background: var(--clr-gold);
    flex-shrink: 0;
} */


/* .section-label-text {
    color: var(--clr-label);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
} */


/* .section-title {
    color: var(--clr-heading);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
} */


/* .section-subtitle {
    color: var(--clr-text);
    font-family: var(--font-ui);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
} */


/* Offer Cards */

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offer-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.offer-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.offer-card:hover .offer-card-img {
    transform: scale(1.05);
}

.offer-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
}

.offer-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.badge-offer {
    display: inline-block;
    background: var(--clr-gold);
    color: white;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card-city {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.city-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--clr-text);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.offer-card-content {
    padding: 24px;
}

.offer-card-title {
    color: var(--clr-heading);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.offer-card-property {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: var(--font-ui);
    font-size: 14px;
}

.property-name {
    color: var(--clr-text);
    font-weight: 600;
}

.property-brand {
    color: var(--clr-gold);
    font-weight: 500;
    padding: 2px 8px;
    background: rgba(184, 151, 90, 0.1);
    border-radius: 4px;
}

.offer-card-description {
    color: var(--clr-text-light);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0px;
}

.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
}

.view-offer {
    color: var(--clr-gold);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.offer-card:hover .view-offer {
    color: var(--clr-gold-hover);
}

.arrow-icon {
    color: var(--clr-gold);
    transition: transform 0.2s;
}

.offer-card:hover .arrow-icon {
    transform: translateX(4px);
}


/* Empty State */

.offers-empty-state {
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}


/* Responsive Styles */

@media (max-width: 1199px) {
    .offer-card-image {
        height: 200px;
    }
    .offer-card-content {
        padding: 20px;
    }
    .offer-card-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 991px) {
    .offers-section {
        padding: 60px 0;
    }
    /* .section-title {
        font-size: 2.25rem;
    } */
    .offer-card-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .offers-section {
        padding: 50px 0;
    }
    /* .section-heading {
        margin-bottom: 40px;
    } */
    /* .section-title {
        font-size: 2rem;
    } */
    /* .section-subtitle {
        font-size: 1rem;
    } */
    .offer-card-image {
        height: 160px;
    }
    .offer-card-content {
        padding: 16px;
    }
    .offer-card-title {
        font-size: 1.25rem;
    }
    .offer-card-description {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .offers-section {
        padding: 40px 0;
    }
    .section-label-row {
        gap: 12px;
    }
    /* .section-label-line {
        width: 40px;
    } */
    .offer-card-image {
        height: 140px;
    }
    .offer-card-property {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}


/* ════════════════════════════════════════════════════════════════
   BRAND CITY SERVICES SECTION  (bcs- namespace)
   Two-level navigation:
     • Top tabs + top arrows  → switch BRAND (which brand-slide shows)
     • Bottom arrows + dots   → cycle PROPERTIES within that brand

   Reuses .dsh-tab / .dsh-arrow / .dsh-nav-btn / .dsh-dot styles.
   This file only defines the show/hide logic + tab grid widths.
   ════════════════════════════════════════════════════════════════ */


/* ── Tabs row layout ────────────────────────────────────────── */

.dsh-section {
    background: var(--clr-page-bg, #f9f6f0);
}


/* Label row */

.dsh-label-line {
    width: 56px;
    height: 1px;
    background: var(--clr-gold, #c69a36);
    flex-shrink: 0;
    display: inline-block;
}

.dsh-label-text {
    color: #173843;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
}


/* Heading */

.dsh-title {
    color: #0d3442;
    font-family: var(--font-heading, serif);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: .95;
}

.dsh-intro {
    max-width: 760px;
    color: #173843;
    font-family: var(--font-heading, serif);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.55;
}


/* Tabs wrap grid */

.dsh-tabs-wrap {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    position: relative;
}

.dsh-tabs {
    gap: clamp(16px, 3vw, 52px);
    box-sizing: border-box;
    justify-content: center !important;
    overflow: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dsh-tabs::-webkit-scrollbar {
    display: none;
}

.dsh-tab {
    min-width: clamp(84px, 10vw, 180px);
    scroll-snap-align: center;
    border: 0;
    background: transparent;
    padding: 0;
    min-height: 40px;
    color: rgba(77, 72, 66, .34);
    font-family: var(--font-ui, sans-serif);
    font-size: clamp(10px, 1.2vw, 15px);
    font-weight: 400;
    letter-spacing: clamp(.12em, .2vw, .26em);
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: color .25s ease;
}

.dsh-tab:hover {
    color: rgba(198, 154, 54, .65);
}

.dsh-tab--active {
    /* min-width: clamp(84px, 10vw, 140px); */
    min-width: clamp(7rem, 10vw, 180px);
    padding: 0 clamp(12px, 1.5vw, 20px);
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    color: var(--clr-gold);
    font-weight: 500;
}


/* Top arrows */

.dsh-arrow {
    width: clamp(28px, 3vw, 44px);
    height: clamp(28px, 3vw, 44px);
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: background .25s ease;
    flex-shrink: 0;
}

.dsh-arrow:hover {
    background: rgba(198, 154, 54, .08);
}

.dsh-arrow img {
    width: clamp(14px, 1.5vw, 20px);
    height: clamp(14px, 1.5vw, 20px);
    display: block;
}


/* Cards */

.dsh-card {
    height: clamp(260px, 30vw, 392px);
    background: #ddd;
}

.dsh-card__img {
    transition: transform .45s ease;
}

.dsh-card:hover .dsh-card__img {
    transform: scale(1.04);
}

.dsh-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .18) 50%, rgba(0, 0, 0, .66) 100%);
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* Bottom nav */

.dsh-nav-btn {
    width: clamp(36px, 3vw, 44px);
    height: clamp(36px, 3vw, 44px);
    background: transparent;
    border: 1px solid var(--clr-gold, #c69a36);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background .25s ease;
}

.dsh-nav-btn:hover {
    background: rgba(198, 154, 54, .08);
}

.dsh-nav-btn img {
    width: clamp(15px, 1.3vw, 18px);
    height: clamp(15px, 1.3vw, 18px);
    display: block;
}


/* Dots */

.dsh-dot {
    width: clamp(7px, 0.8vw, 9px);
    height: clamp(7px, 0.8vw, 9px);
    border-radius: 50%;
    background: #d2d2d2;
    display: inline-block;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.dsh-dot--active {
    background: var(--clr-gold, #c69a36);
    transform: scale(1.2);
}


/* Owl alignment */

.dsh-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.dsh-carousel .owl-item {
    display: flex;
    height: auto;
}

.dsh-carousel .owl-item>.dsh-slide {
    width: 100%;
}

.dsh-slide {
    width: 100%;
}

.dsh-nav-btn--disabled,
.dsh-arrow--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}


/* END DINING SHOWCASE SECTION */


/* END DINING SHOWCASE SECTION */


/* ══════════════════════════════════════════════════════
   BRAND CITY SERVICES — PROFESSIONAL
   ══════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   BRAND CITY SERVICES — PROFESSIONAL
   ══════════════════════════════════════════════════════ */

.bcs-tabs-wrap {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 0 8px !important;
    position: relative;
}

.bcs-tabs {
    display: block !important;
    overflow: hidden !important;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.bcs-arrow--prev,
.bcs-arrow--next {
    width: 100%;
    height: 42px;
    border: 1.5px solid #B88525;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
}

.bcs-arrow--prev:hover,
.bcs-arrow--next:hover {
    background: #B88525;
}

.bcs-arrow--prev:active,
.bcs-arrow--next:active {
    transform: scale(0.93);
}

.bcs-arrow--prev img,
.bcs-arrow--next img {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.bcs-arrow--prev:hover img,
.bcs-arrow--next:hover img {
    filter: brightness(0) invert(1);
}

.bcs-tabs.bcs-tabs--measure {
    justify-content: flex-start !important;
    overflow: visible !important;
}

.bcs-tabs::-webkit-scrollbar {
    display: none;
}

.bcs-strip {
    display: flex;
    position: relative;
    z-index: 1;
}

.bcs-tabs-wrap::after {
    content: none;
}


/* ── Tab base ─────────────────────────────────────────── */

.bcs-tabs .bcs-tab {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    color: var(--clr-label);
    font-family: var(--font-ui, sans-serif);
    font-size: clamp(10px, 1.2vw, 15px);
    /* fixed — no clamp; predictable measurement */
    font-weight: 500;
    /* KEY: always 500 so width never changes between active/inactive */
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.5;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}


/* Inactive look — same weight, just dimmer */

.bcs-tabs .bcs-tab:not(.dsh-tab--active) {
    color: var(--clr-label);
    opacity: 0.5;
}

.bcs-tabs .bcs-tab:hover {
    color: var(--clr-gold-hover) !important;
}


/* Active look — gold color only, NO weight change */

.bcs-tabs .bcs-tab.dsh-tab--active {
    color: var(--clr-gold, #B88525) !important;
    opacity: 1;
}


/* ── Golden frame (centered overlay) ──────────────────── */

.bcs-gold-frame {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border: 1.5px solid var(--clr-gold, #c69a36);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: left .45s cubic-bezier(.25, .8, .25, 1), width .45s cubic-bezier(.25, .8, .25, 1), height .45s cubic-bezier(.25, .8, .25, 1), opacity .2s ease;
    will-change: left, width, height;
}

.bcs-gold-frame.is-ready {
    opacity: 1;
}


/* ── Brand slides ─────────────────────────────────────── */

.bcs-brand-wrap {
    position: relative;
}

.bcs-brand-slide {
    display: none;
}

.bcs-brand-slide.is-active {
    display: block;
    animation: bcsFadeBrand .35s ease both;
}

@keyframes bcsFadeBrand {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ── Property slides ──────────────────────────────────── */

.bcs-property-slide {
    display: none;
}

.bcs-property-slide.is-active {
    display: block;
    animation: bcsFadeProp .3s ease both;
}

@keyframes bcsFadeProp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ── Arrow disabled ───────────────────────────────────── */

.bcs-arrow--prev[disabled],
.bcs-arrow--next[disabled],
.bcs-nav-btn--prev[disabled],
.bcs-nav-btn--next[disabled] {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}


/* ══════════════════════════════════════════════════════
   TABLET ≤ 1199px
   ══════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
    .bcs-tabs .bcs-tab {
        padding: 10px 8px;
    }
}


/* ══════════════════════════════════════════════════════
   MOBILE ≤ 767px
   ══════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .bcs-tabs-wrap {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 0 6px !important;
    }
    .bcs-arrow--prev,
    .bcs-arrow--next {
        height: 36px;
    }
    .bcs-arrow--prev img,
    .bcs-arrow--next img {
        width: 13px;
        height: 13px;
    }
    .bcs-tabs .bcs-tab {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .bcs-tabs .bcs-tab.dsh-tab--active {
        animation: bcsTabPop .22s ease both;
    }
    @keyframes bcsTabPop {
        from {
            opacity: 0;
            transform: scale(.93);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    .bcs-gold-frame {
        transition: opacity .2s ease;
    }
}


/* END BCS */


/* ════════════════════════════════════════════════════════════════
   CONTACT PROPERTY SELECTOR SECTION  (cps- namespace)
   City dropdown + brand pill tabs + split card (dark info panel
   on the left, "Get in Touch" form on the right).
   Self-contained — does not affect any other page.
   ════════════════════════════════════════════════════════════════ */

.cps-section {
    background: var(--clr-page-bg, #f9f6f0);
}


/* ── Toolbar: dropdown + brand tabs ─────────────────────────── */

.cps-toolbar {
    width: 100%;
}


/* City dropdown */

.cps-city {
    position: relative;
    flex: 0 0 auto;
    min-width: 220px;
}

.cps-city__btn {
    width: 100%;
    background: #fff;
    border: 1px solid #e3dfd7;
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--clr-label);
    font-family: var(--font-ui, sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    cursor: pointer;
    text-transform: uppercase;
    transition: border-color .25s ease;
}

.cps-city__btn:hover {
    border-color: var(--clr-gold);
}

.cps-city__btn[aria-expanded="true"] {
    border-color: var(--clr-gold);
}

.cps-city__pin {
    color: var(--clr-gold);
    flex-shrink: 0;
}

.cps-city__label {
    flex: 1 1 auto;
    text-align: left;
}

.cps-city__caret {
    color: #6d6a64;
    transition: transform .25s ease;
}

.cps-city__btn[aria-expanded="true"] .cps-city__caret {
    transform: rotate(180deg);
}

.cps-city__list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e3dfd7;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(13, 52, 66, .08);
    max-height: 280px;
    overflow-y: auto;
    z-index: 30;
    display: none;
}

.cps-city__list.is-open {
    display: block;
}

.cps-city__option {
    padding: 10px 16px;
    cursor: pointer;
    color: var(--clr-label);
    font-family: var(--font-ui, sans-serif);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .15s ease, color .15s ease;
}

.cps-city__option:hover,
.cps-city__option:focus-visible {
    background: rgba(198, 154, 54, .08);
    color: var(--clr-gold);
    outline: none;
}

.cps-city__option.is-selected {
    color: var(--clr-gold);
    font-weight: 500;
}


/* Brand pill tabs */

.cps-brands-shell {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e3dfd7;
    border-radius: 4px;
    padding: 4px 42px;
    gap: 4px;
    overflow: hidden;
    position: relative;
}

.cps-brands-arrow {
    width: 38px;
    min-width: 38px;
    height: calc(100% - 8px);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clr-label) !important;
    cursor: pointer;
    border-radius: 3px;
    position: absolute;
    top: 4px;
    z-index: 2;
    transition: color .2s ease, background .2s ease, opacity .2s ease;
    visibility: visible !important;
}

.cps-brands-arrow[hidden] {
    display: inline-flex !important;
}

.cps-brands-arrow--prev {
    left: 4px;
}

.cps-brands-arrow--next {
    right: 4px;
}

.cps-brands-arrow span {
    display: block;
    font-size: 30px;
    font-weight: 300;
    line-height: .8;
    transform: translateY(-1px);
}

.cps-brands-arrow:hover:not(:disabled) {
    background: rgba(191, 137, 31, .1);
    color: var(--clr-gold) !important;
}

.cps-brands-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cps-brands {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    background: transparent;
    border: 0;
    border-radius: 4px;
    padding: 0;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.cps-brands::-webkit-scrollbar {
    display: none;
}

.cps-brand {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    padding: 12px 22px;
    color: var(--clr-label);
    font-family: var(--font-ui, sans-serif);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: color .25s ease, background .25s ease;
}

.cps-brand:hover {
    color: var(--clr-gold);
}

.cps-brand--active {
    background: var(--clr-gold);
    color: #fff;
}

.cps-brand--active:hover {
    color: #fff;
}


/* ── Card (split panel) ─────────────────────────────────────── */

.cps-card {
    background: #fff;
}


/* Left dark panel */

.cps-panel {
    background: #2a2926;
    color: #fff;
    min-height: 520px;
    overflow: hidden;
    border-radius: 4px 0 0 4px;
}

@media (max-width: 991.98px) {
    .cps-panel {
        min-height: auto;
        border-radius: 4px 4px 0 0;
    }
}

.cps-panel__inner {
    padding: 36px 40px;
    height: 100%;
}


/* Big translucent PC watermark */

.cps-panel__watermark {
    position: absolute;
    bottom: -30px;
    right: -10px;
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-style: italic;
    font-weight: 400;
    font-size: 320px;
    line-height: 1;
    color: var(--clr-gold);
    opacity: .12;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -.04em;
}


/* Branch tabs (rebuilt by JS) */

.cps-branch {
    background: transparent;
    border: 0;
    /* padding: 8px 0; */
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-ui, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color .25s ease;
}

.cps-branch:hover {
    color: rgba(255, 255, 255, .8);
}

.cps-branch--active {
    color: #fff;
}

.cps-branch--active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--clr-gold);
}


/* Branch info content */

.cps-info__name {
    font-family: var(--font-heading, serif);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
}

.cps-info__tagline {
    font-family: var(--font-ui, sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .02em;
}

.cps-info__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
}

.cps-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(198, 154, 54, .35);
    border-radius: 50%;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.cps-info__text {
    color: #fff;
    font-family: var(--font-ui, sans-serif);
    font-size: 14px;
    line-height: 1.45;
    padding-top: 6px;
}


/* ── Owl Carousel inside info panel ──────────────────────── */

.cps-info {
    position: relative;
}

.cps-carousel {
    position: static;
    /* let arrows position relative to .cps-info */
    min-height: 200px;
    /* prevent collapse before Owl initialises */
}

.cps-carousel .owl-stage-outer {
    overflow: hidden;
}

.cps-carousel__slide {
    padding: 0 52px;
    /* room for arrow buttons so text won't overlap */
    min-height: 170px;
}


/* Hide the default Owl nav/dots — we use custom arrows */

.cps-carousel .owl-dots,
.cps-carousel .owl-nav {
    display: none !important;
}


/* Arrow buttons (prev / next) */

.cps-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(198, 154, 54, .35);
    background: transparent;
    color: var(--clr-gold, #c69a36);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transition: background .25s ease, border-color .25s ease, opacity .3s ease;
}

.cps-carousel__arrow:hover {
    background: rgba(198, 154, 54, .12);
    border-color: var(--clr-gold, #c69a36);
}

.cps-carousel__arrow:focus-visible {
    outline: 2px solid var(--clr-gold, #c69a36);
    outline-offset: 2px;
}

.cps-carousel__arrow:disabled,
.cps-carousel__arrow[disabled] {
    opacity: 0;
    pointer-events: none;
}

.cps-carousel__arrow--prev {
    left: 6px;
}

.cps-carousel__arrow--next {
    right: 6px;
}


/* Empty state */

.cps-empty {
    color: rgba(255, 255, 255, .65);
    font-family: var(--font-ui, sans-serif);
    font-size: 14px;
    margin-top: 20px;
}


/* ── Right: Form panel ──────────────────────────────────────── */

.cps-form-wrap {
    background: #fff;
}

.cps-form-inner {
    padding: 36px 40px;
}

.cps-form-title {
    font-family: var(--font-heading, serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--clr-label);
}

.cps-form__label {
    display: block;
    font-family: var(--font-ui, sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-label);
    margin-bottom: 6px;
}

.cps-form__input,
.cps-form__textarea {
    /* background: #f4f1eb; */
    border: 1px solid #00000059;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: var(--font-ui, sans-serif);
    font-size: 14px;
    color: var(--clr-label);
    width: 100%;
    transition: border-color .2s ease, background .2s ease;
}

.cps-form__input::placeholder,
.cps-form__textarea::placeholder {
    color: var(--clr-label) !important;
    opacity: 0.6;
}

.cps-form__input:focus,
.cps-form__textarea:focus {
    outline: 0;
    background: #fff;
    border-color: var(--clr-gold, #c69a36);
    box-shadow: 0 0 0 3px rgba(198, 154, 54, .12);
}

.cps-form__textarea {
    resize: vertical;
    min-height: 110px;
}


/* Honeypot — visually hidden, but present for bots that fill every field */

.cps-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* Submit button */

.cps-form__submit {
    margin-top: 6px;
    background: var(--clr-gold, #c69a36);
    border: 0;
    color: #fff;
    padding: 14px 24px;
    font-family: var(--font-ui, sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s ease, transform .15s ease;
}

.cps-form__submit:hover {
    background-color: var(--clr-gold-hover);
}

.cps-form__submit:active {
    transform: translateY(1px);
}

.cps-form__submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.cps-form__submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cpsSpin .7s linear infinite;
}

.cps-form__submit.is-loading .cps-form__submit-spinner {
    display: inline-block;
}

.cps-form__submit.is-loading .cps-form__submit-label {
    opacity: .7;
}

@keyframes cpsSpin {
    to {
        transform: rotate(360deg);
    }
}


/* Status message */

.cps-form__status {
    font-family: var(--font-ui, sans-serif);
    font-size: 13px;
    line-height: 1.5;
    min-height: 0;
}

.cps-form__status.is-success {
    color: #2d7a3a;
    background: rgba(45, 122, 58, .08);
    padding: 10px 14px;
    border-radius: 4px;
}

.cps-form__status.is-error {
    color: #b03a2e;
    background: rgba(176, 58, 46, .08);
    padding: 10px 14px;
    border-radius: 4px;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .cps-toolbar {
        flex-direction: column;
    }
    .cps-city {
        width: 100%;
    }
    .cps-brands-shell {
        width: 100%;
    }
    .cps-panel__inner,
    .cps-form-inner {
        padding: 28px 24px;
    }
    .cps-info__name {
        font-size: 24px;
    }
    .cps-form-title {
        font-size: 26px;
    }
    .cps-panel__watermark {
        font-size: 220px;
        bottom: -20px;
        right: -10px;
    }
    /* Carousel adjustments — tablet */
    .cps-carousel__slide {
        padding: 0 44px;
    }
    .cps-carousel__arrow--prev {
        left: 4px;
    }
    .cps-carousel__arrow--next {
        right: 4px;
    }
}

@media (max-width: 575.98px) {
    .cps-brands-shell {
        width: 100%;
        padding: 4px 34px;
    }
    .cps-brands-arrow {
        width: 30px;
        min-width: 30px;
    }
    .cps-brand {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: .1em;
    }
    .cps-panel__inner,
    .cps-form-inner {
        padding: 24px 20px;
    }
    .cps-info__name {
        font-size: 22px;
    }
    .cps-info__list {
        gap: 18px;
    }
    .cps-form-title {
        font-size: 24px;
    }
    .cps-panel__watermark {
        font-size: 180px;
    }
    /* Carousel adjustments — mobile */
    .cps-carousel__slide {
        padding: 0 36px;
    }
    .cps-carousel__arrow {
        width: 32px;
        height: 32px;
    }
    .cps-carousel__arrow svg {
        width: 14px;
        height: 14px;
    }
    .cps-carousel__arrow--prev {
        left: 2px;
    }
    .cps-carousel__arrow--next {
        right: 2px;
    }
}


/* END CONTACT PROPERTY SELECTOR SECTION */


/* ════════════════════════════════
   OFFER DETAIL — minimal custom
   ════════════════════════════════ */

.offer-detail-section {
    background: var(--clr-cream);
}


/* Typography */

.offer-detail__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.offer-terms__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 500;
    color: var(--clr-heading);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.offer-detail__label {
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--clr-heading);
    margin-bottom: 3px;
}

.offer-detail__sub {
    font-family: var(--font-ui);
    font-size: 14px;
    color: #282828;
    line-height: 1.65;
}

.offer-detail__amenity-text {
    font-family: var(--font-ui);
    font-size: 14px;
    color: #282828;
    line-height: 1.5;
}


/* Amenity rows — gold border */

.offer-detail__amenities {
    width: 100%;
}

.offer-detail__amenity-row {
    border-bottom: 1px solid rgba(184, 133, 37, 0.3);
}

.offer-detail__amenity-row:first-child {
    border-top: 1px solid rgba(184, 133, 37, 0.3);
}

.offer-detail__icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    opacity: 0.75;
}


/* Images */

.offer-detail__main-img {
    height: clamp(260px, 50vw, 580px);
}

.offer-terms__landscape-img {
    height: clamp(240px, 42vw, 520px);
}


/* Terms bullet */

.offer-terms__list {
    list-style: none;
}

.offer-terms__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-body);
    font-size: 15px;
    line-height: 1.65;
}


/* Contact phone */

.offer-terms__contact-phone {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-gold);
    text-decoration: none;
    transition: color var(--t);
}

.offer-terms__contact-phone:hover {
    color: var(--clr-gold-hover);
    text-decoration: underline;
}


/* ════════════════════════════════════════════════════════════════
   PRESS SINGLE PAGE
   ════════════════════════════════════════════════════════════════ */


/*
.press-single-section .blog-single-section {
    background: var(--clr-cream);
    padding: 32px 0 80px;
} */


/* .press-single-container {
    max-width: 860px;
} */


/* Breadcrumb reuses .card-two-breadcrumb — no extra styles needed */


/* ────────────────────────────────────────────────────────────────
   GRID 2-AUTO LAYOUT
   - Left column: 1.5rem gap (44px)
   - Right column: 0.75rem gap (22px)
   - Maintains column widths and responsive order
   ──────────────────────────────────────────────────────────────── */


/* .grid-2-auto {
    grid-template-columns: auto auto;
    gap: 22px;
    display: grid;
} */

.faq-two-column {
    column-count: 2;
    column-gap: 22px;
}

.faq-two-column>.faq-item {
    break-inside: avoid;
    margin-bottom: 22px;
}


/* Mobile: collapse to single column with standard gap */

@media (max-width: 767.98px) {
    /* .grid-2-auto {
        grid-template-columns: auto;
        gap: 22px;
        display: grid;
    } */
    .faq-two-column {
        column-count: 1;
    }
}

.chc-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}


/* Shared grid — tab row and cards share the same columns
   so left/right edges are always pixel-perfectly aligned    */

.chc-outer {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 0 8px;
}


/* display:contents dissolves the wrapper so its three children
   (prev arrow, track, next arrow) sit in the grid directly   */

.chc-tabs-wrapper {
    display: contents;
}

.chc-tabs-wrapper .chc-tab-arrow,
.chc-tabs-wrapper .chc-track {
    margin-bottom: 12px;
}


/* Tab arrow buttons */

.chc-tab-arrow {
    width: 100%;
    height: 42px;
    border: 1.5px solid #B88525;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
}

.chc-tab-arrow:hover {
    background: #B88525;
}

.chc-tab-arrow:hover svg path {
    stroke: #fff;
}

.chc-tab-arrow:active {
    transform: scale(0.93);
}

.chc-tab-arrow svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.chc-tab-arrow--right svg {
    transform: rotate(180deg);
}


/* Track — clips the strip, hosts the gold box */

.chc-track {
    position: relative;
    overflow: hidden;
    width: 100%;
}


/* Gold active box — placed once by JS, never animated */

.chc-active-box {
    position: absolute;
    top: 0;
    bottom: 0;
    border: 1.5px solid #B88525;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}


/* Sliding strip — the ONLY element that moves */

.chc-strip {
    display: flex;
    position: relative;
    z-index: 1;
}


/* Individual tab */

.chc-tab {
    flex-shrink: 0;
    padding: 10px 8px;
    font-family: var(--font-ui, sans-serif);
    font-size: clamp(10px, 1.2vw, 15px);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-label);
    opacity: 0.5;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    user-select: none;
    transition: color 0.2s;
}

.chc-tab:hover {
    color: var(--clr-gold-hover) !important;
}

.chc-tab.is-center {
    color: var(--clr-gold) !important;
    opacity: 1;
}


/* Cards area — spans all 3 grid columns */

.chc-cards-area {
    grid-column: 1 / -1;
    /* background: #EDE8E1; */
    /* border-radius: 12px; */
    /* padding: 24px; */
    /* border: 1px solid rgba(201, 185, 154, 0.35); */
}


/* City-switch fade */

.chc-cards-area.is-switching {
    opacity: 0;
    transition: opacity 0.18s ease;
}

.chc-cards-area.is-entering {
    opacity: 0;
}

.chc-cards-area.is-visible {
    opacity: 1;
    transition: opacity 0.28s ease;
}


/* Skeleton shimmer while images load */

.chc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(237, 232, 225, 0) 0%, rgba(237, 232, 225, 0.7) 50%, rgba(237, 232, 225, 0) 100%);
    background-size: 200% 100%;
    background-color: #d4cfc8;
    animation: chcShimmer 1.2s infinite linear;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.chc-card.img-loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes chcShimmer {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}


/* Swiper wrapper */

.chc-swiper {
    overflow: hidden;
    border-radius: 8px;
}


/* Hotel card */

.chc-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    cursor: pointer;
    border: 1px solid rgba(201, 185, 154, 0.25);
}

.chc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chc-card:hover img {
    transform: scale(1.04);
}

.chc-card .chc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 15, 10, .7) 0%, rgba(20, 15, 10, .15) 40%, transparent 70%);
    pointer-events: none;
}


/*
.chc-card .chc-name {
    position: absolute;
    bottom: 28px;
    left: 24px;
    right: 24px;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
} */


/*
.chc-card[data-font="bold"] .chc-name {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 1px;
} */


/* .chc-card[data-font="script"] .chc-name {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
}

.chc-card[data-font="hand"] .chc-name {
    font-family: 'Dancing Script', cursive;
    font-size: 34px;
    font-weight: 600;
} */


/* Bottom controls */

.chc-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.chc-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1.5px solid #B88525;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
}

.chc-arrow:hover {
    background: #B88525;
}

.chc-arrow:hover svg path {
    stroke: #fff;
}

.chc-arrow:active {
    transform: scale(0.93);
}

.chc-arrow.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

.chc-arrow svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.chc-arrow--right svg {
    transform: rotate(180deg);
}

.chc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chc-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C9B99A;
    opacity: 1;
    transition: background .3s, transform .3s;
}

.chc-pagination .swiper-pagination-bullet-active {
    background: #B88525;
    transform: scale(1.2);
}


/* Responsive */

@media (max-width: 768px) {
    .chc-section {
        padding: 24px 12px;
    }
    .chc-outer {
        grid-template-columns: 36px 1fr 36px;
        gap: 0 6px;
    }
    .chc-tabs-wrapper .chc-tab-arrow,
    .chc-tabs-wrapper .chc-track {
        margin-bottom: 8px;
    }
    .chc-tab-arrow {
        height: 36px;
    }
    .chc-tab-arrow svg {
        width: 13px;
        height: 13px;
    }
    .chc-tab {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .chc-cards-area {
        padding: 16px;
        border-radius: 8px;
    }
    /* .chc-card {
        aspect-ratio: 3 / 4;
    } */
    /* .chc-card .chc-name {
        font-size: 22px;
        bottom: 18px;
        left: 16px;
    } */
    /* .chc-card[data-font="script"] .chc-name {
        font-size: 28px;
    }
    .chc-card[data-font="hand"] .chc-name {
        font-size: 26px;
    } */
    .chc-arrow {
        width: 36px;
        height: 36px;
    }
    .chc-controls {
        margin-top: 18px;
    }
}


/* Refund-Policy */


/* Refund-Policy */

.refund-section {
    /* background: #f5ede0; */
    /* exact cream from screenshot */
    padding-bottom: 80px;
}


/* ── POLICY BLOCK ────────────────────────────────── */

.policy-block {
    margin-bottom: 36px;
}

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


/* Numbered heading — "1. Cancellation Policy:" */

.policy-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-heading);
    margin-bottom: 10px;
    line-height: 1.35;
}


/* Bullet list */

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

.policy-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-heading);
    line-height: 1.72;
    margin-bottom: 10px;
    font-family: var(--font-ui);
}

.policy-list li:last-child {
    margin-bottom: 0;
}


/* bullet dot */

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-heading);
    font-size: 14px;
    line-height: 1.72;
}


/* ── DIVIDER between columns on large screens ─── */

@media (min-width: 992px) {
    .col-policy-left {
        padding-right: 56px;
        border-right: 1px solid rgba(0, 0, 0, .08);
    }
    .col-policy-right {
        padding-left: 56px;
    }
}


/* ── Active page ── */

.ajax-pagination-wrapper .page-item.active .page-link {
    background-color: var(--clr-gold) !important;
    border-color: var(--clr-gold) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(184, 133, 37, 0.3);
    font-weight: 700;
}


/* ── Inactive page links ── */

.ajax-pagination-wrapper .page-item:not(.active):not(.disabled) .page-link {
    background-color: #fff;
    color: var(--clr-heading, #002A34);
    border-color: #d6d0c4;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: var(--font-ui, sans-serif);
    font-size: 14px;
}


/* ── Hover ── */

.ajax-pagination-wrapper .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: var(--clr-gold) !important;
    border-color: var(--clr-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 133, 37, 0.3);
    text-decoration: none;
}


/* ── Disabled arrows ── */

.ajax-pagination-wrapper .page-item.disabled .page-link {
    background-color: #f5f2ee;
    border-color: #d6d0c4;
    color: var(--clr-heading);
    opacity: 0.4;
}

.careers-page .privilege-section,

/* .app-download-section, */

.pc-privilege-club-page .privilege-section {
    display: none;
}


/* ════════════════════════════════════════════════════════════════
   HOTEL OVERVIEW — AMENITIES CAROUSEL
   ════════════════════════════════════════════════════════════════ */

.amenity-carousel .owl-item {
    padding: 4px;
}

.amenity-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.amenity-carousel .owl-item .item {
    height: 100%;
}

.amenity-carousel .owl-item .item .card {
    height: 100%;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amenity-overview-card:hover {
    border-color: var(--clr-gold) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}


/* HEADER COLLAPSE ON SCROLL */

@media (min-width: 1200px) {
    .site-header {
        overflow-anchor: none;
    }
    .site-header .header-top-row {
        position: relative;
        z-index: 30;
        max-height: 96px;
        overflow: visible;
        opacity: 1;
        transform: translateY(0);
        transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
    }
    .site-header .navbar {
        position: relative;
        z-index: 10;
    }
    .site-header .header-top-row .global-search-results {
        z-index: 3000 !important;
    }
    body.is-scrolled .site-header .header-top-row {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}


/* END HEADER COLLAPSE ON SCROLL */

.carousel-dot--active,
.carousel-dot.active {
    background: var(--clr-gold);
    transform: scale(1.25);
}


/* ═══════════════════════════════════════════════════════════════
GLOBAL SELECT2 OVERRIDES — Single source of truth
Used by: home-page, offer-page, wedding&event-page,
        restaurant-page, tour-page, amenities-page
═══════════════════════════════════════════════════════════════ */


/* ── .hotels-search-field context (home, offer, wedding, restaurant, tour) ── */

.hotels-search-field .select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid var(--clr-cream-border);
    border-radius: 6px;
    background: #fff;
}

.hotels-search-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding: 0 0.75rem;
    color: var(--clr-heading);
}

.hotels-search-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    width: 32px;
}

.hotels-search-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--clr-gold) transparent transparent transparent;
}

.hotels-search-field .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: var(--clr-cream);
    opacity: 0.6;
    cursor: not-allowed;
}

.hotels-search-field .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: var(--clr-text-muted);
}

.hotels-search-field .select2-dropdown {
    border: 1px solid var(--clr-cream-border);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hotels-search-field .select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--clr-body);
}

.hotels-search-field .select2-results__option--highlighted[aria-selected] {
    background-color: var(--clr-cream);
    color: var(--clr-heading);
}

.hotels-search-field .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(184, 133, 37, 0.08);
}


/* Focus ring */

.hotels-search-field .select2-container--default.select2-container--focus .select2-selection--single,
.hotels-search-field .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(184, 133, 37, 0.12);
    outline: none;
}

.select2-results__option {
    color: var(--clr-label) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: var(--clr-white) !important;
    background-color: var(--clr-gold) !important;
}


/* Smooth cross fade */

.custom-hover-carousel.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}


/* Hide full arrows by default */

.custom-hover-carousel:not(:hover) .carousel-control-prev,
.custom-hover-carousel:not(:hover) .carousel-control-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* Show arrows only when carousel is hovered */

.custom-hover-carousel:hover .carousel-control-prev,
.custom-hover-carousel:hover .carousel-control-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


/* Arrow icon styling */

.custom-hover-carousel .carousel-control-prev-icon,
.custom-hover-carousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 60%;
}

.form-control:focus,
.form-control:focus {
    border-color: var(--clr-gold) !important;
}

.spinner-border {
    color: var(--clr-gold);
}


/* ── Brands Section Redesign ── */

.brands-section {
    background-color: var(--clr-cream);
}

.section-label-line--gold {
    background: var(--clr-gold) !important;
    width: 60px;
}

.section-title--serif {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-heading);
}


/* Glass Card Refinement */

.brand-glass-card,
.glass-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 90%;
    min-height: 300px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.5s ease;
}

.brand-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-height: 100%;
    width: auto;
}

.brand-heading-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    flex: 1;
    max-width: 50px;
}

.brand-title {
    letter-spacing: 0.15em;
    font-weight: 400;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
}

.brands-carousel {
    position: relative;
    z-index: 2;
}

.brands-carousel .owl-item,
.restaurants-carousel .owl-item {
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.brands-carousel .owl-item.center,
.restaurants-carousel .owl-item.center {
    opacity: 1;
    transform: scale(1);
}


/* Scrollable Tabs */

.tabs-wrapper {
    background-color: var(--clr-cream);
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background-color: var(--clr-gold);
}

.nav-arrow img {
    width: 14px;
    transition: filter 0.3s ease;
}

.nav-arrow:hover img {
    filter: brightness(0) invert(1);
}

.custom-tabs .nav-link {
    color: var(--clr-text-muted);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* transition: all 0.3s ease; */
}

.custom-tabs .nav-link.active {
    min-width: fit-content;
    padding: 10px 40px;
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    color: var(--clr-gold);
    font-weight: 600;
}

.restaurants-card__btn {
    /* display: inline-block; */
    background: #fff;
    color: var(--clr-heading);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.restaurants-card__btn:hover {
    background: transparent;
    color: #fff;
}

.bk-panel__group-label {
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-gold);
    background: #f8f5f0;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--clr-cream-border);
}


/* ── Selectable city label (clickable to search entire city) ── */

.bk-panel__group-label--selectable {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.bk-panel__group-label--selectable:hover {
    background: #f0ebe2;
}

.bk-panel__group-label--selectable:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: -2px;
}

.bk-panel__group-label--selected {
    background: var(--clr-gold);
    color: #fff;
}

.bk-panel__group-label--selected:hover {
    background: var(--clr-gold);
}

.bk-panel__group-label-all {
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.bk-panel__group {
    border-bottom: 1px solid var(--clr-cream-border);
}

.bk-panel__group:last-child {
    border-bottom: none;
}

.bk-panel__option {
    padding-left: 32px !important;
    font-size: 13px !important;
}

.bk-panel--list {
    display: none;
    min-width: 250px !important;
    max-height: 400px;
    overflow-y: auto;
    overscroll-behavior: contain;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
}

.bk-panel--list.is-open {
    display: flex;
}

.bk-panel__search-wrap {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    padding: 8px 12px !important;
}

.bk-panel__search-wrap input {
    border: 1px solid var(--clr-border-dark);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px !important;
    width: 100%;
    outline: none;
}

.bk-panel__search-wrap input:focus {
    border-color: var(--clr-gold);
}


/* ── Flatpickr inline range calendar inside dates panel ── */

.bk-panel--dates .flatpickr-calendar {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: transparent;
}

.bk-panel--dates .flatpickr-calendar:before,
.bk-panel--dates .flatpickr-calendar:after {
    display: none !important;
}

.bk-panel--dates .flatpickr-months {
    margin-bottom: 6px;
}

.bk-panel--dates .flatpickr-month {
    height: 40px;
}

.bk-panel--dates .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-heading);
}

.bk-panel--dates .flatpickr-current-month input.cur-year {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-heading);
}

.bk-panel--dates .flatpickr-weekday {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.bk-panel--dates .flatpickr-day {
    border-radius: 0;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    max-width: 40px;
    transition: background 0.15s ease, color 0.15s ease;
}

.bk-panel--dates .flatpickr-day.today {
    border-color: var(--clr-gold);
}

.bk-panel--dates .flatpickr-day:hover {
    background: rgba(184, 133, 37, 0.1);
}

.bk-panel--dates .flatpickr-day.selected,
.bk-panel--dates .flatpickr-day.startRange,
.bk-panel--dates .flatpickr-day.endRange,
.bk-panel--dates .flatpickr-day.inRange {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #fff;
}

.bk-panel--dates .flatpickr-day.inRange {
    background: rgba(184, 133, 37, 0.12);
    border-color: transparent;
    color: var(--clr-heading);
    box-shadow: none;
}

.bk-panel--dates .flatpickr-day.selected:before,
.bk-panel--dates .flatpickr-day.startRange:before,
.bk-panel--dates .flatpickr-day.endRange:before {
    display: none;
}

.bk-panel--dates .flatpickr-day.flatpickr-disabled {
    color: rgba(0, 0, 0, 0.15);
    cursor: not-allowed;
}

.bk-panel--dates .flatpickr-day.flatpickr-disabled:hover {
    background: transparent;
}

.bk-panel--dates .bk-dates-flatpickr-alt {
    display: none !important;
}

.bk-panel--dates .flatpickr-innerContainer {
    padding: 0 4px;
}

.bk-panel--dates .flatpickr-rContainer {
    width: 100%;
}

.bk-panel--dates .flatpickr-days {
    width: 100%;
}

.bk-panel--dates .dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.bk-panel--dates .dayContainer .flatpickr-day {
    flex: unset;
    width: 100%;
}

.bk-panel--dates .flatpickr-next-month,
.bk-panel--dates .flatpickr-prev-month {
    padding: 8px;
}

.bk-panel--dates .flatpickr-next-month svg,
.bk-panel--dates .flatpickr-prev-month svg {
    fill: var(--clr-heading);
}

.flatpickr-calendar--inline {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    visibility: visible !important;
}

@media (max-width: 575px) {
    .bk-panel--dates .flatpickr-days {
        width: 100%;
    }
    .bk-panel--dates .dayContainer {
        min-width: 100%;
    }
    .bk-panel--dates .flatpickr-day {
        height: 36px;
        line-height: 36px;
        max-width: 36px;
        font-size: 13px;
    }
}

.hide {
    display: none !important;
}

.text-gold {
    color: var(--clr-gold) !important;
}

/* Review rating source cards */

.reviews-rating-grid {
    margin-top: clamp(28px, 4vw, 52px);
}

.reviews-rating-card {
    min-height: 100%;
    padding: clamp(22px, 3vw, 34px);
    background: #f7f5f1;
    border: 1px solid rgba(198, 142, 33, .25);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.reviews-rating-card__brand-row,
.reviews-rating-card__score-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews-rating-card__brand-row {
    justify-content: space-between;
    margin-bottom: 18px;
}

.reviews-rating-card__brand {
    display: block;
    width: auto;
    object-fit: contain;
}

.reviews-rating-card__brand--google {
    max-width: min(220px, 62%);
    max-height: 54px;
}

.reviews-rating-card__brand--tripadvisor {
    max-width: min(245px, 64%);
    max-height: 41px;
}

.reviews-rating-card__label,
.reviews-rating-card__count {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--clr-heading);
    white-space: nowrap;
}

.reviews-rating-card__score-row {
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.reviews-rating-card__score {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1;
    color: #2a2826;
}

.reviews-rating-card__stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1;
    white-space: nowrap;
}

.reviews-rating-card__star {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    color: rgba(247, 181, 0, .22);
}

.reviews-rating-card__star::before,
.reviews-rating-card__star::after {
    content: "\2605";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.reviews-rating-card__star::before {
    color: rgba(247, 181, 0, .22);
}

.reviews-rating-card__star::after {
    width: var(--star-fill, 100%);
    overflow: hidden;
    color: #f7b500;
}

.reviews-rating-card__copy {
    max-width: 520px;
    margin: 0;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.65;
    color: var(--clr-heading);
}

@media (max-width: 575px) {
    .reviews-rating-card {
        padding: 22px 18px;
        text-align: center;
    }
    .reviews-rating-card__brand-row,
    .reviews-rating-card__score-row {
        justify-content: center;
    }
    .reviews-rating-card__brand-row {
        flex-direction: column;
        gap: 10px;
    }
    .reviews-rating-card__brand--google,
    .reviews-rating-card__brand--tripadvisor {
        max-width: min(240px, 100%);
    }
    .reviews-rating-card__count,
    .reviews-rating-card__label {
        white-space: normal;
    }
}

/* reCAPTCHA v3 badge is hidden per Google's ToS; required disclosure text
   is shown near each protected form instead (see .recaptcha-disclosure). */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-disclosure {
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
}

.recaptcha-disclosure a {
    color: inherit;
    text-decoration: underline;
}

.grecaptcha-badge { visibility: hidden; }

.newsletter-message{
    color:#fff;
}