/* ================================================================
   PC HOSPITALITY — style.css
   ================================================================
   FONTS
     Avenir        → all body text, UI labels, nav, buttons, tags
     Abhaya Libre  → 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: Avenir, Arial, sans-serif;
    font-size: 0.875rem;
}


/* .section-title {
    color: var(--wedding-heading);
    font-family: 'Abhaya Libre', serif;
    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-hover: #9e7120;
    --clr-cream: #f0ece4;
    --clr-cream-border: #d6d0c4;
    --clr-text-light: #f0ece4;
    --clr-text-muted: #9a9690;
    --clr-heading: #002A34;
    --clr-body: #4a4642;
    --clr-label: #002A34;
    --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;
    /* Fonts */
    --font-ui: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
    --font-heading: 'AbhayaLibre', 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);
}


/* Avenir — all weights mapped to correct files */

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirBook.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirHeavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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


/* AbhayaLibre — variable font with full weight range, name matches CSS variable */

@font-face {
    font-family: 'AbhayaLibre';
    src: url('../fonts/AbhayaLibre[wght].ttf') format('truetype');
    font-weight: 400 800;
    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 Abhaya Libre */

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 48px;
    max-width: 720px;
    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: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--clr-label);
    white-space: nowrap;
}

.section-title {
    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;
    margin-bottom: 16px;
}

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


/* ════════════════════════════════════════════════════════════════
   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;
}


/* 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-link {
    color: var(--side-links-clr) !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 12px 24px !important;
    transition: 0.3s;
}

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

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


/* 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 {
    transform: scaleX(1);
}


/* 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);
}



*/
/* 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;
}


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


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


/* .booking-section {
    background: var(--clr-cream);
    padding: 32px var(--px);
}

.booking-card {
    display: flex;
    align-items: flex-end;
    background: #fff;
    border: 1px solid var(--clr-cream-border);
    border-radius: 8px;
    padding: 28px 32px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}

.booking-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

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

.booking-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
} */


/* Left icon inside field */


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


/* Right chevron — works for both select and trigger */


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


/* Chevron rotates when panel is open */


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


/* ── Custom trigger button (replaces <select>) ── */


/* .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: 12px 40px 12px 38px;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: border-color var(--t);
    appearance: none;
    position: relative;
    z-index: 1;
} */


/* .booking-field__trigger--no-icon {
    padding-left: 14px;
}

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

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

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


/* Vertical divider between fields */


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


/* Find Hotel CTA */


/* .btn-find-hotel {
    flex-shrink: 0;
    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;
    white-space: nowrap;
    margin-left: 24px;
    align-self: flex-end;
    transition: background var(--t), transform var(--t);
} */


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


/* ────────────────────────────────────────────────────────────────
   15. BOOKING DROPDOWN PANELS
   Shared base for city list, dates panel, guests stepper.
   Positioned absolute below the trigger field.
   ──────────────────────────────────────────────────────────────── */


/* .bk-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    background: #ffffff;
    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;
} */


/* Panel open state — added by JS */


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

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


/* ── City list panel ── */


/* .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;
    font-weight: 400;
    color: #1a1816;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

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

.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: 320px;
}

.bk-dates-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bk-dates-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.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;
    height: 40px;
    background: var(--clr-cream-border);
    align-self: flex-end;
    margin-bottom: 2px;
} */


/* ── Guests stepper panel ── */


/* .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;
    font-weight: 400;
    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);
} */


/* ── BOOKING RESPONSIVE ── */


/* @media (max-width: 991px) {
    .booking-section {
        padding: 24px 20px;
    }
    .booking-card {
        padding: 20px;
    }
    .booking-divider {
        margin: 0 14px;
    }
}

@media (max-width: 767px) {
    .booking-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        border-radius: 12px;
        margin: 16px 16px 0;
        padding: 24px 20px;
    }
    .booking-divider {
        display: none;
    }
    .btn-find-hotel {
        width: 100%;
        margin-left: 0;
        padding: 15px;
        font-size: 13px;
        text-align: center;
    }
    .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-row {
        flex-direction: column;
        gap: 12px;
    }
    .bk-dates-sep {
        display: none;
    }
} */


/* ── 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);
}


/* ════════════════════════════════
           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);
}

.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: 320px;
}

.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: 540px;
    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: 600;
    line-height: 1.18;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

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

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 13px;
    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: 'Abhaya Libre', serif;
    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;
}

.card-two-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 var(--px) 28px;
}

.card-two-breadcrumb__link {
    font-family: var(--font-ui);
    font-size: 12px;
    color: #888;
    transition: color var(--t);
}

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

.card-two-breadcrumb__sep {
    font-size: 12px;
    color: #888;
}

.card-two-breadcrumb__current {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    color: #2a2724;
}


/* ────────────────────────────────────────────────────────────────
   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: 600;
    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;
}

.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 {
    background: #fff;
    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: 140px;
}

.card-one-view-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    /* background:    linear-gradient(to bottom, rgb(255 255 255 / 1%) 0%, rgba(255, 255, 225, ) 32%, #ffff 68%); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.9) 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 rgba(0, 0, 0, 0.04);
    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-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;
    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);
}


/* ── 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;
}


/* 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
   ──────────────────────────────────────────────────────────────── */

.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: 20px; */
        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 — Abhaya Libre serif, dark green */

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


/* 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 — Abhaya Libre 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: #a17f3b;
    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-gold);
    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: #2d2d2f;
    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: rgba(176, 129, 41, .22);
}

.site-footer__year {
    color: rgba(176, 129, 41, .34);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
}

.site-footer__brands {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 18px 28px;
    padding: 34px 0 40px;
    border-bottom: 1px solid rgba(176, 129, 41, .18);
}

.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 rgba(176, 129, 41, .45);
    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__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, 480px);
    /* 300px mobile → 480px desktop */
}


/* 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
   ════════════════════════════════════════════════════════════════ */

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


/* ── 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);
}

.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-section {
    background: var(--clr-cream);
    padding: 64px 0;
    overflow: hidden;
}

.hotel-services__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 64px;
}

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

.service-block--text-right .service-block__text {
    order: 2;
}

.service-block--text-right .service-block__image {
    order: 1;
}

.service-block__eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--clr-body);
    display: block;
    margin-bottom: 18px;
}

.service-block__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-heading);
    line-height: 1.15;
    margin: 0 0 20px;
}

.service-block__desc {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--clr-body);
    line-height: 1.75;
    margin: 0 0 28px;
}

.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: 0.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__image {
    overflow: hidden;
    border-radius: 6px;
}

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

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


/* Tablet */


/* 
@media (min-width: 768px) and (max-width: 1199px) {
    .hotel-services-section {
        padding: 52px 0;
    }
    .hotel-services__inner {
        padding: 0 32px;
        gap: 48px;
    }
    .service-block {
        gap: 36px;
    }
    .service-block__title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    .service-block__desc {
        font-size: 13px;
    }
} */


/* Mobile: stack */


/* 
@media (max-width: 767px) {
    .hotel-services-section {
        padding: 40px 0;
    }
    .hotel-services__inner {
        padding: 0 var(--px-mob);
        gap: 40px;
    }
    .service-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-block--text-right .service-block__text,
    .service-block--text-right .service-block__image {
        order: unset;
    }
    .service-block__image {
        order: -1;
    }
} */


/* ── 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: 700;
    color: var(--clr-heading);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.service-block__desc {
    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);
}


/* 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);
}

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


/* ════════════════════════════════════════════════════════════════
   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: 700;
    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: 700;
    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;
}


/* Restaurants */


/* Restaurants */


/* ════════════════════════════════════════════════════════════════
   DINING SHOWCASE SECTION  (dsh- namespace)
   City-tabbed Owl Carousel with 3-card grid per slide.
   Self-contained block — safe to reuse on any page.
   ════════════════════════════════════════════════════════════════ */


/* ── Section wrapper ──────────────────────────────────────────── */

.dsh-section {
    padding: 24px 0 48px;
    background: var(--clr-page-bg, #f9f6f0);
    overflow: hidden;
}

.dsh-section .dsh-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ── Heading ──────────────────────────────────────────────────── */

.dsh-heading {
    max-width: 980px;
    margin: 20px auto 36px;
    text-align: center;
}

.dsh-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.dsh-label-line {
    width: 56px;
    height: 1px;
    background: var(--clr-gold, #c69a36);
    flex-shrink: 0;
}

.dsh-label-text {
    color: #173843;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.dsh-title {
    margin-bottom: 22px;
    color: #0d3442;
    font-family: var(--font-heading, serif);
    font-size: 55px;
    font-weight: 300;
    line-height: .95;
}

.dsh-intro {
    max-width: 760px;
    margin: 0 auto;
    color: #173843;
    font-family: var(--font-heading, serif);
    font-size: 16px;
    line-height: 1.55;
}


/* ── City tabs row ────────────────────────────────────────────── */

.dsh-tabs-wrap {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 18px;
    margin: 0 0 32px;
}

.dsh-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dsh-tabs::-webkit-scrollbar {
    display: none;
}

.dsh-tab {
    border: 0;
    background: transparent;
    padding: 0;
    min-height: 40px;
    color: rgba(77, 72, 66, .34);
    font-family: var(--font-ui, sans-serif);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .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: 140px;
    padding: 0 20px;
    border: 1px solid var(--clr-gold, #c69a36);
    border-radius: 4px;
    color: var(--clr-gold, #c69a36);
    font-weight: 500;
}

.dsh-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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: 20px;
    height: 20px;
    display: block;
}


/* ── Carousel ─────────────────────────────────────────────────── */

.dsh-carousel-shell {
    position: relative;
    overflow: hidden;
}

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


/* ── Cards ────────────────────────────────────────────────────── */

.dsh-card {
    position: relative;
    height: 392px;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
}

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

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

.dsh-card__overlay {
    position: absolute;
    inset: 0;
    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;
}


/* ── Bottom controls ──────────────────────────────────────────── */

.dsh-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dsh-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 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: 18px;
    height: 18px;
    display: block;
}

.dsh-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.dsh-dot {
    width: 9px;
    height: 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);
}


/* ── Responsive: tablet ≤ 1199px ─────────────────────────────── */

@media (max-width: 1199px) {
    .dsh-section .dsh-inner {
        padding: 0 18px;
    }
    .dsh-tabs {
        gap: 26px;
    }
    .dsh-tab {
        font-size: 13px;
        letter-spacing: .18em;
    }
    .dsh-card {
        height: 330px;
    }
}


/* ── Responsive: mobile ≤ 767px ───────────────────────────────── */

@media (max-width: 767px) {
    .dsh-section {
        padding: 18px 0 28px;
    }
    .dsh-section .dsh-inner {
        padding: 0 16px;
    }
    .dsh-heading {
        margin: 14px auto 22px;
    }
    .dsh-title {
        font-size: 36px;
        margin-bottom: 14px;
    }
    .dsh-intro {
        font-size: 14px;
    }
    .dsh-tabs-wrap {
        grid-template-columns: 28px minmax(0, 1fr) 28px;
        gap: 8px;
        margin-bottom: 20px;
    }
    .dsh-tabs {
        gap: 16px;
        justify-content: flex-start;
    }
    .dsh-tab {
        font-size: 10px;
        letter-spacing: .12em;
        min-height: 32px;
    }
    .dsh-tab--active {
        min-width: 84px;
        padding: 0 12px;
    }
    .dsh-arrow {
        width: 28px;
        height: 28px;
    }
    .dsh-arrow img {
        width: 14px;
        height: 14px;
    }
    .dsh-card {
        height: 380px;
        border-radius: 3px;
    }
    .dsh-card--chef .dsh-card__img {
        object-position: center top;
    }
    .dsh-card--food .dsh-card__img,
    .dsh-card--coffee .dsh-card__img {
        object-position: center center;
    }
    .dsh-controls {
        margin-top: 14px;
    }
    .dsh-nav-btn {
        width: 36px;
        height: 36px;
    }
    .dsh-nav-btn img {
        width: 15px;
        height: 15px;
    }
    .dsh-dot {
        width: 7px;
        height: 7px;
    }
}


/* END DINING SHOWCASE SECTION */


/* =========================================================
   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 {
    height: 100%;
}

.explore-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

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

.room-card__amenity {
    flex: 1;
    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);
}

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

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

.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 {
    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 {
    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 {
        padding: 20px 0 48px;
    }
    .press-single-body {
        padding: 24px 20px;
    }
    .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;
    /* Add bottom margin to make room for the line */
    margin-bottom: 20px;
}

.side-link:nth-child(4n)::after,.side-link:nth-child(7n)::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;
}