/* =============================================================
   Pulsraum Berlin – Custom CSS (extends Pico.css)
   ============================================================= */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --pr-primary-dk:     #434242;
    --pr-primary:  #ffe91e;
    --pr-accent:      #e74c3c;
    --pr-dark:        #1a1a2e;
    --pr-dark-80:     rgba(26,26,46,0.8);
    --pr-text:        #050404;
    --pr-muted:       #666;
    --pr-border:      #e0e0e0;
    --pr-bg-light:    #f8f7f5;
    --pr-bg-section:  #fdfcfb;
    --pr-radius:      8px;
    --pr-radius-lg:   14px;
    --pr-shadow:      0 2px 16px rgba(0,0,0,0.08);
    --pr-shadow-md:   0 4px 24px rgba(0,0,0,0.12);
    --pr-font:        'Inter', system-ui, -apple-system, sans-serif;
    --pr-transition:  0.22s ease;
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--pr-font);
    color: var(--pr-text);
    background: #fff;
    margin: 0;
}

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

ul li {
    list-style: none;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary,
a.btn-primary,
[role="button"].btn-primary {
    display: inline-block;
    background: var(--pr-primary);
    color: var(--pr-primary-dk);
    padding: 5px 10px;
    border-radius: var(--pr-radius);
    font-weight: 500;
    font-size: 0.75rem;
    text-decoration: none;
    border: 2px solid var(--pr-primary);
    cursor: pointer;
    transition: background var(--pr-transition), transform var(--pr-transition);
}
.btn-primary:hover { background: var(--pr-primary-dk); color: var(--pr-primary); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-primary.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

.btn-outline,
a.btn-outline,
[role="button"].btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--pr-primary-dk) !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--pr-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--pr-primary);
    cursor: pointer;
    transition: all var(--pr-transition);
}
.btn-outline:hover { background: var(--pr-primary); color: #000 !important; }
.btn-outline.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.w-full { width: 100%; text-align: center; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--pr-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    transition: padding var(--pr-transition), box-shadow var(--pr-transition);
}
.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 1.5rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    transition: height var(--pr-transition), padding var(--pr-transition), gap var(--pr-transition);
}
.site-header .brand img { display: block; }

.site-header.is-sticky {
    height: 80px;
    margin: 0;
    padding: 10px 0;
}

.site-header.is-sticky nav {
    height: 40px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header.is-sticky .brand,
.site-header.is-sticky .nav-links,
.site-header.is-sticky .nav-hamburger {
    height: 40px;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0; padding: 0;
    flex-wrap: wrap;
}
.nav-links li a {
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--pr-text);
    font-size: 0.9rem;
    transition: background var(--pr-transition), color var(--pr-transition);
}
.nav-links li a:hover { background: var(--pr-bg-light); color: var(--pr-accent); }

.lang-switcher-mobile {
    display: none;
}

.nav-hamburger {
    display: none !important;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pr-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
    .site-header nav { position: relative; }
    .lang-switcher-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 0.25rem;
        min-width: 44px;
        min-height: 36px;
        padding: 0.35rem 0.55rem;
        border: 1px solid var(--pr-border);
        border-radius: 999px;
        background: #fff;
        color: var(--pr-text);
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        z-index: 2;
    }
    .nav-hamburger { display: flex !important; }
    .nav-hamburger { z-index: 2; }
    .nav-links .lang-switcher { display: none; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0 0.75rem;
        border-bottom: 1px solid var(--pr-border);
        box-shadow: var(--pr-shadow);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    }
    #nav-toggle:checked ~ .nav-links {
        max-height: 520px;
        opacity: 1;
        padding: 0.75rem;
    }
    #nav-toggle:checked ~ .nav-hamburger .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #nav-toggle:checked ~ .nav-hamburger .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-8px);
    }
    #nav-toggle:checked ~ .nav-hamburger .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; padding: 0.65rem 1rem; }
}

/* ── Ghost button (hero) ───────────────────────────────────── */
.btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: color var(--pr-transition), border-color var(--pr-transition);
}
.btn-ghost:hover { color: #fff; border-color: #fff; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Eyebrow label ─────────────────────────────────────────── */
.hp-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pr-accent);
    margin-bottom: 0.75rem;
}

/* ── Section header ────────────────────────────────────────── */
.hp-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}
.hp-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
}
.hp-section-header p {
    color: var(--pr-muted);
    font-size: 1rem;
    margin: 0;
}

/* ═══ HERO ═══════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hp-hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 10s ease;
}
.hp-hero:hover .hp-hero__bg { transform: scale(1.07); }
.hp-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,10,20,0.78) 0%,
        rgba(10,10,20,0.55) 60%,
        rgba(192,57,43,0.18) 100%
    );
}
.hp-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 6rem;
    padding-bottom: 4rem;
    min-height: 92vh;
}

.hp-hero__content .hp-eyebrow { color: rgba(255,255,255,0.7); }
.hp-hero__heading {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}
.hp-hero__heading em {
    font-style: normal;
    color: var(--pr-primary);
}
.hp-hero__sub {
       font-size: 1.1rem;
    color: rgb(255 255 255);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
}
.hp-hero__ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
}
.hp-hero__trust {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    margin: 0; padding: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

/* ═══ USP BAR ════════════════════════════════════════════════ */
.hp-usp {
    background: var(--pr-dark);
    padding: 1.1rem 0;
}
.hp-usp__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.5rem;
    list-style: none;
    margin: 0; padding: 0.5rem 1rem;
}
.hp-usp__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    padding: 0.35rem 0;
}
.hp-usp__icon { font-size: 1rem; }

/* ═══ ROOMS ══════════════════════════════════════════════════ */
.hp-rooms {
    padding: 6rem 0;
    background: var(--pr-bg-section);
}
.hp-rooms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .hp-rooms__grid { grid-template-columns: 1fr; }
}

.hp-room-card {
    background: #fff;
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.hp-room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 36px rgba(0,0,0,0.12);
}
.hp-room-card--featured {
    border: 2px solid var(--pr-primary);
}
.hp-room-card__img-link { display: block; }
.hp-room-card__fig {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0;
}
.hp-room-card__fig img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-room-card:hover .hp-room-card__fig img { transform: scale(1.05); }
.hp-room-card__badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--pr-primary);
    color: var(--pr-primary-dk);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}
.hp-room-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hp-room-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pr-dark);
}
.hp-room-card__meta {
    display: flex;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 0.85rem;
    padding: 0;
    font-size: 0.8rem;
    color: var(--pr-muted);
}
.hp-room-card__meta li { white-space: nowrap; }
.hp-room-card__body p {
    font-size: 0.88rem;
    color: var(--pr-muted);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
}

/* ═══ ABOUT SPLIT ════════════════════════════════════════════ */
.hp-about {
    padding: 6rem 0;
    background: #fff;
}
.hp-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 768px) {
    .hp-about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hp-about__img { order: -1; }
}
.hp-about__text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
    margin-bottom: 1rem;
}
.hp-about__text p {
    color: var(--pr-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.hp-about__text .btn-primary { margin-top: 0.5rem; }
.hp-about__img {
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}
.hp-about__img img { width: 100%; display: block; }

/* ═══ PRICING ════════════════════════════════════════════════ */
.hp-pricing {
    padding: 6rem 0;
    background: var(--pr-bg-section);
}
.hp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 900px) {
    .hp-pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.hp-price-card {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pr-shadow-md);
}
.hp-price-card--featured {
    border-color: var(--pr-primary);
    background: linear-gradient(160deg, rgba(192,57,43,0.04) 0%, #fff 100%);
    box-shadow: 0 4px 28px rgba(192,57,43,0.10);
}
.hp-badge {
    display: inline-block;
    background: var(--pr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}
.hp-price-card header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-dark);
    margin-bottom: 0.4rem;
}
.hp-price-card__amount {
    font-size: 0.9rem;
    color: var(--pr-muted);
    margin: 0 0 1.25rem;
}
.hp-price-card__amount strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pr-primary);
}
.hp-price-card__amount span { margin-left: 0.2rem; }
.hp-price-card ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
    font-size: 0.87rem;
    color: var(--pr-muted);
}
.hp-price-card ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--pr-border);
}
.hp-price-card ul li:last-child { border-bottom: none; }
.hp-price-card__cta { margin-top: auto; width: 100%; text-align: center; }
.hp-pricing__note {
    text-align: center;
    margin-top: 1.75rem;
    color: var(--pr-muted);
    font-size: 0.82rem;
}

/* ═══ LOCATION ═══════════════════════════════════════════════ */
.hp-location {
    padding: 6rem 0;
    background: #fff;
}
.hp-location__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) {
    .hp-location__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hp-location__text .hp-eyebrow { margin-bottom: 0.75rem; display: block; }
.hp-location__text h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
    margin-bottom: 1rem;
}
.hp-location__text address {
    font-style: normal;
    font-size: 0.93rem;
    color: var(--pr-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.hp-location__transit {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}
.hp-location__transit li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--pr-text);
    border-bottom: 1px solid var(--pr-border);
}
.hp-location__transit li:last-child { border-bottom: none; }
.hp-location__map {
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* ═══ FAQ ════════════════════════════════════════════════════ */
.hp-faq {
    padding: 6rem 0;
    background: var(--pr-bg-section);
}
.faq-accordion details {
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    margin-bottom: 0.5rem;
    background: #fff;
    overflow: hidden;
    transition: box-shadow var(--pr-transition);
}
.faq-accordion details:hover { box-shadow: var(--pr-shadow); }
.faq-accordion details[open] { border-color: var(--pr-primary); }
.faq-accordion summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


.faq-accordion details p { padding: 0.25rem 1.25rem 1rem; margin: 0; font-size: 0.9rem; color: var(--pr-muted); }

/* ═══ FINAL CTA ══════════════════════════════════════════════ */
.hp-cta {
    padding: 7rem 0;
    background: var(--pr-dark);
}
.hp-cta__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.hp-cta__inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
  
    margin-bottom: 0.75rem;
}
.hp-cta__inner p {
    color: var(--pr-accent);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.hp-cta .btn-primary {
    box-shadow: 0 4px 24px rgba(192,57,43,0.4);
    font-size: 1.05rem;
    padding: 0.9rem 2.25rem;
}

/* ── Hub Pages Grid (homepage internal linking) ───────────── */
.hp-hubs {
    padding: 5rem 0;
    background: var(--color-bg, #f8f9fa);
}
.hp-hubs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.hp-hub-card {
    background: #fff;
    border-radius: var(--pr-radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.hp-hub-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.hp-hub-card__fig {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0;
}
.hp-hub-card__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-hub-card:hover .hp-hub-card__fig img { transform: scale(1.05); }
.hp-hub-card__body {
    padding: 1.25rem 1.25rem 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.hp-hub-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-dark, #1a1a1a);
    margin: 0;
    line-height: 1.35;
}
.hp-hub-card__arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--pr-primary, #c0392b);
    transition: transform 0.2s ease;
}
.hp-hub-card:hover .hp-hub-card__arrow { transform: translateX(4px); }
@media (max-width: 640px) {
    .hp-hubs__grid { grid-template-columns: 1fr; }
}

/* ── Room Detail ───────────────────────────────────────────── */
.room-hero { overflow: hidden; }
.room-hero-img { aspect-ratio: 21/8; overflow: hidden; }
.room-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.room-gallery {
    padding: 2rem 0 1rem;
}

.room-gallery h2 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.room-gallery-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
}

.room-gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.room-gallery-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
}

@media (min-width: 768px) {
    .room-gallery-scroll {
        overflow: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        user-select: none;
        padding-bottom: 0;
    }

    .room-gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .room-gallery-scroll.is-dragging {
        cursor: grabbing;
    }

    .room-gallery-grid {
        will-change: transform;
    }
}

.room-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 1rem;
}

.room-gallery-item {
    margin: 0;
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    box-shadow: var(--pr-shadow);
    flex: 0 0 auto;
    height: 235px;
    opacity: 0.65;
    transform: translateZ(0) scale(0.985);
    transition: opacity var(--pr-transition), transform var(--pr-transition), box-shadow var(--pr-transition);
    contain: layout paint;
}

.room-gallery-item.is-visible {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

.room-gallery-thumb {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    min-height: 0;
    line-height: 0;
    background: transparent;
    cursor: pointer;
    display: block;
    transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}

.room-gallery-thumb:hover,
.room-gallery-thumb:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--pr-shadow-md);
    outline: none;
}

.room-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.room-gallery-thumb:hover img,
.room-gallery-thumb:focus-visible img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .room-gallery-grid {
        gap: 0.85rem;
    }

    .room-gallery-item {
        height: 210px;
    }
}

@media (max-width: 600px) {
    .room-gallery-grid {
        gap: 0.65rem;
    }

    .room-gallery-item {
        height: 170px;
    }
}

.room-gallery-lightbox {
    border: 0;
    padding: 0;
    width: min(97vw, 1400px);
    max-width: 1400px;
    background: transparent;
}

.room-gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(2px);
}

.room-gallery-lightbox-card {
    margin: 0;
    border-radius: var(--pr-radius-lg);
    padding: 0;
    overflow: hidden;
}

.room-gallery-lightbox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--pr-border);
}

.room-gallery-lightbox-stage {
    position: relative;
    background: #111;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 4.25rem;
}

.room-gallery-lightbox-stage img {
    max-height: min(84vh, 920px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.room-gallery-close-x {
    position: absolute;
    top: 0.85rem;
    right: 0.9rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.room-gallery-close-x:hover,
.room-gallery-close-x:focus-visible {
    background: rgba(0, 0, 0, 0.75);
    outline: none;
}

.room-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--pr-transition);
}

.room-gallery-nav:hover,
.room-gallery-nav:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    outline: none;
}

#room-gallery-prev { left: 0.85rem; }
#room-gallery-next { right: 0.85rem; }

@media (max-width: 700px) {
    .room-gallery-lightbox {
        width: min(100vw, 100vw);
    }

    .room-gallery-lightbox-card {
        border-radius: 0;
    }

    .room-gallery-lightbox-head {
        display: none;
    }

    .room-gallery-lightbox-stage {
        min-height: 100dvh;
        padding: 1rem 0.45rem;
    }

    .room-gallery-nav {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        background: rgba(0, 0, 0, 0.46);
    }

    #room-gallery-prev { left: 0.5rem; }
    #room-gallery-next { right: 0.5rem; }

    .room-gallery-close-x {
        top: 0.75rem;
        right: 0.75rem;
    }

    .room-gallery-lightbox-stage img {
        width: 100%;
        max-height: 90dvh;
    }
}

.room-detail { padding: 3rem 0; }
.room-detail-inner {
    display: block;
}

/* Room page 2-column layout: main content column + sidebar */
.room-page-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    column-gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.room-page-main {
    min-width: 0;
}

/* Neutralize inner container double-padding inside room-page-wrap */
.room-page-wrap .container {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Sidebar: sticky as a single stacked unit, aligned to top */
.room-sidebar {
    position: sticky;
    top: 40px;
    align-self: start;
    padding-top: 3rem;
}

@media (max-width: 900px) {
    .room-page-wrap {
        display: block;
    }
    .room-sidebar {
        position: static;
        padding-top: 0;
        padding-bottom: 2rem;
    }
}

.room-content h1 { font-size: 2rem; font-weight: 800; }
.room-content h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.75rem; }

.room-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--pr-bg-light);
    border-radius: var(--pr-radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) { .room-stats { grid-template-columns: repeat(2, 1fr); } }
.room-stat { text-align: center; }
.room-stat .stat-icon { font-size: 1.4rem; display: block; margin-bottom: 0.25rem; }
.room-stat strong { display: block; font-size: 1rem; font-weight: 700; color: var(--pr-accent); }
.room-stat small { color: var(--pr-muted); font-size: 0.78rem; }

.features-list {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    list-style: none; margin: 0; padding: 0;
}
.feature-pill {
    background: var(--pr-bg-light);
    border: 1px solid var(--pr-border);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
}

.room-body-text ul { list-style: none; padding: 0; }
.room-body-text ul li { padding: 0.25rem 0; font-size: 0.92rem; }

/* ── Booking Card ──────────────────────────────────────────── */
.booking-card {
    background: #fff;
    border: 2px solid var(--pr-primary);
    border-radius: var(--pr-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--pr-shadow-md);
}
.booking-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.price-display { margin-bottom: 1rem; }
.price-main { font-size: 1.9rem; font-weight: 800; color: var(--pr-accent); }
.price-unit { font-size: 0.85rem; color: var(--pr-muted); margin-left: 0.25rem; }
.booking-includes {
    list-style: none; margin: 0 0 1.25rem; padding: 0;
    font-size: 0.88rem; color: var(--pr-muted);
}
.booking-includes li { padding: 0.2rem 0; }
.booking-note { margin-top: 0.75rem; text-align: center; }
.booking-note a { color: var(--pr-accent); }

.other-rooms { margin-top: 1.5rem;     margin-bottom: 1rem; }
.other-rooms h4 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pr-muted); margin-bottom: 0.5rem; }
.other-rooms ul { list-style: none; padding: 0; margin: 0; }
.other-rooms ul li { padding: 0.2rem 0; }
.other-rooms ul li a { font-size: 0.88rem; color: var(--pr-accent); text-decoration: none; }
.other-rooms ul li a:hover { text-decoration: underline; }

.room-skip-booking {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.86rem;
    color: var(--pr-primary);
    text-decoration: none;
}

.room-booking-module {
    padding: 1rem 0 4rem;
}

.room-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 960px) {
    .room-booking-layout {
        grid-template-columns: 1fr;
    }
}

.room-booking-panel,
.room-booking-form-wrap {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--pr-shadow);
}

.room-booking-lead {
    margin: 0.3rem 0 1rem;
    color: var(--pr-muted);
    font-size: 0.92rem;
}

.booking-flow-head {
    margin-bottom: 1.25rem;
}

.booking-step-indicator {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pr-accent);
}

.booking-trust-line {
    margin: 0;
    font-size: 0.9rem;
    color: var(--pr-muted);
}

.booking-flow-step {
    display: none;
}

.booking-flow-step.is-active {
    display: block;
    animation: bookingStepReveal 0.24s ease;
}

@keyframes bookingStepReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-step-copy {
    margin: -0.35rem 0 1rem;
    color: var(--pr-muted);
    font-size: 0.92rem;
}

.booking-package-options {
    border: 0;
    padding: 0;
    margin: 0 0 1rem;
}

.booking-package-options legend {
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.booking-package-option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    background: #fff;
    transition: border-color var(--pr-transition), box-shadow var(--pr-transition), background var(--pr-transition);
}

.booking-package-option + .booking-package-option {
    margin-top: 0.8rem;
}

.booking-package-option input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin: 0 !important;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    background-color: #fff;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.booking-package-option input[type="radio"]::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
    background-color: #16a34a;
}
.booking-package-option input[type="radio"]:checked {
    border-color: #16a34a;
}
.booking-package-option input[type="radio"]:checked::before {
    transform: scale(1);
}
.booking-package-option input[type="radio"]:focus-visible {
    outline: 2px solid rgba(22,163,74,0.35);
    outline-offset: 2px;
}

.booking-package-option.is-selected {
    border-color: #16a34a;
    background: rgba(22,163,74,0.06);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.booking-package-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.booking-package-copy strong {
    color: var(--pr-text);
}

.booking-package-copy small {
    color: var(--pr-muted);
}

.booking-alert {
    border-radius: var(--pr-radius);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.booking-alert-danger {
    background: #fbe7ea;
    color: #8a1c2d;
    border: 1px solid #f2c5cf;
}

/* ── Add-ons step ─────────────────────────────────────────── */
.booking-addons-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.booking-addon-option {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    background: #fff;
    cursor: pointer;
    transition: border-color var(--pr-transition), background var(--pr-transition);
    margin: 0;
}

.booking-addon-option:has(.booking-addon-checkbox:checked) {
    border-color: #16a34a;
    background: rgba(22,163,74,0.05);
}

.booking-addon-option .booking-addon-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin: 0.2rem 0 0 !important;
    border: 2px solid #9ca3af;
    border-radius: 0.25rem;
    background-color: #fff;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.booking-addon-option .booking-addon-checkbox::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
    clip-path: polygon(14% 44%, 0 59%, 43% 100%, 100% 18%, 84% 3%, 43% 66%);
    background-color: #fff;
}
.booking-addon-option .booking-addon-checkbox:checked {
    border-color: #16a34a;
    background-color: #16a34a;
}
.booking-addon-option .booking-addon-checkbox:checked::before {
    transform: scale(1);
}
.booking-addon-option .booking-addon-checkbox:focus-visible {
    outline: 2px solid rgba(22,163,74,0.35);
    outline-offset: 2px;
}

.booking-addon-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.booking-addon-copy strong {
    color: var(--pr-text);
}

.booking-addon-price-label {
    color: var(--pr-muted);
    font-size: 0.82rem;
    margin-top: 0.15rem;
}



.booking-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin-bottom: 1rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--pr-muted);
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    display: inline-block;
}

.legend-available { background: #2e7d32; }
.legend-reserved { background: #f5a623; }
.legend-booked { background: #c0392b; }
.legend-unavailable { background: #495057; }

.booking-calendar {
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 0.9rem;
    background: #fcfcfc;
}

.booking-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.booking-weekdays,
.booking-days-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.3rem;
}

.booking-weekdays span {
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--pr-muted);
}

.booking-day-empty {
    min-height: 56px;
}

.booking-day {
    border: 1px solid var(--pr-border);
    border-radius: 8px;
    min-height: 56px;
    background: #fff;
    padding: 0.28rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.72rem;
	    margin: 0;
    transition: border-color var(--pr-transition), background var(--pr-transition), transform var(--pr-transition);
}

.booking-day:hover,
.booking-day:focus-visible {
    border-color: var(--pr-primary);
    transform: translateY(-1px);
    outline: none;
}

.booking-day .day-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pr-text);
}

.booking-day .day-price {
    color: var(--pr-muted);
}

.booking-day.status-available {
    border-color: #d8ead9;
}

.booking-day.status-reserved,
.booking-day.status-booked,
.booking-day.status-unavailable {
    opacity: 0.65;
    cursor: not-allowed;
}

.booking-day.status-reserved { background: #fff5e6; border-color: #f5d28f; }
.booking-day.status-booked { background: #ffeceb; border-color: #edb2ab; }
.booking-day.status-unavailable { background: #f0f1f3; border-color: #cdd2d8; }

.booking-day.is-start,
.booking-day.is-end {
    background: rgba(192, 57, 43, 0.12);
    border-color: var(--pr-primary);
}

.booking-day.in-range {
    background: rgba(192, 57, 43, 0.07);
    border-color: #e0aaa3;
}

.booking-selection-help {
    margin: 0.8rem 0 0;
    font-size: 0.82rem;
    color: var(--pr-muted);
}

.booking-date-range-field {
    display: block;
    margin-top: 1rem;
}

.room-booking-form-wrap form label,
.room-booking-form-wrap fieldset,
.room-booking-wizard-card form label,
.room-booking-wizard-card form fieldset {
    display: block;
    margin-bottom: 0.9rem;
}

.room-booking-form-wrap form input,
.room-booking-form-wrap form select,
.room-booking-form-wrap form textarea,
.room-booking-wizard-card form input,
.room-booking-wizard-card form select,
.room-booking-wizard-card form textarea {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.62rem 0.82rem;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    font-size: 0.92rem;
    background: #fff;
}

.room-booking-form-wrap form input:focus,
.room-booking-form-wrap form select:focus,
.room-booking-form-wrap form textarea:focus,
.room-booking-wizard-card form input:focus,
.room-booking-wizard-card form select:focus,
.room-booking-wizard-card form textarea:focus {
    outline: none;
    border-color: var(--pr-primary);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.booking-phone-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.55rem;
}

.booking-price-preview {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-accent);
    margin: 0.75rem 0 0.35rem;
}

.booking-price-note {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    color: var(--pr-muted);
}

.booking-flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.booking-flow-actions .btn-primary,
.booking-flow-actions .btn-outline {
    margin: 0;
}

.booking-flow-actions.booking-flow-actions-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.booking-flow-actions.booking-flow-actions-two-col .btn-primary,
.booking-flow-actions.booking-flow-actions-two-col .btn-outline {
    width: 100%;
}

.booking-summary-preview {
    display: grid;
    gap: 0.8rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.booking-summary-row span {
    color: var(--pr-muted);
}

.booking-summary-row strong {
    text-align: right;
}

.booking-summary-row-subtotal {
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(32, 33, 36, 0.12);
}

.booking-summary-row-total {
    padding-top: 0.8rem;
    border-top: 1px solid var(--pr-border);
}

.booking-summary-row-grandtotal span {
    color: var(--pr-text);
    font-weight: 700;
}

.booking-summary-row-grandtotal strong {
    font-size: 1.06rem;
    font-weight: 800;
    color: var(--pr-text);
}

.booking-summary-final {
    margin-bottom: 1rem;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-success-page,
.booking-edit-page {
    padding: 2rem 0 4rem;
}

.booking-success-hero {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 100%);
    border: 1px solid #d5efdd;
    border-radius: var(--pr-radius-lg);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--pr-shadow);
    margin: 0.75rem 0 1rem;
}

.booking-success-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    background: #1f9d55;
    color: #fff;
    box-shadow: 0 6px 18px rgba(31,157,85,0.24);
}

.booking-success-hero h1 {
    margin: 0 0 0.35rem;
    font-size: 1.85rem;
    line-height: 1.15;
}

.booking-success-hero p {
    margin: 0;
    color: #415046;
}

.booking-summary-card {
    background: #fff;
    border: 1px solid #dbe5dd;
    border-radius: var(--pr-radius-lg);
    padding: 1.35rem;
    margin: 1rem 0 1.15rem;
    box-shadow: 0 10px 26px rgba(12, 36, 19, 0.08);
}

.booking-summary-card h2 {
    margin: 0 0 0.95rem;
    font-size: 1.2rem;
}

.booking-key-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.booking-key-fact {
    background: #f6faf7;
    border: 1px solid #e2eee5;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    display: grid;
    gap: 0.25rem;
}

.booking-key-fact span {
    font-size: 0.75rem;
    color: #5c6d62;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.booking-key-fact strong {
    font-size: 1.02rem;
    line-height: 1.3;
}

.booking-key-fact-total {
    background: #e9f8ee;
    border-color: #cce9d4;
}

.booking-key-fact-total strong {
    font-size: 1.15rem;
    color: #184f2e;
}

.booking-summary-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.booking-detail-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px dashed #edf2ef;
}

.booking-detail-list li:last-child {
    border-bottom: 0;
}

.booking-vat-row {
    background: #f8fbf9;
    border: 1px solid #e8f0eb;
    border-radius: 8px;
    padding: 0.5rem 0.65rem !important;
}

.booking-vat-total {
    background: #e8f8ed;
    border-color: #cbe8d3;
    font-weight: 700;
}

.booking-vat-total span {
    font-size: 1.05rem;
    color: #174828;
}

.booking-redirect-notice {
    background: #f3faf5;
    border: 1px solid #cfe7d7;
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    margin: 0.35rem 0 1rem;
    display: grid;
    gap: 0.7rem;
}

.booking-redirect-notice.is-cancelled {
    background: #f7f7f7;
    border-color: #e5e5e5;
}

.booking-redirect-message {
    margin: 0;
    color: #2f4738;
}

.booking-redirect-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.booking-redirect-actions .btn-outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-redirect-cancel:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.booking-success-actions {
    display: grid;
    gap: 0.8rem;
}

.booking-success-actions-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.booking-success-actions-row > .btn-primary,
.booking-success-actions-row > .btn-outline {
    min-height: 48px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 1rem;
}

.booking-once-note {
    margin: 10px 0 50px 0;
    color: var(--pr-muted);
    font-size: 0.88rem;
}

.booking-once-note small a {
    word-break: break-all;
}

.booking-range-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

@media (max-width: 700px) {
    .booking-success-hero {
        padding: 0.95rem;
    }

    .booking-success-hero h1 {
        font-size: 1.5rem;
    }

    .booking-key-facts {
        grid-template-columns: 1fr;
    }

    .booking-detail-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .booking-redirect-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .booking-redirect-actions .btn-outline {
        width: 100%;
    }

    .booking-success-actions-row {
        grid-template-columns: 1fr;
    }

    .booking-range-inline {
        grid-template-columns: 1fr;
    }
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-page { padding: 2rem 0 4rem; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-form-wrap form label { display: block; margin-bottom: 1rem; font-weight: 500; font-size: medium; }
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 700px) {
    .contact-two-col {
        grid-template-columns: 1fr;
    }
}
.contact-form-wrap form input,
.contact-form-wrap form select,
.contact-form-wrap form textarea {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--pr-transition);
    background: #fff;
}
.contact-form-wrap form input:focus,
.contact-form-wrap form select:focus,
.contact-form-wrap form textarea:focus {
    outline: none;
    border-color: var(--pr-primary);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.contact-form-wrap form input.is-invalid,
.contact-form-wrap form textarea.is-invalid { border-color: #dc3545; }
.form-error { color: #dc3545; font-size: 0.8rem; }
.checkbox-label { display: flex !important; gap: 0.65rem; align-items: flex-start; }
.checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    border: 2px solid #9ca3af;
    border-radius: 0.25rem;
    background-color: #fff;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
    clip-path: polygon(14% 44%, 0 59%, 43% 100%, 100% 18%, 84% 3%, 43% 66%);
    background-color: #fff;
}
.checkbox-label input[type="checkbox"]:checked {
    border-color: #16a34a;
    background-color: #16a34a;
}
.checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.checkbox-label input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(22,163,74,0.35);
    outline-offset: 2px;
}
.alert-success {
    background: #d4edda; border: 1px solid #c3e6cb; color: #155724;
    padding: 1rem 1.25rem; border-radius: var(--pr-radius); margin-bottom: 1.5rem;
}

.contact-card {
    background: var(--pr-bg-light);
    border-radius: var(--pr-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-card p, .contact-card address { font-size: 0.88rem; color: var(--pr-muted); margin: 0.2rem 0; }

/* ── Legal ─────────────────────────────────────────────────── */
.legal-page { padding: 2rem 0 4rem; max-width: 820px; }
.legal-page article h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.5rem; }
.legal-page article h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 0.35rem; }
.legal-page article p, .legal-page article ul, .legal-page article address { font-size: 0.92rem; color: #444; line-height: 1.7; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-nav { margin-bottom: 1.25rem; }
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: 0; align-items: center;
    list-style: none; margin: 0; padding: 0;
    font-size: 0.82rem; color: var(--pr-muted);
}
.breadcrumb-item + .breadcrumb-item::before { content: ' / '; margin: 0 0.4rem; }
.breadcrumb-item a { color: var(--pr-accent); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: var(--pr-text); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0px 48px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer-col h4 {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 0.75rem;
}
.mt-footer { margin-top: 1.5rem !important; }

.footer-col address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li { padding: 0.2rem 0; }
.footer-contact-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--pr-transition);
}
.footer-contact-list a:hover { color: #fff; }

.footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 0.9rem;
    margin: 0;
    font-size: 0.88rem;
}
.footer-hours dt { color: rgba(255,255,255,0.4); font-weight: 500; }
.footer-hours dd { margin: 0; color: rgba(255,255,255,0.75); }

.footer-transit { list-style: none; margin: 0; padding: 0; }
.footer-transit li {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.6);
    padding: 0.22rem 0;
    line-height: 1.5;
}

.footer-form { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-form-row { display: flex; gap: 0.6rem; }
.footer-form-row input { flex: 1; min-width: 0; }
.footer-form input,
.footer-form textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    color: #fff;
    padding: 0.55rem 0.8rem;
    font-size: 0.88rem;
    width: 100%;
    transition: border-color var(--pr-transition);
    font-family: var(--pr-font);
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.footer-form input:focus,
.footer-form textarea:focus { outline: none; border-color: #2563eb; }
.footer-form textarea { resize: vertical; }
.footer-send-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background var(--pr-transition), transform var(--pr-transition);
    font-family: var(--pr-font);
}
.footer-send-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-legal-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-nav a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color var(--pr-transition);
}
.footer-legal-nav a:hover { color: #fff; }
.footer-bottom small { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ── Floating action buttons ──────────────────────────────── */
.fab {
    position: fixed;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
    z-index: 900;
    box-shadow: -2px 2px 12px rgba(0,0,0,0.25);
    transition: padding var(--pr-transition);
}
.fab-call { bottom: 130px; background: #2563eb; }
.fab-chat { bottom: 68px; background: #25d366; }
.fab:hover { padding-right: 1.5rem; }

/* ── Landing page ──────────────────────────────────────────── */
.landing-intro { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.landing-intro h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }

.landing-usps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.usp-card {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--pr-shadow);
}
.usp-icon-lg { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.usp-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.usp-card p { font-size: 0.85rem; color: var(--pr-muted); margin: 0; }

.landing-rooms { margin-bottom: 3rem; }
.landing-rooms h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.25rem; }

.landing-cta-block {
    text-align: center;
    background: linear-gradient(135deg, var(--pr-dark) 0%, #2c1a1a 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: var(--pr-radius-lg);
    margin-bottom: 2rem;
}
.landing-cta-block h2 { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.landing-cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.landing-content { padding: 3rem 0 4rem; }

/* ═══ HUB LANDING GRID ═══════════════════════════════════════ */
.hub-content { padding: 3rem 1rem 5rem; }

.hub-intro {
    max-width: 58rem;
    margin: 0 auto 3rem;
}

/* Grid list — equal-height card rows */
.hub-area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    max-width: 72rem;
    margin: 0 auto;
}

/* Grid list items must be flex so the card can fill the full row height */
.hub-area-list > li {
    display: flex;
}

/* Card fills its li and lays out children in a column */
.hub-area-card {
    flex: 1;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    min-width: 0;
}

.hub-area-card h3 {
    margin: 0 0 .5rem;
    font-size: 1rem;
    font-weight: 700;
}

.hub-area-card h3 a {
    text-decoration: none;
    color: inherit;
}

/* Sublocation section fills remaining space to push CTA to bottom */
.hub-area-sublist-wrap {
    flex: 1;
    min-height: 0;
    min-width: 0;
}

.hub-area-sublist {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: .5rem 0 .75rem;
    font-size: .85rem;
    width: 100%;
    box-sizing: border-box;
}

.hub-area-sublist > li {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: .2rem 0 .2rem 1rem;
    border: 0;
    box-sizing: border-box;
}

.hub-area-sublist > li a {
    color: inherit;
    text-decoration: none;
    opacity: .8;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-area-sublist > li a:hover { opacity: 1; }



/* CTA link always at bottom, full-width alignment */
.hub-area-card > .btn-outline.btn-sm {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Feature intelligence block */
.hub-features {
    max-width: 58rem;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Rooms listing block */
.hub-rooms { max-width: 72rem; margin: 4rem auto 0; }
.hub-rooms > h2 { margin-bottom: 1.5rem; }

.hub-rooms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-rooms-list > li { display: flex; }

.hub-room-card {
    flex: 1;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    min-width: 0;
}

.hub-room-card img.hub-room-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.hub-room-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hub-room-body h3 {
    margin: 0 0 .5rem;
    font-size: 1rem;
    font-weight: 700;
}

.hub-room-body h3 a {
    text-decoration: none;
    color: inherit;
}

.hub-room-meta {
    font-size: .85rem;
    opacity: .75;
    margin: .25rem 0 0;
}

.hub-room-price {
    font-size: .85rem;
    font-weight: 600;
    margin: .5rem 0 0;
}

.hub-room-body > .btn-outline.btn-sm {
    align-self: flex-start;
    margin-top: auto;
    padding-top: .75rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1600px; margin: 0 auto; padding: 0 1.0rem; }
.text-muted { color: var(--pr-muted) !important; }

/* ── Home Redesign ─────────────────────────────────────────── */
.hp-home {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(231,76,60,0.08), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(26,26,46,0.08), transparent 40%),
        #fff;
}
.footer-transit a {
    color: #9e9e9e;
}

ul li {
  margin-left: 20px;
}

.hp-home .hp-eyebrow {
       font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.hp-home .hp-section-header {
    margin-bottom: 2.5rem;
}

.hp-home .hp-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}

.hp-home .hp-hero {
    min-height: 88vh;
}

.hp-home .hp-hero__overlay {
        background: linear-gradient(130deg, rgb(255 235 59 / 55%) 0%, rgb(10 10 20 / 0%) 30%, rgba(192, 57, 43, 0.35) 108%);
}

.hp-home .hp-hero__inner {
    justify-content: center;
    min-height: 88vh;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
}

.hp-hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}


.hp-home .hp-hero__inner {
    width: 100%;
    max-width: 1600px;
}

.hp-home .hp-hero__heading {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
}

.hp-home .hp-hero__sub {
    max-width: 620px;
    font-size: 1.04rem;
    margin-bottom: 1.6rem;
}

.hp-home .hp-hero__trust {
    margin-top: 1.1rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.84rem;
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE & HUB PAGE – Design Upgrade
   Matches homepage visual quality / extends homepage design system
   ═══════════════════════════════════════════════════════════════ */

/* ── Landing / Hub Hero ────────────────────────────────────────
   Classes used: .hero  .hero-sm  .hero-bg  .hero-overlay
                 .hero-content  .hero-sub  .hero-caption-block
   ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 54vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-sm { min-height: 46vh; }

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 12s ease;
}
.hero:hover .hero-bg { transform: scale(1.07); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        150deg,
        rgba(10,10,20,0.76) 0%,
        rgba(10,10,20,0.50) 55%,
        rgba(192,57,43,0.20) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    width: 100%;
    max-width: 760px;
}
.hero-content h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.38);
}
.hero-content .btn-primary.btn-lg {
    box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}
.hero-caption-block figcaption { color: var(--pr-muted); }

@media (max-width: 768px) {
    .hero, .hero-sm { min-height: 48vh; }
    .hero-content { padding: 3.5rem 0 2.5rem; }
    .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ── Landing page section backgrounds ─────────────────────────
   Subtle radial gradients mirror the .hp-home background
   ─────────────────────────────────────────────────────────────── */
.landing-content {
    background:
        radial-gradient(circle at 88% 6%,  rgba(231,76,60,0.05), transparent 38%),
        radial-gradient(circle at 6%  88%, rgba(26,26,46,0.04),  transparent 42%),
        #fff;
    padding: 3.5rem 0 4.5rem;
}
.hub-content {
    background:
        radial-gradient(circle at 88% 6%,  rgba(231,76,60,0.05), transparent 38%),
        radial-gradient(circle at 6%  88%, rgba(26,26,46,0.04),  transparent 42%),
        #fff;
    padding: 3.5rem 1rem 5rem;
}

/* ── Intro blocks ──────────────────────────────────────────────
   .landing-intro   .hub-intro
   ─────────────────────────────────────────────────────────────── */
.landing-intro h2,
.hub-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
    margin-bottom: 0.75rem;
}
.landing-intro p {
    color: var(--pr-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}
.hub-intro {
    border-left: 3px solid var(--pr-primary);
    padding-left: 1.5rem;
    margin-bottom: 3.5rem;
}
.hub-intro .prose p,
.hub-intro > p {
    color: var(--pr-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .hub-intro {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--pr-primary);
        padding-bottom: 1rem;
    }
}

/* ── USP Cards upgrade ─────────────────────────────────────────
   .usp-card  .usp-icon-lg  (already has base styles, extended here)
   ─────────────────────────────────────────────────────────────── */
.usp-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pr-shadow-md);
}
.usp-icon-lg {
    background: linear-gradient(135deg, rgba(231,76,60,0.10), rgba(255,233,30,0.14));
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.usp-card h3 { color: var(--pr-dark); }

/* ── Compact Rooms Grid ────────────────────────────────────────
   .rooms-grid  .rooms-grid--compact
   .room-card   .room-card-image  .room-card-body  .room-specs
   ─────────────────────────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}
.rooms-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
@media (max-width: 600px) {
    .rooms-grid,
    .rooms-grid--compact { grid-template-columns: 1fr; }
}

.room-card {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.room-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}
.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }

.room-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pr-dark);
    margin-bottom: 0.5rem;
}
.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    font-size: 0.8rem;
    color: var(--pr-muted);
}
.room-card-body .btn-outline.btn-sm {
    margin-top: auto;
    align-self: flex-start;
}

/* ── Hub Area Cards upgrade ────────────────────────────────────
   Extends base .hub-area-card styles with hover / premium feel
   ─────────────────────────────────────────────────────────────── */
.hub-area-card {
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hub-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    border-color: var(--pr-primary);
}
.hub-area-card h3 {
    font-size: 1.05rem;
    color: var(--pr-dark);
    letter-spacing: -0.01em;
}
.hub-area-card h3 a:hover { color: var(--pr-accent); }

/* Feature image inside hub-area-card */
.hub-area-card-img-wrap {
    margin: -1.5rem -1.5rem 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    border-radius: 0;
}
.hub-area-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hub-area-card:hover .hub-area-card-img { transform: scale(1.05); }

/* One-line SEO description inside hub-area-card */
.hub-area-card-desc {
    font-size: .82rem;
    color: var(--pr-muted);
    line-height: 1.55;
    margin: .25rem 0 .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Hub Room Cards upgrade ────────────────────────────────────
   Extends base .hub-room-card styles
   ─────────────────────────────────────────────────────────────── */
.hub-room-card {
    box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hub-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.hub-room-card img.hub-room-thumb { transition: transform 0.5s ease; }
.hub-room-card:hover img.hub-room-thumb { transform: scale(1.04); }
.hub-room-body h3 { color: var(--pr-dark); }
.hub-room-price { color: var(--pr-accent); }

/* ── Hub Rooms section header ──────────────────────────────────*/
.hub-rooms > h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
}

/* ── Hub Feature Intelligence block upgrade ────────────────────
   Targets divs inside .hub-features grid
   ─────────────────────────────────────────────────────────────── */
.hub-features > div {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-top: 3px solid var(--pr-primary);
    border-radius: var(--pr-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--pr-shadow);
}
.hub-features h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-dark);
    margin-bottom: 0.6rem;
}
.hub-features p {
    font-size: 0.88rem;
    color: var(--pr-muted);
    margin: 0;
    line-height: 1.65;
}

/* ── Landing body prose block ──────────────────────────────────
   .landing-body  (inline max-width/margin preserved via specificity)
   ─────────────────────────────────────────────────────────────── */
.landing-body {
    background: var(--pr-bg-section);
    border-radius: var(--pr-radius-lg);
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--pr-primary);
}
.landing-body p {
    font-size: 0.95rem;
    color: var(--pr-muted);
    line-height: 1.75;
}
@media (max-width: 768px) {
    .landing-body { padding: 1.5rem 1.25rem; }
}

/* ── Landing CTA block upgrade ─────────────────────────────────
   Extends base .landing-cta-block styles
   ─────────────────────────────────────────────────────────────── */
.landing-cta-block {
    background: linear-gradient(135deg, var(--pr-dark) 0%, #170808 55%, #2a1010 100%);
    padding: 4rem 2.5rem;
    margin: 3rem 0 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.landing-cta-block h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.landing-cta-block .btn-primary.btn-lg {
    box-shadow: 0 4px 24px rgba(255,233,30,0.22);
}

/* Hub pages: constrain and space the CTA block */
.hub-content .landing-cta-block {
    max-width: 72rem;
    margin: 4rem auto 0;
}

/* ── Other locations nav ───────────────────────────────────────
   .landing-other-locations
   ─────────────────────────────────────────────────────────────── */
.landing-other-locations h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pr-dark);
    margin-bottom: 0.75rem;
}
.landing-other-locations > p > a {
    color: var(--pr-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.landing-other-locations > p > a:hover { text-decoration: underline; }

/* ── Landing rooms section header ──────────────────────────────*/
.landing-rooms h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pr-dark);
}

/* ── Responsive overrides ──────────────────────────────────────*/
@media (max-width: 768px) {
    .landing-content { padding: 2rem 0 3rem; }
    .hub-content      { padding: 2rem 0.75rem 3.5rem; }
    .landing-usps     { gap: 1rem; }
    .hub-features     { margin-top: 2.5rem; }
    .hub-rooms        { margin-top: 2.5rem; }
    .landing-cta-block { padding: 2.5rem 1.5rem; }
    .hub-content .landing-cta-block { margin: 2.5rem auto 0; }
}
@media (max-width: 480px) {
    .landing-cta-block h2 { font-size: 1.3rem; }
    .landing-cta-block { padding: 2rem 1.25rem; }
}

.hp-searchpanel {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.20);
}

@media (min-width: 992px) {
    .hp-home .hp-hero {
        min-height: 700px;
        height: 700px;
    }

    .hp-home .hp-hero__inner {
        min-height: 700px;
        height: 700px;
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }

    .hp-searchpanel {
        max-width: 620px;
        justify-self: end;
    }
}

.hp-searchpanel h2 {
    margin: 0 0 0.9rem;
    color: var(--pr-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.hp-searchpanel__list {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
}

.hp-searchpanel__list li {
    font-size: 0.88rem;
    color: #414141;
    border-bottom: 1px dashed #ddd;
    padding: 0.55rem 0;
}

.hp-searchpanel__list li:last-child {
    border-bottom: none;
}

.hp-ribbon {
    margin-top: -2.2rem;
    position: relative;
    z-index: 5;
}

.hp-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.hp-ribbon__item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0ece8;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    padding: 1rem 1.1rem;
}

.hp-ribbon__item strong {
    display: block;
    color: var(--pr-accent);
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.1;
}

.hp-ribbon__item span {
    display: block;
    color: #595959;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.hp-home .hp-rooms {
    padding-top: 5rem;
    background: transparent;
}

.hp-home .hp-rooms__grid {
    gap: 1.35rem;
}

.hp-home .hp-room-card {
    border: 1px solid #efe8e1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.hp-home .hp-room-card__fig {
    aspect-ratio: 5/3;
}

.hp-home .hp-room-card__body {
    padding: 1.3rem;
}

.hp-home .hp-room-card__body h3 {
    font-size: 1.22rem;
}


.hp-benefits {
    padding: 6rem 0;
}

.hp-benefits__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hp-benefits__text h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin-bottom: 0.8rem;
}

.hp-benefits__text p {
    color: #575757;
    margin-bottom: 1.1rem;
    line-height: 1.75;
}

.hp-benefits__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.hp-benefits__list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    color: #3c3c3c;
    font-size: 0.92rem;
}

.hp-benefits__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pr-primary);
    position: absolute;
    left: 0;
    top: 0.52rem;
}

.hp-benefits__media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.14);
    margin: 0;
}

.hp-steps {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.hp-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hp-step {
    border: 1px solid #ebe5df;
    border-radius: 14px;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.hp-step span {
    display: inline-block;
    color: var(--pr-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
}

.hp-step h3 {
    font-size: 1.02rem;
    margin: 0 0 0.45rem;
}

.hp-step p {
    margin: 0;
    color: #595959;
    font-size: 0.88rem;
    line-height: 1.6;
}

.hp-home .hp-location {
    padding-top: 5.5rem;
}

.hp-home .hp-location__transit li span {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #f3ece7;
    color: var(--pr-accent);
    font-size: 0.7rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.hp-home .hp-faq {
    background: #f9f7f4;
}

.hp-home .faq-accordion details {
    border-radius: 12px;
}

.hp-home .hp-cta {
    background: linear-gradient(145deg, #FFEB3B 0%, #CDDC39 100%);
}

@media (max-width: 980px) {
    .hp-hero__split {
        grid-template-columns: 1fr;
        gap: 1.2rem;

    .booking-summary-row {
        flex-direction: column;
        gap: 0.3rem;
    }

    .booking-summary-row strong {
        text-align: left;
    }
    }

    .hp-searchpanel {
        max-width: 600px;
    }

    .hp-ribbon__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-benefits__inner {
        grid-template-columns: 1fr;
    }

    .hp-steps__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .hp-home .hp-hero {
        min-height: auto;
    }

    .hp-home .hp-hero__inner {
        min-height: auto;
        padding-top: 5.6rem;
    }

    .hp-home .hp-hero__heading {
        font-size: clamp(1.7rem, 11vw, 2.45rem);
    }

    .hp-home .hp-hero__ctas {
        gap: 0.8rem;
    }

    .hp-home .btn-primary.btn-lg,
    .hp-home .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hp-ribbon {
        margin-top: 1rem;
    }

    .hp-ribbon__grid {
        grid-template-columns: 1fr;
    }
}
