/* ============================================================
   Sleep Tight Hotels — Main Stylesheet v2.0
   Brand palette: Deep Navy + Warm Gold + Cream
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
    --navy:        #1C2B4A;
    --navy-dark:   #111d35;
    --navy-light:  #2a3f6a;
    --gold:        #C8A951;
    --gold-light:  #e2c97a;
    --gold-dark:   #a8892f;
    --cream:       #FAF7F2;
    --cream-dark:  #F0EDE6;
    --white:       #FFFFFF;
    --charcoal:    #2C3338;
    --grey-mid:    #6B7280;
    --grey-light:  #D1D5DB;
    --teal:        #2E7D7A;
    --teal-light:  #3D9C98;

    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --font-italic: 'Cormorant Garamond', Georgia, serif;

    --radius-sm:   4px;
    --radius:      8px;
    --radius-lg:   16px;
    --radius-xl:   24px;

    --shadow-sm:   0 1px 3px rgba(28,43,74,0.08), 0 1px 2px rgba(28,43,74,0.04);
    --shadow:      0 4px 16px rgba(28,43,74,0.10), 0 2px 6px rgba(28,43,74,0.06);
    --shadow-lg:   0 12px 40px rgba(28,43,74,0.15), 0 4px 12px rgba(28,43,74,0.08);
    --shadow-gold: 0 4px 20px rgba(200,169,81,0.30);

    --transition:  0.25s ease;
    --transition-slow: 0.45s ease;

    --max-width:   1280px;
    --gutter:      clamp(1rem, 4vw, 2rem);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

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

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
address { font-style: normal; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.py-8  { padding-block: 2rem; }
.py-12 { padding-block: 3rem; }
.py-16 { padding-block: 4rem; }
.py-20 { padding-block: 5rem; }
.py-24 { padding-block: 6rem; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    padding: 0.4rem 0;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar__locations, .topbar__contacts {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.topbar__loc, .topbar__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.topbar__loc:hover, .topbar__contact:hover { color: var(--gold); }
.topbar__sep { opacity: 0.4; }

/* ── Header / Navigation ────────────────────────────────────── */
.mobile-sub { display: none; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(28,43,74,0.08);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow);
}
.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-block: 0.9rem;
}
.nav__logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav__logo img { height: 50px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.nav__logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 1px;
}

.nav__menu-wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}
.nav__item { position: relative; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav__link:hover, .nav__item--active .nav__link { color: var(--navy); }

.nav__chevron {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
}
.nav__item--has-dropdown:hover .nav__chevron,
.nav__item--has-dropdown.is-open .nav__chevron { transform: rotate(-135deg) translateY(-1px); }

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(28,43,74,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(-6px);
    list-style: none;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown .nav__link {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    width: 100%;
}
.nav__dropdown .nav__link:hover { background: var(--cream); color: var(--navy); }

/* Mobile burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    margin-left: auto;
}
.nav__burger-bar {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__cta { flex-shrink: 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(200,169,81,0.40);
}
.btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero--short { height: 55vh; max-height: 480px; }

/* ── Revolution-Style Full-Bleed Hero ───────────────────────── */
.rev-hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    overflow: hidden;
    background: var(--navy-dark);
}
.rev-hero__slider {
    position: absolute;
    inset: 0;
}

/* Individual slides */
.rev-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: opacity;
}
.rev-hero__slide--active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Background image with Ken Burns zoom-out */
.rev-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 9s ease-out;
}
.rev-hero__slide--active .rev-hero__bg {
    transform: scale(1);
}

/* Layered overlay — heavy navy left + dark bottom */
.rev-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(28,43,74,0.85) 0%, rgba(28,43,74,0.50) 45%, rgba(28,43,74,0.18) 100%),
        linear-gradient(to top, rgba(8,13,28,0.90) 0%, rgba(8,13,28,0.25) 40%, transparent 68%);
}

/* Text content block */
.rev-hero__content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 640px;
    z-index: 3;
    color: var(--white);
}

/* Staggered entrance animations */
.rev-hero__eyebrow,
.rev-hero__title,
.rev-hero__sub,
.rev-hero__actions,
.rev-hero__trust {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rev-hero__slide--active .rev-hero__eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.rev-hero__slide--active .rev-hero__title   { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.rev-hero__slide--active .rev-hero__sub     { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }
.rev-hero__slide--active .rev-hero__actions { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.rev-hero__slide--active .rev-hero__trust   { opacity: 1; transform: translateY(0); transition-delay: 0.92s; }

/* Eyebrow badge */
.rev-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    padding: 0.38rem 1rem 0.38rem 0.75rem;
    border: 1px solid rgba(200,169,81,0.45);
    border-radius: 2px;
    backdrop-filter: blur(4px);
    background: rgba(200,169,81,0.07);
}
.rev-hero__eyebrow::before {
    content: '';
    display: block;
    width: 1.1rem;
    height: 1px;
    background: var(--gold);
    opacity: 0.8;
}

/* Headline */
.rev-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    margin-bottom: 1.3rem;
}
.rev-hero__title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

/* Sub copy */
.rev-hero__sub {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* CTA row */
.rev-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Ghost white button */
.btn--ghost-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.55);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.btn--ghost-white:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--white);
    color: var(--white);
}

/* Trust badges */
.rev-hero__trust {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.rev-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.62);
}
.rev-hero__trust-item svg { color: var(--gold); opacity: 0.85; flex-shrink: 0; }
.rev-hero__trust-sep { color: rgba(255,255,255,0.2); }

/* Info card — glass panel bottom-right on hotel slides */
.rev-hero__infocard {
    position: absolute;
    bottom: 15%;
    right: 7%;
    z-index: 4;
    background: rgba(18,28,52,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.8rem;
    min-width: 230px;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.65s 1.05s ease, transform 0.65s 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.rev-hero__slide--active .rev-hero__infocard {
    opacity: 1;
    transform: translateX(0);
}
.rev-hero__infocard-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(200,169,81,0.22);
}
.rev-hero__infocard-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    padding: 0.38rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rev-hero__infocard-item:last-child { border-bottom: none; }

/* Navigation arrows */
.rev-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform 0.2s, color var(--transition);
}
.rev-hero__arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}
.rev-hero__arrow--prev { left: 2rem; }
.rev-hero__arrow--next { right: 2rem; }

/* Dot indicators */
.rev-hero__dots {
    position: absolute;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 7px;
    align-items: center;
}
.rev-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.38);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.rev-hero__dot--active {
    width: 30px;
    background: var(--gold);
    border-radius: 4px;
}

/* Slide counter */
.rev-hero__counter {
    position: absolute;
    bottom: 3rem;
    right: 2.5rem;
    z-index: 10;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    letter-spacing: 0.06em;
}
.rev-hero__counter strong { color: var(--white); font-weight: 600; }

/* Progress bar */
.rev-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.12);
    z-index: 10;
    overflow: hidden;
}
.rev-hero__progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width linear;
}

/* Scroll hint */
.rev-hero__scroll-hint {
    position: absolute;
    bottom: 2.8rem;
    left: 8%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.rev-hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(200,169,81,0.7), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ── Mega Menu ───────────────────────────────────────────────── */
.nav__mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav__mega-trigger:hover,
.nav__mega-trigger[aria-expanded="true"] { color: var(--navy); }

.nav__chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    color: var(--grey-mid);
}
.nav__mega-trigger[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

/* Mega panels — positioned from site-header */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 2px solid var(--gold);
    box-shadow: 0 24px 64px rgba(28,43,74,0.16), 0 4px 16px rgba(28,43,74,0.08);
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
    pointer-events: none;
}
.mega-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0s;
    pointer-events: auto;
}

.mega-panel__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding: 2.5rem 0 2.5rem;
    align-items: start;
}

/* Intro column */
.mega-panel__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}
.mega-panel__title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.mega-panel__desc {
    font-size: 0.88rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.mega-panel__all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
    margin-bottom: 1.5rem;
}
.mega-panel__all-link:hover { color: var(--gold-dark); }
.mega-panel__quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
}
.mega-panel__quick {
    font-size: 0.82rem;
    color: var(--grey-mid);
    transition: color var(--transition);
}
.mega-panel__quick:hover { color: var(--navy); }

/* Cards grid */
.mega-panel__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: start;
}

/* Individual mega card */
.mega-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(28,43,74,0.08);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--white);
    text-decoration: none;
    color: inherit;
}
.mega-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.mega-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}
.mega-card__img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
}
.mega-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.mega-card:hover .mega-card__img img { transform: scale(1.05); }

.mega-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}
.mega-card__badge--gold {
    background: var(--gold);
    color: var(--navy);
}
.mega-card__body { padding: 0.875rem; }
.mega-card__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.3rem;
}
.mega-card__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.mega-card__desc {
    font-size: 0.78rem;
    color: var(--grey-mid);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.mega-card__cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.mega-card:hover .mega-card__cta { color: var(--gold-dark); }

/* Aside blocks in mega panel */
.mega-panel__aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    align-self: stretch;
}
.mega-aside-block {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.mega-aside-block svg {
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}
.mega-aside-block strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}
.mega-aside-block p {
    font-size: 0.78rem;
    color: var(--grey-mid);
    line-height: 1.4;
    margin-bottom: 0.3rem;
}
.mega-aside-block a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}
.mega-aside-block a:hover { color: var(--gold-dark); }

/* Backdrop */
.mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17,29,53,0.35);
    backdrop-filter: blur(2px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0s 0.22s;
}
.mega-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.22s ease, visibility 0s 0s;
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 320px;
    max-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.page-hero__image {
    position: absolute;
    inset: 0;
}
.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,29,53,0.75) 0%, rgba(17,29,53,0.20) 60%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
}

/* ── Section Styles ─────────────────────────────────────────── */
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-dark { background: var(--navy-dark); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}
.section--navy .section-eyebrow,
.section--navy-dark .section-eyebrow { color: var(--gold-light); }
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section--navy .section-title,
.section--navy-dark .section-title { color: var(--white); }
.section-sub {
    font-size: 1.05rem;
    color: var(--grey-mid);
    line-height: 1.7;
}
.section--navy .section-sub,
.section--navy-dark .section-sub { color: rgba(255,255,255,0.72); }

/* ── Hotel Cards ─────────────────────────────────────────────── */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 2rem;
}
.hotel-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    group: '';
}
.hotel-card__image {
    position: absolute;
    inset: 0;
    transition: transform var(--transition-slow);
}
.hotel-card:hover .hotel-card__image { transform: scale(1.04); }
.hotel-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,29,53,0.85) 0%, rgba(17,29,53,0.10) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.hotel-card__location {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.hotel-card__name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
.hotel-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 380px;
}
.hotel-card__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Rooms Showcase (Slider + Text) ─────────────────────────── */
.rooms-showcase {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 680px;
    background: var(--navy-dark);
}
.rooms-showcase__panel {
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: var(--white);
}
.rooms-showcase__panel-inner { width: 100%; max-width: 520px; }
.rooms-showcase__panel .section-title { color: var(--navy); text-align: left; margin-bottom: 1.25rem; }

/* Room type tabs */
.room-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}
.room-tab {
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1.5px solid var(--cream-dark);
    border-radius: 999px;
    color: var(--grey-mid);
    background: var(--white);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}
.room-tab--active,
.room-tab:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Room detail panels */
.room-detail { display: none; }
.room-detail.is-active { display: block; }
.room-detail__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.room-detail__badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(200,169,81,0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}
.room-detail__price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.room-detail__per {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--grey-mid);
    font-family: var(--font-sans);
}
.room-detail__desc {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}
.room-detail__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.5rem;
    margin-bottom: 1.5rem;
}
.room-detail__features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--charcoal);
}
.room-detail__features li svg { color: var(--gold-dark); flex-shrink: 0; }
.room-detail__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.room-detail__all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey-mid);
    transition: color var(--transition), gap var(--transition);
}
.room-detail__all-link:hover { color: var(--gold-dark); gap: 0.5rem; }
.room-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    color: var(--charcoal);
    line-height: 1.5;
}
.room-guarantee svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

/* Room image slider */
.rooms-showcase__slider {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
}
.room-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
}
.room-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.room-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}
.room-slide--active {
    opacity: 1;
    pointer-events: auto;
}
.room-slide__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.room-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.room-slide__cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,29,53,0.75) 0%, transparent 45%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.room-slide__link:hover .room-slide__cta-overlay { opacity: 1; }
.room-slide__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.room-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.room-slider__btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.room-slider__btn--prev { left: 1rem; }
.room-slider__btn--next { right: 1rem; }
.room-slider__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}
.room-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.room-slider__dot--active { background: var(--gold); transform: scale(1.3); }
.room-slider__book-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(17,29,53,0.75);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.03em;
}

/* ── Room Cards ──────────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(28,43,74,0.07);
    transition: box-shadow var(--transition), transform var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.room-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.room-card:hover .room-card__img-wrap img { transform: scale(1.04); }
.room-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}
.room-card__body { padding: 1.5rem; }
.room-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.room-card__desc { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.6; margin-bottom: 1.25rem; }
.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.room-card__amenity {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--grey-mid);
    background: var(--cream);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}
.room-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}
.room-card__price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}
.room-card__price-label { font-size: 0.75rem; color: var(--grey-mid); font-family: var(--font-sans); font-weight: 400; }

/* ── Feature Split Section ───────────────────────────────────── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
}
.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }
.feature-split__image { overflow: hidden; }
.feature-split__image img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem);
    background: var(--cream);
}
.section--navy .feature-split__content { background: var(--navy); }
.feature-split__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-block: 1.5rem;
}
.feature-split__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.section--navy .feature-split__list li { color: rgba(255,255,255,0.82); }
.feature-split__list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--gold);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
}

/* ── Amenities / Icon Grid ───────────────────────────────────── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}
.amenity-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid rgba(28,43,74,0.08);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), transform var(--transition);
}
.amenity-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.section--navy .amenity-tile { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
.amenity-tile__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,169,81,0.12);
    border-radius: 12px;
    color: var(--gold-dark);
}
.amenity-tile__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
}
.section--navy .amenity-tile__label { color: rgba(255,255,255,0.82); }

/* ── Stat Bars ───────────────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item__value {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-item__label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(28,43,74,0.08);
    box-shadow: var(--shadow-sm);
}
.section--navy .testimonial-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1rem;
}
.testimonial-card__quote {
    font-family: var(--font-italic);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.section--navy .testimonial-card__quote { color: rgba(255,255,255,0.88); }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.section--navy .testimonial-card__name { color: var(--white); }
.testimonial-card__meta { font-size: 0.8rem; color: var(--grey-mid); }

/* ── App Section ─────────────────────────────────────────────── */
.app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.app-section__mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.app-section__device {
    width: 240px;
    height: 480px;
    background: var(--navy-dark);
    border-radius: 36px;
    border: 6px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(200,169,81,0.15);
    overflow: hidden;
    position: relative;
}
.app-section__screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-section__badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.app-section__stores {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
}
.app-store-btn:hover { background: var(--navy); transform: translateY(-1px); }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn__text { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn__label { font-size: 0.65rem; opacity: 0.75; }

/* ── Business Banner ─────────────────────────────────────────── */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}
.business-card {
    padding: 2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), background var(--transition);
}
.business-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(200,169,81,0.35); }
.business-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200,169,81,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold);
}
.business-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.business-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 1;
    position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,29,53,0.4);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* ── Map Section ─────────────────────────────────────────────── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.location-card__map { width: 100%; height: 260px; }
.location-card__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-card__info { padding: 1.75rem; }
.location-card__hotel {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}
.location-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.location-card__details { display: flex; flex-direction: column; gap: 0.6rem; }
.location-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--grey-mid);
}
.location-card__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.location-card__detail a:hover { color: var(--navy); }

/* ── Contact Form ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.form-field { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(28,43,74,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Pre-footer CTA ──────────────────────────────────────────── */
.prefooter {
    background: var(--navy);
    padding-block: clamp(3rem, 6vw, 4rem);
}
.prefooter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.prefooter__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}
.prefooter__sub { color: rgba(255,255,255,0.68); font-size: 0.95rem; }
.prefooter__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── Main Footer ─────────────────────────────────────────────── */
.footer-main {
    background: var(--navy-dark);
    padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 3rem;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.footer-logo__main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.footer-logo__sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-tagline {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition);
}
.footer-social__link:hover { background: var(--gold); color: var(--navy); }
.footer-col__title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
}
.footer-address { font-size: 0.875rem; color: rgba(255,255,255,0.60); line-height: 1.6; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.60);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
    background: #0a1325;
    padding-block: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1rem; list-style: none; }
.footer-legal__link { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal__link:hover { color: rgba(255,255,255,0.65); }

/* ── Cookie Banner ───────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.cookie-banner__link { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; }

/* ── Prose ───────────────────────────────────────────────────── */
.prose { max-width: 68ch; }
.prose h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.prose h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.prose p { color: var(--grey-mid); line-height: 1.8; margin-bottom: 1rem; }
.prose a { color: var(--navy); text-decoration: underline; }
.prose ul { list-style: disc; padding-left: 1.5rem; color: var(--grey-mid); margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}
.divider--left { margin-left: 0; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up--d1 { animation-delay: 0.1s; }
.fade-up--d2 { animation-delay: 0.2s; }
.fade-up--d3 { animation-delay: 0.3s; }

[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .mega-panel__inner { grid-template-columns: 220px 1fr; gap: 2rem; }
    .mega-panel__cards { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 1024px) {
    /* Rev hero responsive — 1024px */
    .rev-hero { min-height: 85vh; }
    .rev-hero__content { left: 6%; max-width: 520px; }
    .rev-hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
    .rev-hero__infocard { display: none; }

    /* Mega panel full collapse */
    .mega-panel { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .feature-split { grid-template-columns: 1fr; }
    .feature-split--reverse { direction: ltr; }
    .feature-split__image { min-height: 320px; }
    .contact-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .app-section { grid-template-columns: 1fr; text-align: center; }
    .app-section__mockup { justify-content: center; }
}

@media (max-width: 768px) {
    .nav__menu-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 92vw);
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -4px 0 30px rgba(0,0,0,0.12);
        transition: right var(--transition-slow);
        overflow-y: auto;
        z-index: 400;
    }
    .nav__menu-wrap.is-open { right: 0; }
    .nav__menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
    .nav__item { width: 100%; }
    .nav__link,
    .nav__mega-trigger {
        width: 100%;
        padding: 0.9rem 0;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--cream-dark);
        justify-content: space-between;
    }
    /* CTA is now in the nav bar — keep it compact on mobile */
    .nav__cta { padding: 0.5rem 0.9rem; font-size: 0.82rem; }
    .nav__burger { display: flex; }

    /* Mobile mega sub-menus (simple list) */
    .nav__item--mega .mobile-sub {
        display: none;
        padding: 0.5rem 0 0.5rem 1rem;
        background: var(--cream);
        border-radius: var(--radius);
        margin-bottom: 0.5rem;
    }
    .nav__item--mega.is-open .mobile-sub { display: block; }
    .mobile-sub a {
        display: block;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: var(--charcoal);
        border-bottom: 1px solid rgba(28,43,74,0.06);
    }

    /* Rev hero 768px */
    .rev-hero { min-height: 90vh; }
    .rev-hero__content { bottom: 11%; left: 5%; right: 5%; max-width: none; }
    .rev-hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .rev-hero__sub { font-size: 0.92rem; margin-bottom: 1.4rem; }
    .rev-hero__actions { gap: 0.75rem; }
    .rev-hero__actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
    .rev-hero__arrow { display: none; }
    .rev-hero__scroll-hint { display: none; }
    .rev-hero__counter { display: none; }
    .rev-hero__dots { bottom: 1.5rem; }

    .hotels-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .prefooter__inner { flex-direction: column; text-align: center; }
    .prefooter__actions { justify-content: center; }
    .topbar { display: none; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .mega-backdrop { display: none; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .business-grid { grid-template-columns: 1fr; }
    .rev-hero__trust { display: none; }
}

/* ============================================================
   Shared Page Components
   ============================================================ */

/* ── Container narrow ───────────────────────────────────────── */
.container--narrow { max-width: 780px; }

/* ── Section pad (alias) ────────────────────────────────────── */
.section-pad { padding-block: clamp(3rem, 8vw, 6rem); }
.section--white { background: var(--white); }

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.eyebrow--gold { color: var(--gold); }

/* ── Page Hero (inner-page variant) ────────────────────────── */
.page-hero--slim {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    display: block;
}
.page-hero--slim .page-hero__inner { max-width: 700px; }
.page-hero--navy { background: var(--navy); color: var(--white); }
.page-hero--navy .page-hero__title { color: var(--white); }
.page-hero--rooms {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: clamp(4rem, 10vw, 7rem) 0;
}
.page-hero--rooms .page-hero__bg {
    position: absolute;
    inset: 0;
}
.page-hero--rooms .page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero--rooms .page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,29,53,0.88) 0%, rgba(17,29,53,0.5) 100%);
}
.page-hero--rooms .container { position: relative; z-index: 1; }
.page-hero--rooms .page-hero__title { color: var(--white); }
.page-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.65;
    margin-top: 0.75rem;
}
.page-hero--slim:not(.page-hero--navy) .page-hero__sub { color: var(--grey-mid); }
.page-hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}
.page-hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header--centered { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header--light .section-header__title { color: var(--white); }
.section-header--light .section-header__sub { color: rgba(255,255,255,0.7); }
.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.section-header__sub {
    font-size: 1.05rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

/* ── Gold Strip ─────────────────────────────────────────────── */
.strip--gold {
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 0.9rem 0;
}
.strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.strip__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* ── Two-column Layout ──────────────────────────────────────── */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.two-col-layout__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.two-col-layout__text p { color: var(--grey-mid); line-height: 1.7; margin-bottom: 1rem; }
.two-col-layout__img { border-radius: var(--radius-lg); width: 100%; }

/* ── Rooms Template ─────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.room-card--featured { border: 2px solid var(--gold); }
.room-card__gallery { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.room-card__gallery img { width: 100%; height: 100%; object-fit: cover; }
.room-card__price-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(17,29,53,0.85);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}
.room-card__price-tag strong { color: var(--gold); font-size: 1rem; }
.room-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
}
.room-card__body { padding: 1.5rem; }
.room-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.room-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 700;
}
.room-card__locations {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    white-space: nowrap;
}
.room-card__features {
    list-style: disc;
    padding-left: 1.2rem;
    margin-bottom: 1.25rem;
}
.room-card__features li {
    font-size: 0.875rem;
    color: var(--grey-mid);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}
.room-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ── Amenity Item ───────────────────────────────────────────── */
.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
}
.amenity-item__icon { color: var(--gold-dark); }
.amenity-item__label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

/* ── Hotel Booking Cards ────────────────────────────────────── */
.hotel-booking-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.hotel-booking-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hotel-booking-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hotel-booking-card__body { padding: 1.5rem; }
.hotel-booking-card__name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.hotel-booking-card__location {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.hotel-booking-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* ── Dual CTA ───────────────────────────────────────────────── */
.dual-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.dual-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.dual-cta__sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.dual-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Recruitment: Benefits ──────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.benefit-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
}
.benefit-card__icon { color: var(--gold-dark); margin-bottom: 0.75rem; }
.benefit-card__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.benefit-card__desc { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.6; }

/* ── Recruitment: Vacancies ─────────────────────────────────── */
.vacancies-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.vacancy-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.vacancy-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.vacancy-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.vacancy-card__location { font-size: 0.8rem; color: var(--grey-mid); }
.vacancy-card__type {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--navy);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cream-dark);
}
.vacancy-card__desc { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.6; margin-bottom: 1rem; }
.speculative-cta {
    text-align: center;
    padding: 2rem;
    background: var(--navy);
    border-radius: var(--radius-lg);
    color: rgba(255,255,255,0.8);
}
.speculative-cta p { margin-bottom: 1.25rem; font-size: 1rem; }

/* ── Recruitment: Values ────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.value-item { border-top: 2px solid var(--gold); padding-top: 1.25rem; }
.value-item__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.value-item p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── 404 Page ───────────────────────────────────────────────── */
.error-404 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}
.error-404__icon {
    color: var(--gold-dark);
    opacity: 0.5;
    padding-top: 0.5rem;
}
.error-404__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.error-404__text { color: var(--grey-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.error-404__links { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.error-404__search-label { font-size: 0.875rem; color: var(--grey-mid); margin-bottom: 0.5rem; }
.error-404__suggestions { grid-column: 1 / -1; border-top: 1px solid var(--cream-dark); padding-top: 2rem; }
.error-404__suggestions-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
}
.error-404__suggestion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.error-404__suggestion-list li a {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--navy);
    transition: background var(--transition), border-color var(--transition);
}
.error-404__suggestion-list li a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ── Blog / Archive ─────────────────────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-card__img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.post-card:hover .post-card__img { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; }
.post-card__cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}
.post-card__type { color: var(--grey-mid); }
.post-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.post-card__title a:hover { color: var(--gold-dark); }
.post-card__date { display: block; font-size: 0.8rem; color: var(--grey-mid); margin-bottom: 0.75rem; }
.post-card__excerpt { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.6; margin-bottom: 1rem; }
.post-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: gap var(--transition);
}
.post-card__read-more:hover { gap: 0.5rem; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--navy);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.pagination .dots { border: none; }

/* ── Single Post ────────────────────────────────────────────── */
.post-single__featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
.post-single__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-single__content { margin-bottom: 3rem; }
.post-single__back { margin-top: 2rem; }
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid var(--cream-dark);
    padding-top: 2rem;
    margin-bottom: 2rem;
}
.post-nav__link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    transition: background var(--transition);
}
.post-nav__link:hover { background: var(--cream-dark); }
.post-nav__link--next { text-align: right; }
.post-nav__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); }
.post-nav__title { font-family: var(--font-serif); font-size: 0.95rem; color: var(--navy); font-weight: 600; line-height: 1.3; }

/* ── Search ─────────────────────────────────────────────────── */
.search-bar-wrap { margin-bottom: 2.5rem; max-width: 600px; }
.search-bar-wrap .search-form { display: flex; gap: 0.5rem; }
.search-bar-wrap input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--charcoal);
    background: var(--white);
}
.search-bar-wrap input[type="search"]:focus { outline: none; border-color: var(--navy); }
.search-bar-wrap input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}
.search-bar-wrap input[type="submit"]:hover { background: var(--navy-dark); }
.search-count { margin-bottom: 2rem; color: var(--grey-mid); font-size: 0.9rem; }
.search-count strong { color: var(--navy); }
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 520px;
    margin-inline: auto;
}
.no-results__icon { color: var(--grey-light); margin: 0 auto 1.5rem; }
.no-results__title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.75rem; }
.no-results__text { color: var(--grey-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.no-results__links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── Legal / Policy pages ───────────────────────────────────── */
.legal-doc {
    max-width: 100%;
}
.legal-doc h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--cream-dark);
}
.legal-doc h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.legal-doc p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.legal-doc ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-doc ul li {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.legal-doc a { color: var(--gold-dark); text-decoration: underline; }
.legal-doc a:hover { color: var(--navy); }
.legal-doc__contact-box {
    margin-top: 3rem;
    padding: 1.75rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
}
.legal-doc__contact-box h3 {
    color: var(--gold);
    margin-top: 0;
    border: none;
}
.legal-doc__contact-box p { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.legal-doc__contact-box a { color: var(--gold-light); }

/* Cookie Policy table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.875rem;
}
.cookie-table th {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 0.85rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}
.cookie-table td {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--charcoal);
    vertical-align: top;
}
.cookie-table tr:nth-child(even) td { background: var(--cream); }
.cookie-table code {
    background: var(--cream-dark);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    font-size: 0.82rem;
    font-family: 'Courier New', monospace;
}

/* ── Prose (rich text content) ──────────────────────────────── */
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); font-weight: 700; margin-top: 2rem; }
.prose h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); font-weight: 700; margin-top: 1.5rem; }
.prose p { font-size: 1rem; line-height: 1.75; color: var(--charcoal); }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; line-height: 1.65; color: var(--charcoal); }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose strong { color: var(--navy); }
.prose blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 1.5rem 0;
}

/* ── Footer Logo (SVG version) ──────────────────────────────── */
.footer-logo { display: block; margin-bottom: 1rem; }
.footer-logo__img { max-width: 160px; height: auto; }

/* ── Responsive additions for new templates ─────────────────── */
@media (max-width: 1024px) {
    .rooms-showcase { grid-template-columns: 1fr; }
    .rooms-showcase__panel { padding: 2rem; }
    .rooms-showcase__slider { min-height: 400px; }
    .room-slider { min-height: 400px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-booking-cards { grid-template-columns: 1fr; }
    .two-col-layout { grid-template-columns: 1fr; }
    .error-404 { grid-template-columns: 1fr; }
    .error-404__icon { display: none; }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .strip__inner { gap: 1rem; flex-direction: column; }
    .dual-cta { flex-direction: column; text-align: center; }
    .dual-cta__actions { justify-content: center; }
    .post-grid { grid-template-columns: 1fr; }
    .post-nav { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card__actions .btn { flex: 1; text-align: center; justify-content: center; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WhatsApp Floating Action Button
   ============================================================ */
.wa-fab {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}
.wa-fab__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab__toggle:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
.wa-fab__toggle[aria-expanded="true"] { background: var(--navy); box-shadow: 0 4px 18px rgba(28,43,74,0.35); }
.wa-fab__icon { transition: opacity 0.2s, transform 0.2s; }
.wa-fab__icon--close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.wa-fab__toggle[aria-expanded="true"] .wa-fab__icon--chat  { opacity: 0; transform: rotate(90deg); }
.wa-fab__toggle[aria-expanded="true"] .wa-fab__icon--close { opacity: 1; transform: rotate(0); }
.wa-fab__menu {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(28,43,74,0.18);
    padding: 1rem;
    min-width: 240px;
    border: 1px solid rgba(28,43,74,0.06);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    animation: waFadeIn 0.2s ease;
}
.wa-fab__menu[aria-hidden="false"] { display: flex; }
@keyframes waFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wa-fab__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 0.25rem;
}
.wa-fab__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius);
    background: var(--cream);
    text-decoration: none;
    transition: background 0.15s;
}
.wa-fab__option:hover { background: var(--cream-dark); }
.wa-fab__option strong { display: block; font-size: 0.88rem; color: var(--navy); }
.wa-fab__option small  { display: block; font-size: 0.75rem; color: var(--charcoal-light); }
.wa-fab__hotel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.wa-fab__hotel-dot--barnsley { background: var(--gold); }
.wa-fab__hotel-dot--selby    { background: #5B9BD5; }

/* ============================================================
   Live Review Feed
   ============================================================ */
.reviews-section { background: var(--cream); }
.reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}
.reviews-agg-hotel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.reviews-agg-score {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.reviews-agg-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.reviews-agg-label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.05em; }
.reviews-agg-count { font-size: 0.75rem; color: var(--charcoal-light); }
.reviews-agg-divider { width: 1px; height: 80px; background: rgba(28,43,74,0.12); }
.reviews-carousel { position: relative; overflow: hidden; margin-bottom: 2rem; }
.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
}
.reviews-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--charcoal-light);
    font-size: 0.9rem;
    width: 100%;
}
.reviews-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(28,43,74,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(28,43,74,0.07);
    border: 1px solid rgba(28,43,74,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.review-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.review-card__text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--charcoal);
    flex: 1;
}
.review-card__text::before { content: '\201C'; }
.review-card__text::after  { content: '\201D'; }
.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(28,43,74,0.06);
}
.review-card__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-card__meta { font-size: 0.75rem; color: var(--charcoal-light); }
.review-card__hotel {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(200,169,81,0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
}
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
}
.reviews-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(28,43,74,0.15);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.reviews-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.reviews-dots { display: flex; gap: 6px; align-items: center; }
.reviews-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(28,43,74,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.reviews-dot--active { width: 22px; background: var(--gold); border-radius: 4px; }
.reviews-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
    .review-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
    .review-card { flex: 0 0 calc(100%); }
    .reviews-aggregate { gap: 1.5rem; }
    .reviews-agg-divider { height: 50px; }
}

/* ============================================================
   AI Chatbot Widget
   ============================================================ */
.st-chat {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}
.st-chat__fab {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(28,43,74,0.4);
    transition: transform 0.2s, background 0.2s;
}
.st-chat__fab:hover { transform: scale(1.08); background: var(--navy-dark); }
.st-chat__fab-icon { position: absolute; transition: opacity 0.2s, transform 0.2s; }
.st-chat__fab-icon--close { opacity: 0; transform: rotate(-90deg); }
.st-chat[data-open] .st-chat__fab-icon--open  { opacity: 0; transform: rotate(90deg); }
.st-chat[data-open] .st-chat__fab-icon--close { opacity: 1; transform: rotate(0); }
.st-chat__fab-badge {
    position: absolute;
    top: -2px; right: -2px;
    width: 18px; height: 18px;
    background: #E53E3E;
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: badgePulse 2s ease-in-out 3;
}
@keyframes badgePulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
}
.st-chat__fab-badge[hidden] { display: none; }
.st-chat__panel {
    width: min(360px, 94vw);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(28,43,74,0.22);
    border: 1px solid rgba(28,43,74,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 520px;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.st-chat[data-open] .st-chat__panel {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.st-chat__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: var(--navy);
    color: var(--white);
}
.st-chat__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.st-chat__header-text { flex: 1; }
.st-chat__header-text strong { display: block; font-size: 0.9rem; }
.st-chat__header-text span { font-size: 0.72rem; opacity: 0.7; }
.st-chat__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 0.25rem;
    transition: color 0.15s;
}
.st-chat__close:hover { color: var(--white); }
.st-chat__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scroll-behavior: smooth;
}
.st-chat__msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}
.st-chat__msg--bot { align-self: flex-start; }
.st-chat__msg--user { align-self: flex-end; }
.st-chat__msg p {
    margin: 0;
    padding: 0.65rem 0.9rem;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
}
.st-chat__msg--bot  p { background: var(--cream); color: var(--charcoal); border-bottom-left-radius: 4px; }
.st-chat__msg--user p { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.st-chat__msg--typing p { display: flex; gap: 4px; align-items: center; }
.st-chat__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--charcoal-light); animation: typingDot 1.2s infinite; }
.st-chat__dot:nth-child(2) { animation-delay: 0.2s; }
.st-chat__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,80%,100% { transform: scale(1); opacity:0.4; } 40% { transform: scale(1.3); opacity:1; } }
.st-chat__quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1rem 0.75rem;
}
.st-chat__quick {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid rgba(28,43,74,0.12);
    color: var(--navy);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.st-chat__quick:hover { background: rgba(200,169,81,0.15); border-color: var(--gold); }
.st-chat__form {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(28,43,74,0.08);
    padding: 0.75rem;
    gap: 0.5rem;
}
.st-chat__input {
    flex: 1;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid rgba(28,43,74,0.14);
    border-radius: 20px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s;
}
.st-chat__input:focus { border-color: var(--gold); }
.st-chat__send {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s, background 0.15s;
}
.st-chat__send:hover { transform: scale(1.1); background: var(--gold-dark); }
.st-chat__send:disabled { opacity: 0.5; cursor: default; transform: none; }

/* Mobile adjustments */
@media (max-width: 480px) {
    .st-chat { bottom: 1rem; right: 1rem; }
    .wa-fab  { bottom: 5rem; right: 1rem; }
    .st-chat__panel { max-height: 440px; }
}

/* ── Virtual Tour ───────────────────────────────────────────────── */
.room-card__gallery { position: relative; }

.room-card__tour-btn {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: rgba(28,43,74,0.82);
    color: #fff;
    border: 1.5px solid rgba(200,169,81,0.6);
    border-radius: 20px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.room-card__tour-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.04);
}
.room-card__tour-btn svg { flex-shrink: 0; }

.room-card__tour-soon {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(0,0,0,0.45);
    color: rgba(255,255,255,0.7);
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 0.74rem;
    font-family: var(--font-body);
    font-weight: 500;
    backdrop-filter: blur(4px);
    user-select: none;
}

/* Modal overlay */
.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10,14,22,0.96);
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.tour-modal[hidden] { display: none; }
.tour-modal[data-open] { opacity: 1; }

.tour-modal__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    padding: 0 1rem 1rem;
}
.tour-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    flex-shrink: 0;
}
.tour-modal__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}
.tour-modal__close {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.tour-modal__close:hover { background: rgba(200,169,81,0.25); }

.tour-modal__frame-wrap {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    min-height: 0;
}
.tour-modal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tour-modal__hint {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    text-align: center;
    margin: 0.6rem 0 0;
    flex-shrink: 0;
}
.tour-modal__hint kbd {
    display: inline-block;
    padding: 0.1em 0.4em;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    font-size: 0.75em;
    font-family: var(--font-body);
}

/* ── Email Capture Lightbox ─────────────────────────────────────── */
.st-email-modal {
    position: fixed;
    inset: 0;
    z-index: 8500;
    background: rgba(10,14,22,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.st-email-modal[hidden] { display: none; }
.st-email-modal[data-open] { opacity: 1; }

.st-email-modal__card {
    display: flex;
    width: 100%;
    max-width: 860px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.st-email-modal[data-open] .st-email-modal__card { transform: translateY(0); }

/* Left panel — navy brand */
.st-email-modal__left {
    width: 240px;
    flex-shrink: 0;
    background: var(--navy-dark);
    padding: 2.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-email-modal__brand { text-align: center; }
.st-email-modal__logo {
    width: 120px;
    margin-bottom: 1.5rem;
}
.st-email-modal__stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.st-email-modal__tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.st-email-modal__perk {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    text-align: left;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.st-email-modal__perk span { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Right panel — cream form */
.st-email-modal__right {
    flex: 1;
    background: var(--cream);
    padding: 2.5rem 2rem 2rem;
    position: relative;
}
.st-email-modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(28,43,74,0.08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s;
}
.st-email-modal__close:hover { background: rgba(28,43,74,0.15); }

.st-email-modal__title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--navy-dark);
    margin: 0 0 0.6rem;
    line-height: 1.2;
}
.st-email-modal__sub {
    font-size: 0.88rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.st-email-modal__row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.st-email-modal__input {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid rgba(28,43,74,0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.15s;
    outline: none;
}
.st-email-modal__input:focus { border-color: var(--gold); }

.st-email-modal__consent {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.76rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    cursor: pointer;
}
.st-email-modal__consent input[type=checkbox] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--gold); }
.st-email-modal__consent a { color: var(--navy); }

.st-email-modal__msg {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    min-height: 1.2em;
}
.st-email-modal__msg--success { color: #2e7d32; font-weight: 600; }
.st-email-modal__msg--error   { color: #c62828; }

.st-email-modal__submit {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
}
.st-email-modal__no-thanks {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    color: #999;
    text-decoration: none;
    transition: color 0.15s;
}
.st-email-modal__no-thanks:hover { color: var(--navy); }

@media (max-width: 640px) {
    .st-email-modal__left { display: none; }
    .st-email-modal__row { flex-direction: column; }
    .st-email-modal__title { font-size: 1.3rem; }
}

/* ── Corporate Dashboard ────────────────────────────────────────── */
.corp-hero {
    background: var(--navy-dark);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--gold);
}
.corp-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.corp-hero__title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: #fff;
    margin: 0.3rem 0 0.5rem;
}
.corp-hero__company {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.corp-hero__company svg { flex-shrink: 0; }
.corp-hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn--outline-navy {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn--outline-navy:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    color: #fff;
}

/* Stat cards */
.corp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .corp-stats { grid-template-columns: 1fr; } }

.corp-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(28,43,74,0.07);
    border: 1px solid rgba(28,43,74,0.06);
}
.corp-stat-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(28,43,74,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.corp-stat-card__icon--gold { background: rgba(200,169,81,0.15); color: var(--gold-dark); }
.corp-stat-card__body { flex: 1; min-width: 0; }
.corp-stat-card__label { font-size: 0.78rem; color: #888; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.corp-stat-card__value {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.corp-stat-card__value--sm { font-size: 1.15rem; line-height: 1.3; }
.corp-stat-card__bar-wrap {
    height: 5px;
    background: rgba(28,43,74,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}
.corp-stat-card__bar {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
}
.corp-stat-card__sub { font-size: 0.78rem; color: #999; }
.corp-stat-card__sub a { color: var(--navy); }

/* Section */
.corp-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    gap: 1rem;
}
.corp-section__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--navy-dark);
    margin: 0;
}

/* Table */
.corp-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 16px rgba(28,43,74,0.07); }
.corp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.875rem;
}
.corp-table thead { background: var(--navy-dark); }
.corp-table th {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.9rem 1rem;
    text-align: left;
    white-space: nowrap;
}
.corp-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(28,43,74,0.06);
    color: var(--charcoal);
    vertical-align: middle;
}
.corp-table tr:last-child td { border-bottom: none; }
.corp-table tr:hover td { background: rgba(200,169,81,0.04); }
.corp-table code { font-size: 0.8rem; background: rgba(28,43,74,0.07); padding: 0.2em 0.5em; border-radius: 4px; }

.corp-status {
    display: inline-block;
    padding: 0.2em 0.7em;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: capitalize;
}
.corp-status--confirmed  { background: #e8f5e9; color: #2e7d32; }
.corp-status--pending    { background: #fff8e1; color: #f57f17; }
.corp-status--cancelled  { background: #fce4ec; color: #c62828; }
.corp-status--invoiced   { background: #e3f2fd; color: #1565c0; }

/* Empty state */
.corp-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    color: #aaa;
    box-shadow: 0 2px 16px rgba(28,43,74,0.06);
}
.corp-empty svg { display: block; margin: 0 auto 1rem; opacity: 0.3; }
.corp-empty p { margin-bottom: 1.5rem; color: #888; }

/* Quick action cards */
.corp-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
@media (max-width: 900px) { .corp-actions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .corp-actions-grid { grid-template-columns: 1fr; } }

.corp-action-card {
    background: #fff;
    border: 1.5px solid rgba(28,43,74,0.1);
    border-radius: 12px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    font-family: var(--font-body);
}
.corp-action-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(200,169,81,0.15);
    transform: translateY(-2px);
}
.corp-action-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(28,43,74,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin: 0 auto 1rem;
}
.corp-action-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 0.3rem;
}
.corp-action-card__desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ── Social Proof Bar ────────────────────────────────────────────── */
.social-proof-bar {
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    padding: 0.65rem 0;
}
.social-proof-bar__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.social-proof-bar__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.3);
    animation: sp-pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes sp-pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.3); }
    50%      { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}
.social-proof-bar__text {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.social-proof-bar__text strong { color: var(--gold); }
.social-proof-bar__text svg { color: var(--gold); flex-shrink: 0; }
.social-proof-bar__cta {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.social-proof-bar__cta:hover { opacity: 0.8; }

/* ── Media Strip ─────────────────────────────────────────────────── */
.media-strip {
    background: #fff;
    border-bottom: 1px solid rgba(28,43,74,0.08);
    padding: 1.2rem 0;
}
.media-strip .container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.media-strip__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0;
}
.media-strip__logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.media-logo {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(28,43,74,0.35);
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color 0.2s;
    cursor: default;
}
.media-logo:hover { color: rgba(28,43,74,0.65); }

/* ── Video Testimonials ──────────────────────────────────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }

.video-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 16px rgba(28,43,74,0.08); }
.video-card__frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--navy-dark);
    overflow: hidden;
}
.video-card__thumb {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.3s;
}
.video-card:hover .video-card__thumb { opacity: 0.6; }
.video-card__play {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-card__play svg {
    width: 64px; height: 64px;
    color: #fff;
    background: rgba(200,169,81,0.85);
    border-radius: 50%;
    padding: 16px;
    transition: transform 0.2s, background 0.2s;
}
.video-card__play:hover svg { transform: scale(1.1); background: var(--gold); }
.video-card__iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-card__info { padding: 1.2rem; }
.video-card__quote { font-style: italic; color: var(--charcoal); font-size: 0.9rem; margin-bottom: 0.5rem; }
.video-card__name { font-size: 0.8rem; color: #888; }
.video-card__name span { color: var(--gold-dark); }

/* ── Awards Grid ─────────────────────────────────────────────────── */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}
@media (max-width: 1024px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .awards-grid { grid-template-columns: repeat(2, 1fr); } }

.award-card {
    background: #fff;
    border: 1px solid rgba(28,43,74,0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(28,43,74,0.05);
    transition: box-shadow 0.2s, transform 0.15s;
}
.award-card:hover { box-shadow: 0 6px 24px rgba(200,169,81,0.15); transform: translateY(-2px); }
.award-card__badge { font-size: 2rem; margin-bottom: 0.6rem; }
.award-card__title { font-family: var(--font-heading); font-size: 0.95rem; color: var(--navy-dark); margin-bottom: 0.3rem; }
.award-card__body  { font-size: 0.75rem; color: #888; }

/* ── Urgency Tags ────────────────────────────────────────────────── */
.urgency-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #c62828;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.urgency-tag--hot { color: #e65100; }
.urgency-tag__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    animation: sp-pulse 1.5s infinite;
}

/* ── Price Comparison Strip ──────────────────────────────────────── */
.price-compare-strip {
    background: var(--navy-dark);
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold);
}
.price-compare-strip__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.price-compare-strip__label {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.price-compare-strip__label svg { color: #4caf50; }
.price-compare-strip__label strong { color: var(--gold); }
.price-compare-strip__rooms {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.price-compare-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}
.price-compare-item__room   { color: rgba(255,255,255,0.6); }
.price-compare-item__direct { color: #fff; font-weight: 700; }
.price-compare-item__direct em { color: var(--gold); font-style: normal; font-size: 0.72rem; }
.price-compare-item__ota    { color: rgba(255,255,255,0.4); text-decoration: line-through; font-size: 0.75rem; }
.price-compare-item__save   { background: #4caf50; color: #fff; padding: 0.15em 0.5em; border-radius: 12px; font-size: 0.72rem; font-weight: 700; }

/* ── Blog — Enhanced Archive ─────────────────────────────────────── */
.blog-filter-bar {
    background: #fff;
    border-bottom: 1px solid rgba(28,43,74,0.08);
    position: sticky;
    top: 70px;
    z-index: 100;
    padding: 0;
}
.blog-filter-bar__inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.blog-filter-bar__inner::-webkit-scrollbar { display: none; }
.blog-filter-btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.blog-filter-btn:hover { color: var(--navy); }
.blog-filter-btn--active { color: var(--navy-dark); border-bottom-color: var(--gold); }
.blog-filter-btn__count { background: rgba(28,43,74,0.08); border-radius: 10px; padding: 0.1em 0.45em; font-size: 0.72rem; }

/* Featured post */
.post-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(28,43,74,0.08);
}
@media (max-width: 768px) { .post-featured { grid-template-columns: 1fr; } }
.post-featured__img-wrap { display: block; height: 100%; min-height: 280px; overflow: hidden; }
.post-featured__img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-featured:hover .post-featured__img { transform: scale(1.04); }
.post-featured__body { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.post-featured__meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: #888; flex-wrap: wrap; }
.post-featured__cat { background: rgba(200,169,81,0.15); color: var(--gold-dark); padding: 0.2em 0.7em; border-radius: 12px; font-weight: 600; font-size: 0.75rem; text-decoration: none; }
.post-featured__rt  { display: flex; align-items: center; gap: 0.3rem; }
.post-featured__title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy-dark); margin: 0; line-height: 1.25; }
.post-featured__title a { color: inherit; text-decoration: none; }
.post-featured__excerpt { color: var(--charcoal); font-size: 0.9rem; line-height: 1.7; }
.post-featured__author  { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #888; }
.post-featured__avatar  { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

/* Post grid */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.post-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(28,43,74,0.07); transition: box-shadow 0.2s, transform 0.15s; }
.post-card:hover { box-shadow: 0 6px 30px rgba(28,43,74,0.12); transform: translateY(-3px); }
.post-card__img-wrap { display: block; height: 200px; overflow: hidden; }
.post-card__img-wrap--placeholder { background: rgba(28,43,74,0.06); display: flex; align-items: center; justify-content: center; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card__img { transform: scale(1.06); }
.post-card__img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.post-card__body { padding: 1.2rem; }
.post-card__meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.post-card__cat  { background: rgba(200,169,81,0.15); color: var(--gold-dark); padding: 0.15em 0.6em; border-radius: 10px; font-size: 0.72rem; font-weight: 600; text-decoration: none; }
.post-card__rt   { font-size: 0.72rem; color: #aaa; margin-left: auto; }
.post-card__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.3rem; }
.post-card__title a { color: var(--navy-dark); text-decoration: none; }
.post-card__title a:hover { color: var(--gold-dark); }
.post-card__date  { font-size: 0.76rem; color: #aaa; display: block; margin-bottom: 0.5rem; }
.post-card__excerpt { font-size: 0.85rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 0.75rem; }
.post-card__read-more { font-size: 0.82rem; font-weight: 600; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 0.2rem; transition: gap 0.15s, color 0.15s; }
.post-card__read-more:hover { color: var(--gold-dark); gap: 0.4rem; }

/* Single post — enhancements */
.post-hero-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.meta-sep { color: rgba(255,255,255,0.4); }
.meta-rt  { display: inline-flex; align-items: center; gap: 0.3rem; }

.post-share { display: flex; align-items: center; gap: 0.5rem; margin: 1.5rem 0; }
.post-share--top  { justify-content: flex-end; }
.post-share--bottom { border-top: 1px solid rgba(28,43,74,0.08); padding-top: 1.5rem; margin-top: 2rem; }
.post-share__label { font-size: 0.8rem; color: #888; margin-right: 0.25rem; }
.post-share__btn {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    border: none; cursor: pointer;
}
.post-share__btn:hover { opacity: 0.85; transform: translateY(-1px); }
.post-share__btn--fb   { background: #1877f2; }
.post-share__btn--x    { background: #000; }
.post-share__btn--wa   { background: #25d366; }
.post-share__btn--copy { background: rgba(28,43,74,0.1); color: var(--navy); }

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.post-tag  { background: rgba(28,43,74,0.06); color: var(--navy); padding: 0.2em 0.7em; border-radius: 12px; font-size: 0.78rem; text-decoration: none; transition: background 0.15s; }
.post-tag:hover { background: rgba(200,169,81,0.2); }

.author-bio {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 3px solid var(--gold);
}
.author-bio__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio__name   { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.3rem; }
.author-bio__desc   { font-size: 0.85rem; color: var(--charcoal); line-height: 1.6; }

.related-posts       { margin-top: 3rem; }
.related-posts__title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1.2rem; color: var(--navy-dark); }
.related-posts__grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 600px) { .related-posts__grid { grid-template-columns: 1fr; } }

.related-post-card { border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(28,43,74,0.07); text-decoration: none; transition: transform 0.15s; display: block; }
.related-post-card:hover { transform: translateY(-2px); }
.related-post-card__img-wrap { height: 130px; overflow: hidden; }
.related-post-card__img { width: 100%; height: 100%; object-fit: cover; }
.related-post-card__body { padding: 0.8rem; }
.related-post-card__date  { font-size: 0.72rem; color: #aaa; display: block; margin-bottom: 0.3rem; }
.related-post-card__title { font-size: 0.88rem; font-weight: 600; color: var(--navy-dark); line-height: 1.4; }

/* ── Exit Voucher Modal ──────────────────────────────────────────── */
.exit-voucher-modal {
    position: fixed;
    inset: 0;
    z-index: 8600;
    background: rgba(10,14,22,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.exit-voucher-modal[hidden]    { display: none; }
.exit-voucher-modal[data-open] { opacity: 1; }

.exit-voucher-modal__card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.exit-voucher-modal[data-open] .exit-voucher-modal__card { transform: scale(1); }

.exit-voucher-modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 34px; height: 34px;
    background: rgba(28,43,74,0.07);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); cursor: pointer;
}
.exit-voucher-modal__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 1.4rem;
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.exit-voucher-modal__title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy-dark); margin-bottom: 0.5rem; }
.exit-voucher-modal__sub   { font-size: 0.9rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 1.2rem; }
.exit-voucher-modal__form  { display: flex; flex-direction: column; gap: 0.75rem; }
.exit-voucher-modal__input {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(28,43,74,0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
}
.exit-voucher-modal__input:focus { border-color: var(--gold); }
.exit-voucher-modal__msg { font-size: 0.8rem; min-height: 1em; }
.exit-voucher-modal__terms { font-size: 0.72rem; color: #aaa; margin-top: 0.5rem; }
.exit-voucher-modal__code-box {
    background: var(--cream);
    border: 2px dashed var(--gold);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.exit-voucher-modal__code-label { font-size: 0.78rem; color: #888; }
.exit-voucher-modal__code { font-size: 1.5rem; letter-spacing: 0.15em; color: var(--navy-dark); font-family: monospace; }
.exit-voucher-modal__copy { background: var(--navy-dark); color: #fff; border: none; padding: 0.3em 0.8em; border-radius: 6px; font-size: 0.75rem; cursor: pointer; transition: background 0.15s; }
.exit-voucher-modal__copy:hover { background: var(--gold-dark); }
.exit-voucher-modal__code-expiry { font-size: 0.78rem; color: #888; }

/* ── Push Notification Banner ────────────────────────────────────── */
.push-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 7500;
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.push-banner[hidden]    { display: none; }
.push-banner[data-open] { transform: translateY(0); }
.push-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.push-banner__icon { color: var(--gold); flex-shrink: 0; }
.push-banner__text { flex: 1; min-width: 0; }
.push-banner__text strong { color: #fff; display: block; margin-bottom: 0.1rem; }
.push-banner__text p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; }
.push-banner__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.push-banner__dismiss { background: none; border: none; color: rgba(255,255,255,0.45); font-size: 0.8rem; cursor: pointer; transition: color 0.15s; padding: 0; }
.push-banner__dismiss:hover { color: rgba(255,255,255,0.8); }

/* ── FAQ styles ─────────────────────────────────────────────────── */
.faq-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.faq-category-btn {
    padding: 0.5rem 1.1rem;
    border: 1.5px solid rgba(28,43,74,0.2);
    border-radius: 20px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
}
.faq-category-btn:hover,
.faq-category-btn--active { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); }

.faq-list    { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item    { border-radius: 10px; background: #fff; box-shadow: 0 2px 10px rgba(28,43,74,0.06); overflow: hidden; }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-dark);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; font-weight: 300; }
details[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 1.25rem 1.1rem; font-size: 0.88rem; color: var(--charcoal); line-height: 1.7; }

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.gallery-filter-btn {
    padding: 0.45rem 1rem;
    border: 1.5px solid rgba(28,43,74,0.18);
    border-radius: 20px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
}
.gallery-filter-btn:hover,
.gallery-filter-btn--active { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(28,43,74,0.06);
    aspect-ratio: 4/3;
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, opacity 0.2s; display: block; }
.gallery-item:hover .gallery-item__img { transform: scale(1.07); opacity: 0.85; }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28,43,74,0);
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover::after { background: rgba(28,43,74,0.18); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s;
}
.gallery-lightbox[hidden]    { display: none; }
.gallery-lightbox[data-open] { opacity: 1; }
.gallery-lightbox__top { position: absolute; top: 1rem; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 1.5rem; }
.gallery-lightbox__counter { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.gallery-lightbox__close {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,0.2); }
.gallery-lightbox__img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: none; color: #fff; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.gallery-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.gallery-lightbox__nav--prev { left: 1.5rem; }
.gallery-lightbox__nav--next { right: 1.5rem; }
.gallery-lightbox__caption { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 0.75rem; }

/* ── Offer Cards ─────────────────────────────────────────────────── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28,43,74,0.08);
    border: 1px solid rgba(28,43,74,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,169,81,0.15); }
.offer-card__top { background: var(--navy-dark); padding: 1.5rem; position: relative; }
.offer-card__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.3em 0.9em;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.offer-card__title { font-family: var(--font-heading); font-size: 1.25rem; color: #fff; margin-bottom: 0; }
.offer-card__body  { padding: 1.5rem; }
.offer-card__desc  { font-size: 0.88rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1rem; }
.offer-card__meta  { display: flex; justify-content: space-between; font-size: 0.76rem; color: #999; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.4rem; }
.offer-card__code-wrap { margin-bottom: 1rem; }
.offer-card__code-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #aaa; margin-bottom: 0.3rem; }
.offer-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    border: 1.5px dashed var(--gold);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
}
.offer-code-val { font-family: monospace; font-size: 1rem; letter-spacing: 0.12em; color: var(--navy-dark); font-weight: 700; }
.offer-code-copy {
    background: var(--navy-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.3em 0.7em;
    font-size: 0.72rem;
    cursor: pointer;
    transition: background 0.15s;
}
.offer-code-copy:hover, .offer-code-copy.copied { background: #2e7d32; }
.offer-card__actions { display: flex; gap: 0.5rem; }
.offer-card__actions .btn { flex: 1; text-align: center; font-size: 0.8rem; padding: 0.6rem 0.5rem; }

/* ── Subscribe Page ──────────────────────────────────────────────── */
.subscribe-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 60vh;
}
@media (max-width: 768px) { .subscribe-hero { grid-template-columns: 1fr; } }
.subscribe-hero__left {
    background: var(--navy-dark);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.subscribe-hero__right { background: var(--cream); padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }

/* ── Referral Page ──────────────────────────────────────────────── */
.referral-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 2rem 0; text-align: center; }
@media (max-width: 768px) { .referral-steps { grid-template-columns: 1fr; } }
.referral-step__num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--navy-dark); font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.referral-step__title { font-family: var(--font-heading); font-size: 1rem; color: var(--navy-dark); margin-bottom: 0.4rem; }
.referral-step__desc  { font-size: 0.85rem; color: #666; line-height: 1.6; }

.referral-share-box { background: var(--cream); border-radius: 12px; padding: 1.5rem; margin-top: 1.5rem; }
.referral-link-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(28,43,74,0.2); border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; background: #fff; margin-bottom: 0.75rem; outline: none; }
.referral-link-output { background: var(--cream); border: 1.5px dashed var(--gold); border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.85rem; color: var(--navy-dark); flex: 1; }
.referral-share-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }
.referral-share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; color: #fff; transition: opacity 0.15s; }
.referral-share-btn:hover { opacity: 0.85; }
.referral-share-btn--wa { background: #25d366; }
.referral-share-btn--fb { background: #1877f2; }
.referral-share-btn--x  { background: #000; }

/* ── Tier 3: Guest Experience Components ───────────────────────────────────── */

/* Shared guest form success card */
.guest-success-card { max-width: 560px; margin: 3rem auto; background: #FAF7F2; border-radius: 16px; padding: 3rem 2.5rem; text-align: center; box-shadow: 0 4px 30px rgba(28,43,74,0.1); }
.guest-success-icon { width: 64px; height: 64px; background: #C8A951; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; margin: 0 auto 1.5rem; }
.guest-success-card h2 { font-family: 'Playfair Display', serif; color: #1C2B4A; margin-bottom: 1rem; }
.guest-success-card p { color: #4a5568; margin-bottom: 0.75rem; }
.guest-ref { font-size: 0.9rem; background: #fff; padding: 0.5rem 1rem; border-radius: 8px; display: inline-block; }
.guest-total { font-size: 1.1rem; }
.feedback-share-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.input-error { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,0.15); }
.form-error { color: #e53e3e; font-size: 0.875rem; margin-top: 0.5rem; min-height: 1.25rem; }

/* Multi-step form progress */
.step-progress-wrap { margin-bottom: 2.5rem; }
.step-indicators { display: flex; align-items: center; gap: 0; margin-bottom: 1rem; }
.step-indicator { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.step-indicator:not(:last-child)::after { content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px; background: #e2e8f0; z-index: 0; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: #e2e8f0; color: #718096; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: background 0.2s, color 0.2s; }
.step-num.active { background: #C8A951; color: #fff; }
.step-num.done { background: #1C2B4A; color: #fff; }
.step-label { font-size: 0.7rem; margin-top: 0.4rem; color: #718096; text-align: center; }
.step-progress-bar-track { height: 4px; background: #e2e8f0; border-radius: 2px; overflow: hidden; }
.step-progress-bar { height: 100%; background: #C8A951; border-radius: 2px; transition: width 0.3s ease; }
.form-step { animation: fadeIn 0.2s ease; }
.step-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }
.step-next, .step-back { padding: 0.65rem 1.5rem; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-size: 0.9rem; }
.step-next { background: #C8A951; color: #fff; }
.step-next:hover { background: #b89740; }
.step-back { background: #e2e8f0; color: #1C2B4A; }
.step-back:hover { background: #cbd5e0; }

/* Guest forms shared */
.guest-form-section { background: #fff; border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 2px 12px rgba(28,43,74,0.06); }
.guest-form-section h3 { font-family: 'Playfair Display', serif; color: #1C2B4A; font-size: 1.2rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid #FAF7F2; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #2d3748; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem; color: #2d3748; background: #fff; transition: border-color 0.15s; box-sizing: border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #C8A951; }
.form-group textarea { resize: vertical; min-height: 90px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.checkbox-item input[type=checkbox] { accent-color: #C8A951; width: 16px; height: 16px; flex-shrink: 0; }
.radio-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.radio-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; background: #FAF7F2; padding: 0.4rem 0.85rem; border-radius: 20px; border: 1.5px solid #e2e8f0; transition: border-color 0.15s; }
.radio-item input[type=radio] { accent-color: #C8A951; }
.radio-item:has(input:checked) { border-color: #C8A951; background: #fff8e7; }
.gdpr-row { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: #718096; margin: 0.5rem 0; }
.gdpr-row input { accent-color: #C8A951; margin-top: 2px; flex-shrink: 0; }

/* Pre-arrival portal */
.pre-arrival-wrap { max-width: 720px; margin: 0 auto; }

/* Check-in */
.checkin-wrap { max-width: 700px; margin: 0 auto; }
.checkin-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .checkin-benefits { grid-template-columns: 1fr 1fr; } }
.checkin-benefit { background: #FAF7F2; border-radius: 10px; padding: 1.25rem; text-align: center; }
.checkin-benefit-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.checkin-benefit p { font-size: 0.8rem; font-weight: 600; color: #1C2B4A; margin: 0; }
.late-arrival-note { background: #fff8e7; border: 1.5px solid #C8A951; border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.875rem; color: #744210; margin-top: 0.5rem; }

/* Special occasions add-ons */
.occasions-wrap { max-width: 800px; margin: 0 auto; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.addon-card { border: 2px solid #e2e8f0; border-radius: 12px; padding: 1.25rem; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.addon-card:has(.addon-checkbox:checked) { border-color: #C8A951; background: #fff8e7; box-shadow: 0 4px 12px rgba(200,169,81,0.2); }
.addon-check-wrap { display: flex; align-items: flex-start; gap: 0.75rem; }
.addon-checkbox { accent-color: #C8A951; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.addon-title { font-weight: 700; color: #1C2B4A; font-size: 0.95rem; margin-bottom: 0.25rem; }
.addon-desc { font-size: 0.8rem; color: #718096; margin: 0.25rem 0; line-height: 1.4; }
.addon-price { font-weight: 700; color: #C8A951; font-size: 1rem; margin-top: 0.25rem; }
.occasions-total { background: #1C2B4A; color: #fff; border-radius: 10px; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; margin: 1rem 0; }
.occasions-total-label { font-size: 0.95rem; }
.occasions-total-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #C8A951; }

/* Feedback survey */
.feedback-wrap { max-width: 700px; margin: 0 auto; }
.star-ratings-section { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; }
.star-rating-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 0; border-bottom: 1px solid #e2e8f0; }
.star-rating-label { font-size: 0.9rem; font-weight: 600; color: #2d3748; flex: 1; min-width: 150px; }
.star-rating-group { display: flex; gap: 0.25rem; align-items: center; }
.star-btn { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #e2e8f0; transition: color 0.1s, transform 0.1s; padding: 2px; line-height: 1; }
.star-btn:hover, .star-btn.star-hover { color: #C8A951; transform: scale(1.15); }
.star-btn.star-active { color: #C8A951; }
.nps-section { margin: 1.5rem 0; }
.nps-section > p { font-size: 0.9rem; font-weight: 600; color: #2d3748; margin-bottom: 0.75rem; }
.nps-buttons { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.nps-btn { width: 42px; height: 42px; border-radius: 8px; border: 1.5px solid #e2e8f0; background: #fff; font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.nps-btn:hover { border-color: #C8A951; background: #fff8e7; }
.nps-btn.nps-active { background: #C8A951; border-color: #C8A951; color: #fff; }
.nps-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: #718096; margin-top: 0.4rem; }

/* Transport request */
.transport-wrap { max-width: 700px; margin: 0 auto; }
.transport-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .transport-info { grid-template-columns: 1fr 1fr; } }
.transport-info-card { background: #FAF7F2; border-radius: 10px; padding: 1rem; text-align: center; }
.transport-info-card span { display: block; font-size: 1.4rem; margin-bottom: 0.35rem; }
.transport-info-card p { font-size: 0.8rem; font-weight: 600; color: #1C2B4A; margin: 0; }
.transport-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 500px) { .transport-types { grid-template-columns: repeat(4, 1fr); } }
.transport-type-label { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 1rem 0.5rem; border: 2px solid #e2e8f0; border-radius: 10px; cursor: pointer; font-size: 0.8rem; font-weight: 600; text-align: center; transition: border-color 0.15s; }
.transport-type-label span { font-size: 1.5rem; }
.transport-type-label:has(input:checked) { border-color: #C8A951; background: #fff8e7; }
.transport-type-label input { display: none; }
.price-note { background: #EBF8FF; border: 1.5px solid #90cdf4; border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.875rem; color: #2c5282; margin-top: 1rem; }

/* Restaurant reservation */
.restaurant-wrap { max-width: 720px; margin: 0 auto; }
.restaurant-info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .restaurant-info-strip { grid-template-columns: 1fr 1fr; } }
.restaurant-info-item { background: #1C2B4A; color: #fff; border-radius: 10px; padding: 1rem; text-align: center; }
.restaurant-info-item span { display: block; font-size: 1.2rem; margin-bottom: 0.35rem; }
.restaurant-info-item p { font-size: 0.75rem; font-weight: 600; margin: 0; }
.party-size-stepper { display: flex; align-items: center; gap: 0.75rem; }
.stepper-btn { width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid #e2e8f0; background: #fff; font-size: 1.2rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.stepper-btn:hover { background: #FAF7F2; }
.stepper-value { font-size: 1.1rem; font-weight: 700; color: #1C2B4A; min-width: 30px; text-align: center; }
.large-party-note { display: none; background: #fff8e7; border: 1.5px solid #C8A951; border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.875rem; color: #744210; margin-top: 0.5rem; }
.large-party-note.visible { display: block; }
.time-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 0.5rem; max-height: 200px; overflow-y: auto; padding: 0.5rem; border: 1.5px solid #e2e8f0; border-radius: 8px; }
.time-slot-label { display: flex; flex-direction: column; align-items: center; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 0.6rem 0.25rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: border-color 0.15s; text-align: center; }
.time-slot-label:has(input:checked) { border-color: #C8A951; background: #fff8e7; color: #1C2B4A; }
.time-slot-label input { display: none; }

/* Accessibility page */
.accessibility-wrap { max-width: 800px; margin: 0 auto; }
.accessibility-commitment-banner { background: #FAF7F2; border-left: 4px solid #C8A951; border-radius: 8px; padding: 1.5rem 2rem; margin-bottom: 2.5rem; }
.accessibility-hotel { background: #fff; border-radius: 14px; padding: 2rem; margin-bottom: 2rem; box-shadow: 0 2px 16px rgba(28,43,74,0.07); }
.accessibility-hotel h2 { font-family: 'Playfair Display', serif; color: #1C2B4A; border-bottom: 2px solid #C8A951; padding-bottom: 0.75rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.access-sections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .access-sections-grid { grid-template-columns: 1fr; } }
.accessibility-section h3 { font-size: 0.95rem; font-weight: 700; color: #2d3748; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.accessibility-list { list-style: none; padding: 0; margin: 0; }
.accessibility-list li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; font-size: 0.875rem; color: #4a5568; line-height: 1.5; }
.accessibility-list li::before { content: '\2713'; position: absolute; left: 0; color: #C8A951; font-weight: 700; }
.accessibility-contact-box { background: #FAF7F2; border-radius: 12px; padding: 1.5rem 2rem; margin-top: 2rem; }
.accessibility-contact-box h3 { font-family: 'Playfair Display', serif; color: #1C2B4A; margin-bottom: 1rem; }
.accessibility-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .accessibility-contacts { grid-template-columns: 1fr; } }
.access-contact-card { background: #fff; border-radius: 10px; padding: 1rem 1.25rem; }
.access-contact-card h4 { font-size: 0.9rem; font-weight: 700; color: #1C2B4A; margin-bottom: 0.5rem; }
.access-contact-card p { font-size: 0.85rem; color: #4a5568; margin: 0.2rem 0; }
.accessibility-commitment { background: #1C2B4A; color: #FAF7F2; border-radius: 14px; padding: 2.5rem; margin-top: 2rem; text-align: center; }
.accessibility-commitment h2 { font-family: 'Playfair Display', serif; color: #C8A951; margin-bottom: 1rem; font-size: 1.6rem; }
.accessibility-commitment p { max-width: 560px; margin: 0 auto; line-height: 1.7; opacity: 0.9; }

/* ── Tier 4: Events & B2B Components ──────────────────────────────────────── */

/* Events success card */
.events-success-card { max-width: 600px; margin: 3rem auto; background: #FAF7F2; border-radius: 16px; padding: 3rem 2.5rem; text-align: center; box-shadow: 0 4px 30px rgba(28,43,74,0.1); }
.events-success-icon { width: 70px; height: 70px; background: #C8A951; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto 1.5rem; }
.events-success-card h2 { font-family: 'Playfair Display', serif; color: #1C2B4A; margin-bottom: 1rem; }
.events-success-card p { color: #4a5568; margin-bottom: 0.75rem; }
.events-ref { font-size: 0.9rem; background: #fff; padding: 0.5rem 1rem; border-radius: 8px; display: inline-block; }

/* Trust strips */
.events-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .events-trust-strip { grid-template-columns: 1fr 1fr; } }
.events-trust-card { background: #1C2B4A; color: #fff; border-radius: 10px; padding: 1.25rem; text-align: center; }
.events-trust-card span { display: block; font-size: 1.4rem; margin-bottom: 0.4rem; }
.events-trust-card p { font-size: 0.8rem; font-weight: 600; margin: 0; }
.events-trust-card--light { background: #FAF7F2; color: #1C2B4A; }

/* Meetings RFQ */
.meetings-rfq-wrap { max-width: 760px; margin: 0 auto; }

/* Weddings */
.weddings-wrap { max-width: 760px; margin: 0 auto; }
.wedding-venues-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width: 580px) { .wedding-venues-grid { grid-template-columns: 1fr; } }
.wedding-venue-card { background: #1C2B4A; color: #FAF7F2; border-radius: 14px; padding: 2rem; }
.wedding-venue-card h3 { font-family: 'Playfair Display', serif; color: #C8A951; margin-bottom: 0.75rem; }
.wedding-venue-card p { font-size: 0.875rem; opacity: 0.9; margin-bottom: 0.5rem; }
.wedding-venue-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; margin: 0.3rem 0; }
.wedding-venue-feature::before { content: '♦'; color: #C8A951; }

/* Group booking calculator */
.group-booking-wrap { max-width: 800px; margin: 0 auto; }
.group-calc { background: #FAF7F2; border-radius: 16px; padding: 2rem; margin-bottom: 2.5rem; }
.group-calc h2 { font-family: 'Playfair Display', serif; color: #1C2B4A; margin-bottom: 1.5rem; font-size: 1.4rem; }
.calc-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 580px) { .calc-controls { grid-template-columns: 1fr; } }
.calc-discount-tiers { background: #fff; border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0; }
.calc-discount-tiers h4 { font-size: 0.85rem; font-weight: 700; color: #2d3748; margin-bottom: 0.5rem; }
.discount-tier { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.85rem; border-bottom: 1px solid #f0f0f0; }
.discount-tier:last-child { border-bottom: none; }
.discount-pct { font-weight: 700; color: #C8A951; }
.group-calc-result { margin-top: 1.5rem; }

/* Corporate rate calculator */
.corp-rate-wrap { max-width: 700px; margin: 0 auto; }
.corp-calc { background: #FAF7F2; border-radius: 16px; padding: 2rem; margin-bottom: 2.5rem; }
.corp-calc h2 { font-family: 'Playfair Display', serif; color: #1C2B4A; margin-bottom: 1.5rem; font-size: 1.4rem; }
.corp-calc-result { margin-top: 1.5rem; }
.corp-steps { display: flex; gap: 0; justify-content: center; margin-bottom: 2.5rem; }
.corp-step { text-align: center; flex: 1; position: relative; }
.corp-step:not(:last-child)::after { content: '→'; position: absolute; right: -8px; top: 20px; color: #C8A951; font-size: 1.2rem; }
.corp-step-num { width: 44px; height: 44px; background: #C8A951; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 0.5rem; font-size: 1.1rem; }
.corp-step-label { font-size: 0.75rem; font-weight: 600; color: #2d3748; }
.corp-cta-box { background: #1C2B4A; color: #FAF7F2; border-radius: 14px; padding: 2rem; text-align: center; margin-top: 2rem; }
.corp-cta-box h3 { font-family: 'Playfair Display', serif; color: #C8A951; margin-bottom: 1rem; }
.corp-testimonial { background: #FAF7F2; border-radius: 12px; padding: 1.5rem 2rem; margin-top: 2rem; border-left: 4px solid #C8A951; }
.corp-testimonial blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: #2d3748; margin-bottom: 0.75rem; }
.corp-testimonial cite { font-size: 0.85rem; color: #718096; }

/* Shared calculator result grid */
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 500px) { .calc-result-grid { grid-template-columns: 1fr; } }
.calc-result-item { background: #fff; border-radius: 10px; padding: 1rem; }
.calc-result-item.highlight { background: #1C2B4A; color: #fff; }
.calc-result-item.gold { background: #C8A951; color: #fff; }
.calc-label { display: block; font-size: 0.75rem; opacity: 0.8; margin-bottom: 0.25rem; }
.calc-val { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.calc-result-item.highlight .calc-label, .calc-result-item.gold .calc-label { opacity: 0.85; }

/* Corporate application */
.corp-app-wrap { max-width: 760px; margin: 0 auto; }
.corp-benefits-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .corp-benefits-bar { grid-template-columns: 1fr 1fr; } }
.corp-benefit-item { background: #FAF7F2; border-radius: 10px; padding: 1.25rem; text-align: center; }
.corp-benefit-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.corp-benefit-title { font-size: 0.85rem; font-weight: 700; color: #1C2B4A; }
.corp-benefit-desc { font-size: 0.75rem; color: #718096; margin-top: 0.2rem; }

/* Number stepper widget */
.number-stepper { display: flex; align-items: center; gap: 0.5rem; }
.num-stepper-btn { width: 32px; height: 32px; border-radius: 6px; border: 1.5px solid #e2e8f0; background: #fff; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.num-stepper-btn:hover { background: #FAF7F2; }
.num-stepper-input { width: 60px; text-align: center; border: 1.5px solid #e2e8f0; border-radius: 6px; padding: 0.4rem; font-size: 1rem; font-weight: 600; }

/* ── Tier 5 & 6: Loyalty, Retention & Conversion Tools ───────────────────── */

/* ── Dark Mode Variables ─────────────────────────────────────────────────── */
[data-theme='dark'] {
    --navy:        #0f1926;
    --navy-dark:   #08111c;
    --navy-light:  #1a2d4a;
    --cream:       #1e2837;
    --cream-dark:  #182030;
    --white:       #1e2837;
    --charcoal:    #e0e6f0;
    --grey-mid:    #9ab0c8;
    --grey-light:  #2e3f55;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.25);
    --shadow:      0 4px 16px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.3);
    --shadow-lg:   0 12px 40px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.4);
}

[data-theme='dark'] body { background: #0f1926; color: #cbd5e1; }
[data-theme='dark'] .site-header { background: #08111c; border-bottom-color: #1e2d45; }
[data-theme='dark'] .topbar { background: #08111c; }
[data-theme='dark'] .nav__link { color: #cbd5e1; }
[data-theme='dark'] .nav__link:hover { color: #C8A951; }
[data-theme='dark'] .mega-panel { background: #0f1926; border-bottom-color: #1e2d45; }
[data-theme='dark'] .mega-card { background: #1e2837; border-color: #2e3f55; }
[data-theme='dark'] .mega-card__name { color: #e2e8f0; }
[data-theme='dark'] .mega-card__desc { color: #9ab0c8; }
[data-theme='dark'] .hero-slide__overlay { background: linear-gradient(to right, rgba(8,17,28,0.85) 45%, rgba(8,17,28,0.2)); }
[data-theme='dark'] h1, [data-theme='dark'] h2, [data-theme='dark'] h3, [data-theme='dark'] h4 { color: #e2e8f0; }
[data-theme='dark'] p { color: #9ab0c8; }
[data-theme='dark'] .section--cream { background: #182030; }
[data-theme='dark'] .section--white { background: #1e2837; }
[data-theme='dark'] .card, [data-theme='dark'] .hotel-card { background: #1e2837; border-color: #2e3f55; }
[data-theme='dark'] .card__desc { color: #9ab0c8; }
[data-theme='dark'] .form-group input,
[data-theme='dark'] .form-group select,
[data-theme='dark'] .form-group textarea { background: #182030; border-color: #2e3f55; color: #e2e8f0; }
[data-theme='dark'] .form-group label { color: #cbd5e1; }
[data-theme='dark'] .guest-form-section { background: #182030; }
[data-theme='dark'] .guest-form-section h3 { color: #e2e8f0; border-bottom-color: #2e3f55; }
[data-theme='dark'] footer { background: #08111c; }
[data-theme='dark'] .site-footer { background: #08111c; }

/* ── Dark Mode Toggle Button ─────────────────────────────────────────────── */
.dark-mode-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: none; border-radius: 50%;
    background: transparent;
    cursor: pointer; padding: 0;
    transition: background var(--transition);
    margin-left: 0.5rem;
}
.dark-mode-toggle:hover { background: rgba(200,169,81,0.12); }
.dark-mode-toggle__icon {
    font-size: 1.1rem; line-height: 1;
    transition: opacity 0.2s, transform 0.3s;
}
.dark-mode-toggle__icon--light { color: #C8A951; }
.dark-mode-toggle__icon--dark  { color: #8bb5e8; display: none; }
[data-theme='dark'] .dark-mode-toggle__icon--light { display: none; }
[data-theme='dark'] .dark-mode-toggle__icon--dark  { display: block; }

/* ── Social Share Floating Bar ───────────────────────────────────────────── */
.social-share-bar {
    position: fixed; right: 1.25rem; bottom: 5rem; z-index: 900;
    display: flex; flex-direction: column; gap: 0.5rem;
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.social-share-bar.is-visible {
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
}
.share-btn {
    width: 44px; height: 44px;
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    color: #fff;
}
.share-btn:hover { transform: scale(1.1); box-shadow: 0 5px 18px rgba(0,0,0,0.3); }
.share-fb { background: #1877f2; }
.share-x  { background: #000; }
.share-wa { background: #25d366; }
.share-copy { background: #1C2B4A; }
@media (max-width: 640px) {
    .social-share-bar { right: 0.75rem; bottom: 4rem; }
    .share-btn { width: 40px; height: 40px; }
}

/* ── Room Comparison Panel ───────────────────────────────────────────────── */
.room-compare-trigger {
    display: flex; align-items: center; gap: 0.5rem;
    background: none; border: 2px solid var(--gold);
    color: var(--navy); border-radius: 8px;
    padding: 0.4rem 0.85rem; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
    margin-top: 0.75rem; width: 100%;
    justify-content: center;
}
.room-compare-trigger:hover { background: rgba(200,169,81,0.1); }
.room-compare-trigger.is-selected { background: var(--gold); color: #fff; }
.room-compare-panel {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
    background: #fff; border-top: 3px solid var(--gold);
    box-shadow: 0 -8px 30px rgba(28,43,74,0.15);
    padding: 1.25rem var(--gutter);
    transform: translateY(100%); transition: transform 0.3s ease;
}
.room-compare-panel.is-visible { transform: translateY(0); }
[data-theme='dark'] .room-compare-panel { background: #1e2837; border-top-color: var(--gold); }
.room-compare-panel__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem;
}
.room-compare-panel__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; }
[data-theme='dark'] .room-compare-panel__title { color: #e2e8f0; }
.room-compare-panel__close {
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--grey-mid); line-height: 1; padding: 0.25rem;
}
.compare-cols {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.compare-col { background: var(--cream); border-radius: 10px; padding: 1rem; }
[data-theme='dark'] .compare-col { background: #182030; }
.compare-col__name { font-family: var(--font-serif); color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
[data-theme='dark'] .compare-col__name { color: #e2e8f0; }
.compare-col__price { color: var(--gold-dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.compare-col__feat { font-size: 0.78rem; color: var(--grey-mid); line-height: 1.6; }
.compare-col__cta { display: block; margin-top: 0.75rem; text-align: center; padding: 0.45rem; background: var(--gold); color: #fff; border-radius: 6px; font-size: 0.8rem; font-weight: 600; text-decoration: none; }
.compare-col__cta:hover { background: var(--gold-dark); }
.compare-col__remove { background: none; border: none; font-size: 0.75rem; color: var(--grey-mid); cursor: pointer; margin-top: 0.25rem; display: block; text-align: center; width: 100%; }

/* ── Loyalty Programme ───────────────────────────────────────────────────── */
.loyalty-wrap { max-width: 860px; margin: 0 auto; }
.loyalty-card {
    background: linear-gradient(135deg, #1C2B4A 0%, #2a3f6a 50%, #1C2B4A 100%);
    border-radius: 20px; padding: 2.5rem; color: #FAF7F2;
    position: relative; overflow: hidden; margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(28,43,74,0.3);
}
.loyalty-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(200,169,81,0.12);
}
.loyalty-card__tier {
    display: inline-block; background: var(--gold);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem;
}
.loyalty-card__name { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.25rem; }
.loyalty-card__number { font-size: 0.8rem; opacity: 0.7; font-family: monospace; letter-spacing: 0.12em; }
.loyalty-card__bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 1.5rem; }
.loyalty-card__points { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.loyalty-card__pts-label { font-size: 0.7rem; opacity: 0.7; margin-top: 0.2rem; }
.loyalty-card__nights { font-size: 0.85rem; opacity: 0.8; }

.loyalty-progress { margin-bottom: 2.5rem; }
.loyalty-progress__bar-track { height: 8px; background: var(--cream-dark); border-radius: 4px; overflow: hidden; margin: 0.5rem 0; }
.loyalty-progress__bar { height: 100%; background: var(--gold); border-radius: 4px; transition: width 0.5s ease; }
.loyalty-progress__labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--grey-mid); }

.loyalty-tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .loyalty-tiers-grid { grid-template-columns: 1fr; } }
.loyalty-tier-card { border-radius: 12px; padding: 1.5rem; text-align: center; border: 2px solid var(--grey-light); position: relative; }
.loyalty-tier-card.is-current { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,169,81,0.1); }
.loyalty-tier-card--silver { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.loyalty-tier-card--gold   { background: linear-gradient(135deg, #fffbf0, #fdf2cb); }
.loyalty-tier-card--plat   { background: linear-gradient(135deg, #f0f4ff, #e8f0fe); }
.loyalty-tier-badge { font-size: 1.8rem; margin-bottom: 0.5rem; }
.loyalty-tier-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.loyalty-tier-threshold { font-size: 0.75rem; color: var(--grey-mid); margin-bottom: 0.75rem; }
.loyalty-tier-perks { list-style: none; text-align: left; font-size: 0.78rem; color: var(--charcoal); }

/* ────────────────────────────────────────────
   HERO SLIDER
──────────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; height: 60vh; min-height: 420px; max-height: 700px; background: var(--navy); }
.hero-slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; z-index: 0; }
.hero-slider__slide.is-active { opacity: 1; z-index: 1; }
.hero-slider__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease; }
.hero-slider__slide.is-active .hero-slider__bg { transform: scale(1); }
.hero-slider__overlay { position: absolute; inset: 0; background: linear-gradient(170deg, rgba(14,25,48,.35) 0%, rgba(14,25,48,.78) 100%); z-index: 2; }
.hero-slider__content { position: absolute; inset: 0; z-index: 3; display: flex; align-items: flex-end; padding-bottom: 5rem; }
.hero-slider__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.hero-slider__title { font-family: var(--font-serif); font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .6rem; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero-slider__sub { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 1.75rem; max-width: 520px; }
.hero-slider__cta { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.75rem; background: var(--gold); color: #fff; font-weight: 600; font-size: .9rem; text-decoration: none; border-radius: 4px; transition: background .2s, transform .15s; }
.hero-slider__cta:hover { background: #a88820; transform: translateY(-2px); color: #fff; }
.hero-slider__prev, .hero-slider__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; }
.hero-slider__prev { left: 1.5rem; }
.hero-slider__next { right: 1.5rem; }
.hero-slider__prev:hover, .hero-slider__next:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }
.hero-slider__dots { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: .5rem; align-items: center; }
.hero-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0; transition: background .25s, transform .25s; }
.hero-slider__dot.is-active { background: var(--gold); transform: scale(1.4); }
.hero-slider__progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold); z-index: 10; width: 0; opacity: .7; }
@media (max-width: 768px) {
  .hero-slider { height: 52vh; min-height: 300px; }
  .hero-slider__prev { left: .75rem; }
  .hero-slider__next { right: .75rem; }
  .hero-slider__content { padding-bottom: 4rem; }
}
[data-theme='dark'] .hero-slider__overlay { background: linear-gradient(170deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,.85) 100%); }
.loyalty-tier-perks li { padding: 0.2rem 0; }
.loyalty-tier-perks li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.loyalty-current-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.75rem; border-radius: 10px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; }

.loyalty-register-form { background: var(--cream); border-radius: 16px; padding: 2.5rem; margin-bottom: 2rem; }
.loyalty-register-form h2 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 1.5rem; }
.loyalty-lookup { background: #fff; border-radius: 12px; padding: 2rem; border: 1.5px solid var(--grey-light); margin-top: 2rem; }
[data-theme='dark'] .loyalty-register-form { background: #182030; }
[data-theme='dark'] .loyalty-lookup { background: #182030; border-color: #2e3f55; }

/* Member Deals */
.member-deals-wrap { max-width: 900px; margin: 0 auto; }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.deal-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
[data-theme='dark'] .deal-card { background: #1e2837; }
.deal-card__badge { display: block; background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 1rem; }
.deal-card__badge--teal { background: var(--teal); }
.deal-card__badge--navy { background: var(--navy); }
.deal-card__body { padding: 1.5rem; }
.deal-card__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
[data-theme='dark'] .deal-card__title { color: #e2e8f0; }
.deal-card__desc { font-size: 0.85rem; color: var(--grey-mid); margin-bottom: 1rem; line-height: 1.6; }
.deal-card__code { background: var(--cream); border: 1.5px dashed var(--gold); border-radius: 6px; padding: 0.4rem 0.85rem; font-family: monospace; font-weight: 700; color: var(--navy); font-size: 0.9rem; display: inline-block; }
[data-theme='dark'] .deal-card__code { background: #182030; color: #e2e8f0; }
.deal-card__expiry { font-size: 0.72rem; color: var(--grey-mid); margin-top: 0.5rem; display: block; }

/* Special Dates */
.special-dates-wrap { max-width: 660px; margin: 0 auto; }
.special-dates-list { display: grid; gap: 0.75rem; margin-top: 2rem; }
.special-date-item { background: #fff; border-radius: 12px; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); }
[data-theme='dark'] .special-date-item { background: #1e2837; }
.special-date-icon { font-size: 1.6rem; flex-shrink: 0; }
.special-date-info { flex: 1; }
.special-date-type { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
[data-theme='dark'] .special-date-type { color: #e2e8f0; }
.special-date-when { font-size: 0.8rem; color: var(--grey-mid); margin-top: 0.15rem; }

/* Welcome Back (Win-back) */
.winback-wrap { max-width: 620px; margin: 0 auto; text-align: center; }
.winback-offer-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 20px; padding: 3rem; color: #FAF7F2; margin-bottom: 2.5rem; position: relative; overflow: hidden; }
.winback-offer-card::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(200,169,81,0.12); }
.winback-offer-badge { display: inline-block; background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.winback-offer-discount { font-family: var(--font-serif); font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.winback-offer-desc { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.winback-code { background: rgba(255,255,255,0.1); border: 1.5px dashed rgba(200,169,81,0.5); border-radius: 8px; padding: 0.65rem 1.25rem; font-family: monospace; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); display: inline-block; }

/* Preferences */
.preferences-wrap { max-width: 720px; margin: 0 auto; }
.pref-section { background: #fff; border-radius: 14px; padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
[data-theme='dark'] .pref-section { background: #1e2837; }
.pref-section__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.15rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--cream-dark); display: flex; align-items: center; gap: 0.5rem; }
[data-theme='dark'] .pref-section__title { color: #e2e8f0; border-bottom-color: #2e3f55; }
.pref-section__icon { font-size: 1.2rem; }
.pref-toggle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.pref-toggle { display: flex; align-items: center; gap: 0.65rem; padding: 0.75rem; background: var(--cream); border-radius: 8px; cursor: pointer; transition: background 0.15s; }
[data-theme='dark'] .pref-toggle { background: #182030; color: #cbd5e1; }
.pref-toggle:hover { background: rgba(200,169,81,0.08); }
.pref-toggle input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.pref-radio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.pref-radio-card { text-align: center; padding: 1rem 0.75rem; background: var(--cream); border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s, background 0.15s; }
[data-theme='dark'] .pref-radio-card { background: #182030; color: #cbd5e1; }
.pref-radio-card:hover { border-color: var(--gold-light); }
.pref-radio-card input[type=radio] { display: none; }
.pref-radio-card input[type=radio]:checked + .pref-radio-label { color: var(--gold-dark); }
.pref-radio-card:has(input:checked) { border-color: var(--gold); background: rgba(200,169,81,0.08); }
.pref-radio-icon { font-size: 1.6rem; margin-bottom: 0.4rem; display: block; }
.pref-radio-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); display: block; }
[data-theme='dark'] .pref-radio-label { color: #cbd5e1; }
.dietary-checkboxes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dietary-tag { display: flex; align-items: center; gap: 0.4rem; background: var(--cream); border: 1.5px solid var(--grey-light); border-radius: 20px; padding: 0.35rem 0.85rem; cursor: pointer; font-size: 0.8rem; font-weight: 500; transition: border-color 0.15s, background 0.15s; }
[data-theme='dark'] .dietary-tag { background: #182030; border-color: #2e3f55; color: #cbd5e1; }
.dietary-tag:hover { border-color: var(--gold-light); }
.dietary-tag input[type=checkbox] { display: none; }
.dietary-tag:has(input:checked) { border-color: var(--gold); background: rgba(200,169,81,0.1); color: var(--gold-dark); }

/* ── Find Us / Map Page ───────────────────────────────────────────────────── */
.find-us-wrap { max-width: 1100px; margin: 0 auto; }
.hotels-find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 780px) { .hotels-find-grid { grid-template-columns: 1fr; } }
.find-hotel-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
[data-theme='dark'] .find-hotel-card { background: #1e2837; }
.find-hotel-card__map { height: 220px; }
.find-hotel-card__map iframe { width: 100%; height: 100%; border: none; }
.find-hotel-card__body { padding: 1.75rem; }
.find-hotel-card__name { font-family: var(--font-serif); color: var(--navy); font-size: 1.25rem; margin-bottom: 0.75rem; }
[data-theme='dark'] .find-hotel-card__name { color: #e2e8f0; }
.find-hotel-card__detail { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--grey-mid); margin-bottom: 0.5rem; }
.find-hotel-card__detail svg { flex-shrink: 0; margin-top: 2px; }
.travel-rows { margin: 1.25rem 0; border-top: 1px solid var(--cream-dark); padding-top: 1rem; }
.travel-row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.82rem; }
[data-theme='dark'] .travel-row { border-bottom-color: #2e3f55; }
[data-theme='dark'] .travel-rows { border-top-color: #2e3f55; }
.travel-row__icon { font-size: 1.1rem; flex-shrink: 0; }
.travel-row__info { flex: 1; color: var(--charcoal); }
[data-theme='dark'] .travel-row__info { color: #cbd5e1; }
.travel-row__label { font-weight: 600; display: block; color: var(--navy); margin-bottom: 0.15rem; font-size: 0.8rem; }
[data-theme='dark'] .travel-row__label { color: #e2e8f0; }

/* Journey strip */
.journey-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
@media (max-width: 640px) { .journey-strip { grid-template-columns: 1fr; } }
.journey-card { background: var(--navy); color: var(--cream); border-radius: 14px; padding: 2rem; text-align: center; }
.journey-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.journey-card__title { font-family: var(--font-serif); color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.journey-card__desc { font-size: 0.85rem; opacity: 0.85; line-height: 1.7; }

/* Nearby landmarks */
.landmarks-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 640px) { .landmarks-wrap { grid-template-columns: 1fr; } }
.landmarks-col__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; margin-bottom: 1rem; }
[data-theme='dark'] .landmarks-col__title { color: #e2e8f0; }
.landmark-card { background: var(--cream); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 0.75rem; display: flex; gap: 1rem; align-items: flex-start; }
[data-theme='dark'] .landmark-card { background: #1e2837; }
.landmark-icon { font-size: 1.4rem; flex-shrink: 0; }
.landmark-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
[data-theme='dark'] .landmark-name { color: #e2e8f0; }
.landmark-dist { font-size: 0.75rem; color: var(--grey-mid); }

/* ── Availability Widget ──────────────────────────────────────────────────── */
.availability-wrap { max-width: 900px; margin: 0 auto; }
.avail-widget { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 3rem; }
[data-theme='dark'] .avail-widget { background: #1e2837; }
.avail-widget__header { background: var(--navy); padding: 1.75rem 2rem; }
.avail-widget__title { font-family: var(--font-serif); color: var(--cream); font-size: 1.4rem; }
.avail-widget__subtitle { color: rgba(250,247,242,0.75); font-size: 0.85rem; margin-top: 0.25rem; }
.avail-widget__body { padding: 2rem; }
.hotel-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.75rem; }
@media (max-width: 500px) { .hotel-radio-grid { grid-template-columns: 1fr; } }
.hotel-radio-card { border: 2px solid var(--grey-light); border-radius: 12px; padding: 1.25rem; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; display: flex; align-items: center; gap: 0.85rem; }
[data-theme='dark'] .hotel-radio-card { border-color: #2e3f55; }
.hotel-radio-card:hover { border-color: var(--gold-light); }
.hotel-radio-card.is-selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.15); }
.hotel-radio-card input[type=radio] { display: none; }
.hotel-radio-tick { width: 20px; height: 20px; border: 2px solid var(--grey-light); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.15s, background 0.15s; }
.hotel-radio-card.is-selected .hotel-radio-tick { border-color: var(--gold); background: var(--gold); }
.hotel-radio-tick::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; display: none; }
.hotel-radio-card.is-selected .hotel-radio-tick::after { display: block; }
.hotel-radio-info strong { display: block; font-size: 0.95rem; color: var(--navy); }
[data-theme='dark'] .hotel-radio-info strong { color: #e2e8f0; }
.hotel-radio-info span { font-size: 0.75rem; color: var(--grey-mid); }
.avail-dates-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: end; margin-bottom: 1.25rem; }
@media (max-width: 560px) { .avail-dates-row { grid-template-columns: 1fr 1fr; } .avail-dates-row .nights-badge { display: none; } }
.nights-badge { background: var(--navy); color: var(--gold); border-radius: 8px; padding: 0.5rem 0.85rem; font-size: 0.8rem; font-weight: 700; text-align: center; white-space: nowrap; height: fit-content; align-self: flex-end; margin-bottom: 0.35rem; }
.avail-guest-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
@media (max-width: 500px) { .avail-guest-row { grid-template-columns: 1fr 1fr; } }
.avail-extras-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.75rem; }
@media (max-width: 500px) { .avail-extras-row { grid-template-columns: 1fr; } }
.avail-secure-note { text-align: center; font-size: 0.75rem; color: var(--grey-mid); margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.35rem; }

/* Availability benefits strip */
.avail-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
@media (max-width: 640px) { .avail-benefits { grid-template-columns: 1fr 1fr; } }
.avail-benefit { background: var(--cream); border-radius: 12px; padding: 1.25rem; text-align: center; }
[data-theme='dark'] .avail-benefit { background: #1e2837; }
.avail-benefit__icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.avail-benefit__title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
[data-theme='dark'] .avail-benefit__title { color: #e2e8f0; }
.avail-benefit__desc { font-size: 0.75rem; color: var(--grey-mid); }

/* Room preview cards on availability page */
.avail-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
@media (max-width: 640px) { .avail-rooms-grid { grid-template-columns: 1fr; } }
.avail-room-card { background: #fff; border-radius: 14px; border: 2px solid var(--grey-light); padding: 1.5rem; transition: border-color 0.2s; }
[data-theme='dark'] .avail-room-card { background: #1e2837; border-color: #2e3f55; }
.avail-room-card.featured { border-color: var(--gold); }
.avail-room-card__badge { background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 10px; display: inline-block; margin-bottom: 0.75rem; }
.avail-room-card__name { font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; margin-bottom: 0.25rem; }
[data-theme='dark'] .avail-room-card__name { color: #e2e8f0; }
.avail-room-card__price { font-size: 1.3rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 0.75rem; }
.avail-room-features { list-style: none; margin-bottom: 1.25rem; }
.avail-room-features li { font-size: 0.8rem; color: var(--grey-mid); padding: 0.2rem 0; }
.avail-room-features li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* Trust signals */
.avail-trust { background: var(--navy); border-radius: 16px; padding: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; text-align: center; }
@media (max-width: 560px) { .avail-trust { grid-template-columns: 1fr; } }
.avail-trust__icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.avail-trust__label { font-size: 0.85rem; font-weight: 700; color: var(--cream); }
.avail-trust__value { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); margin-bottom: 0.25rem; }

/* Availability FAQ */
.avail-faq { max-width: 700px; margin: 0 auto 3rem; }
.avail-faq details { border: 1.5px solid var(--grey-light); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; }
[data-theme='dark'] .avail-faq details { border-color: #2e3f55; }
.avail-faq summary { padding: 1rem 1.25rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
[data-theme='dark'] .avail-faq summary { color: #e2e8f0; }
.avail-faq summary:hover { background: var(--cream); }
[data-theme='dark'] .avail-faq summary:hover { background: #182030; }
.avail-faq details[open] summary { background: var(--cream); border-bottom: 1px solid var(--grey-light); }
[data-theme='dark'] .avail-faq details[open] summary { background: #182030; border-bottom-color: #2e3f55; }
.avail-faq details p { padding: 1rem 1.25rem; font-size: 0.88rem; color: var(--grey-mid); }

/* Star rating & NPS (Feedback) */
.star-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; padding: 0 0.1rem; transition: transform 0.1s; color: #d4d4d4; line-height: 1; }
.star-btn.active, .star-btn:hover { color: #C8A951; transform: scale(1.15); }
.nps-grid { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.nps-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid #e2e8f0; background: #fff; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.nps-btn:hover, .nps-btn.active { background: #C8A951; border-color: #C8A951; color: #fff; }
.rating-category { margin-bottom: 1.25rem; }
.rating-label { font-size: 0.85rem; font-weight: 600; color: #2d3748; margin-bottom: 0.4rem; display: block; }
.star-row { display: flex; gap: 0.25rem; }

/* Accessibility */
.accessibility-hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .accessibility-hotels-grid { grid-template-columns: 1fr; } }
.accessibility-hotel { background: var(--cream); border-radius: 16px; padding: 2rem; }
.accessibility-hotel h3 { font-family: var(--font-serif); color: var(--navy); font-size: 1.2rem; margin-bottom: 1rem; }
.accessibility-feature-list { list-style: none; }
.accessibility-feature-list li { padding: 0.4rem 0; font-size: 0.875rem; color: var(--charcoal); display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid var(--cream-dark); }
.accessibility-feature-list li:last-child { border-bottom: none; }
.accessibility-feature-list li::before { content: '♿'; font-size: 0.9rem; }

/* Add-on (Occasions) cards */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.addon-card { background: var(--cream); border: 2px solid transparent; border-radius: 12px; padding: 1.25rem; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.addon-card:has(input:checked) { border-color: var(--gold); background: rgba(200,169,81,0.06); }
.addon-card input[type=checkbox] { display: none; }
.addon-card__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.addon-card__name { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; }
.addon-card__price { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; }
.occasions-total { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); text-align: right; padding: 1rem 0; border-top: 2px solid var(--cream-dark); }

