/* ============================================
   HOMEPAGE — Cinematic Editorial Design
   GUEST RO∞MS · Haberschlacht
   
   Aesthetic: Wine Country Luxury
   Bold, editorial, asymmetric composition
   with warm earth tones and cinematic depth.
   ============================================ */


/* ==========================================
   0. HOMEPAGE NAVIGATION OVERRIDE
   Transparent header on hero, elegant warm
   transition on scroll. Redesigned to match
   the editorial wine-country vibe.
   ========================================== */

/* On the homepage, start the header fully transparent */
body.page-home .site-header,
body.page-home header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
    transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                backdrop-filter 0.6s ease,
                box-shadow 0.6s ease,
                border-color 0.6s ease !important;
}

/* Flat dark scrim behind nav for readability over hero */
body.page-home .site-header::before,
body.page-home header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hide gradient scrim when scrolled (solid bg takes over) */
body.page-home .site-header.scrolled::before,
body.page-home header.scrolled::before {
    opacity: 0;
}

/* White nav text & icons over hero image */
body.page-home .site-header .desktop-nav ul li a,
body.page-home header .desktop-nav ul li a {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: color 0.5s ease, text-shadow 0.5s ease !important;
}

body.page-home .site-header .desktop-nav ul li a:hover,
body.page-home header .desktop-nav ul li a:hover {
    color: var(--gold-light, #d4b163) !important;
}

body.page-home .site-header .desktop-nav ul li a.active,
body.page-home header .desktop-nav ul li a.active {
    color: #fff !important;
}

body.page-home .site-header .desktop-nav ul li a::before,
body.page-home header .desktop-nav ul li a::before {
    background: var(--gold-light, #d4b163) !important;
}

/* Nav buttons over hero — more visible with stronger background */
body.page-home .site-header .nav-button,
body.page-home .site-header .nav-btn,
body.page-home header .nav-button,
body.page-home header .nav-btn {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.30) !important;
    color: #fff !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20) !important;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

body.page-home .site-header .nav-button:hover,
body.page-home .site-header .nav-btn:hover,
body.page-home header .nav-button:hover,
body.page-home header .nav-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-2px) scale(1.05) !important;
}

body.page-home .site-header .nav-button i,
body.page-home .site-header .nav-btn i,
body.page-home header .nav-button i,
body.page-home header .nav-btn i {
    color: #fff !important;
}

/* Logo crossfade: white overlay visible on hero, fades out on scroll.
   No filter transition = no yellow flash or hue artifacts. */
body.page-home .site-header:not(.scrolled) #site-logo-white,
body.page-home header:not(.scrolled) #site-logo-white {
    opacity: 1;
}

/* When scrolled, hide white overlay → colored logo shows through */
body.page-home .site-header.scrolled #site-logo-white,
body.page-home header.scrolled #site-logo-white {
    opacity: 0;
}

/* === SCROLLED STATE: Soft warm transition === */
body.page-home .site-header.scrolled,
body.page-home header.scrolled {
    background: rgba(253, 250, 244, 0.97) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
    box-shadow: 0 1px 0 rgba(47, 111, 97, 0.06),
                0 4px 24px rgba(47, 111, 97, 0.06) !important;
    border-bottom-color: rgba(47, 111, 97, 0.08) !important;
}

/* Scrolled text reverts to dark */
body.page-home .site-header.scrolled .desktop-nav ul li a,
body.page-home header.scrolled .desktop-nav ul li a {
    color: var(--text-primary, #2c3e3a) !important;
    text-shadow: none !important;
}

body.page-home .site-header.scrolled .desktop-nav ul li a:hover,
body.page-home header.scrolled .desktop-nav ul li a:hover {
    color: var(--primary, #2f6f61) !important;
}

body.page-home .site-header.scrolled .desktop-nav ul li a.active,
body.page-home header.scrolled .desktop-nav ul li a.active {
    color: var(--primary, #2f6f61) !important;
}

body.page-home .site-header.scrolled .desktop-nav ul li a::before,
body.page-home header.scrolled .desktop-nav ul li a::before {
    background: var(--gold, #b8963e) !important;
}

/* Scrolled buttons revert to warm surface */
body.page-home .site-header.scrolled .nav-button,
body.page-home .site-header.scrolled .nav-btn,
body.page-home header.scrolled .nav-button,
body.page-home header.scrolled .nav-btn {
    background: var(--card-bg, #fff) !important;
    border-color: rgba(47, 111, 97, 0.1) !important;
    color: var(--text-color, #1a1a1a) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

body.page-home .site-header.scrolled .nav-button i,
body.page-home .site-header.scrolled .nav-btn i,
body.page-home header.scrolled .nav-button i,
body.page-home header.scrolled .nav-btn i {
    color: var(--text-color, #1a1a1a) !important;
}

body.page-home .site-header.scrolled .nav-button:hover,
body.page-home .site-header.scrolled .nav-btn:hover,
body.page-home header.scrolled .nav-button:hover,
body.page-home header.scrolled .nav-btn:hover {
    background: var(--hover-bg, #f0f4f2) !important;
    border-color: rgba(47, 111, 97, 0.2) !important;
}

/* Scrolled logo: white overlay fades out, colored logo visible */
/* (handled by opacity crossfade above) */

/* === DARK MODE scrolled === */
body.page-home[data-theme="dark"] .site-header.scrolled,
body.page-home[data-theme="dark"] header.scrolled,
[data-theme="dark"] body.page-home .site-header.scrolled,
[data-theme="dark"] body.page-home header.scrolled {
    background: rgba(26, 36, 33, 0.97) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2),
                0 4px 24px rgba(0, 0, 0, 0.2) !important;
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

body.page-home[data-theme="dark"] .site-header.scrolled .desktop-nav ul li a,
[data-theme="dark"] body.page-home .site-header.scrolled .desktop-nav ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.page-home[data-theme="dark"] .site-header.scrolled .desktop-nav ul li a:hover,
[data-theme="dark"] body.page-home .site-header.scrolled .desktop-nav ul li a:hover {
    color: var(--gold-light, #d4b163) !important;
}

body.page-home[data-theme="dark"] .site-header.scrolled .nav-button,
body.page-home[data-theme="dark"] .site-header.scrolled .nav-btn,
[data-theme="dark"] body.page-home .site-header.scrolled .nav-button,
[data-theme="dark"] body.page-home .site-header.scrolled .nav-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

body.page-home[data-theme="dark"] .site-header.scrolled .nav-button i,
body.page-home[data-theme="dark"] .site-header.scrolled .nav-btn i,
[data-theme="dark"] body.page-home .site-header.scrolled .nav-button i,
[data-theme="dark"] body.page-home .site-header.scrolled .nav-btn i {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dark mode scrolled: keep white overlay visible */
body.page-home[data-theme="dark"] .site-header.scrolled #site-logo-white,
[data-theme="dark"] body.page-home .site-header.scrolled #site-logo-white {
    opacity: 1 !important;
}


/* ==========================================
   1. HERO — Full-Viewport Cinematic
   Text layered directly on image, no panels.
   Dark gradient from bottom for readability.
   ========================================== */

/* Pull hero up to cover the site-main padding from fixed header */
.site-main > .hp-hero {
    margin-top: -100px;
}

.hp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 580px;
    max-height: 1200px;
    overflow: hidden;
}

.hp-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
}

/* ── LQIP placeholders: always visible initially, blur effect ── */
.hp-hero__img--lqip {
    filter: blur(20px);
    transform: scale(1.05);
    z-index: 0;
}
.hp-hero__img--lqip.loaded { opacity: 0 !important; pointer-events: none; }

/* ── Full images: hidden until loaded ── */
.hp-hero__img--full { opacity: 0; }
.hp-hero__img--full.loaded { opacity: 1; }

/* ── Day / Night layering ── */
.hp-hero__img--day   { z-index: 1; }
.hp-hero__img--night { z-index: 0; opacity: 0; }

[data-theme="dark"] .hp-hero__img--day   { opacity: 0; z-index: 0; }
[data-theme="dark"] .hp-hero__img--night { opacity: 1; z-index: 1; }
[data-theme="dark"] .hp-hero__img--night.hp-hero__img--full.loaded { opacity: 1; }
[data-theme="dark"] .hp-hero__img--lqip.hp-hero__img--night { z-index: 0; }
[data-theme="dark"] .hp-hero__img--lqip.hp-hero__img--night:not(.loaded) { opacity: 1; z-index: 0; }
[data-theme="dark"] .hp-hero__img--lqip.hp-hero__img--day { opacity: 0 !important; }

/* Cinematic gradient — stronger at top for nav readability */
/* Removed gradient for flat look */
.hp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.18); /* fallback for readability, no gradient */
}
}

/* Subtle film grain via repeating-gradient */
.hp-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Hero content — absolute centered, pushed below header */
.hp-hero__content {
    position: absolute;
    z-index: 3;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 820px;
    color: #fff;
}

.hp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 2px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: hp-fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hp-hero__eyebrow::before,
.hp-hero__eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Large cinematic title */
.hp-hero__title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff !important;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 8px 48px rgba(0, 0, 0, 0.2),
        0 0 120px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: hp-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hp-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light, #d4b163);
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(212, 177, 99, 0.3));
}

.hp-hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin: 0 auto 2.25rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45), 0 2px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: hp-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* CTA buttons */
.hp-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.875rem;
    opacity: 0;
    animation: hp-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hp-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 2.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.015em;
    border: none;
    cursor: pointer;
}


.hp-hero__cta--primary {
    background: var(--gold-light, #d4b163) !important;
    color: #fff !important;
    border: none;
}

.hp-hero__cta--primary:hover {
    background: #b8963e !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.hp-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hp-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll indicator — vertical line + text */
.hp-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    animation: hp-fadeIn 1s ease-out 1.8s forwards;
}

.hp-hero__scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.hp-hero__scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hp-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    animation: hp-scrollPulse 2.2s ease-in-out infinite;
}

/* Keyframes */
@keyframes hp-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hp-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes hp-scrollPulse {
    0%   { top: -100%; }
    45%  { top: 100%; }
    100% { top: 100%; }
}


/* ==========================================
   2. METRICS STRIP
   Clean horizontal stats bar with subtle depth.
   ========================================== */
.hp-metrics {
    padding: 3.25rem 0;
    background: var(--surface, #faf9f7);
    border-bottom: 1px solid var(--border-subtle);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

/* Subtle texture overlay */
/* Removed gradients for flat look */
.hp-metrics::before {
    display: none;
}

[data-theme="dark"] .hp-metrics {
    background: var(--card-bg, #202E2B);
}

.hp-metrics__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.hp-metrics__item {
    text-align: center;
    min-width: 110px;
}

.hp-metrics__number {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #111816);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hp-metrics__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary, #3a4a46);
}

.hp-metrics__divider {
    width: 1px;
    height: 44px;
    background: var(--border-color, #dde5e3);
    flex-shrink: 0;
}

[data-theme="dark"] .hp-metrics__divider {
    background: var(--border-color, #4b5563);
}


/* ==========================================
   3. ABOUT / STORY — Asymmetric Split
   Large image left, text right. Image accent
   element creates overlap / depth illusion.
   ========================================== */
.hp-about {
    padding: var(--section-gap, 4.5rem) 0 0;
    overflow-x: clip;
    overflow-y: visible;
    background: var(--surface, #faf9f7);
    position: relative;
}

/* Subtle gradient overlay for depth */
.hp-about::before {
    display: none;
}

[data-theme="dark"] .hp-about {
    background: var(--card-bg, #202E2B);
}

.hp-about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.hp-about__image {
    position: relative;
    isolation: isolate;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-about__image:hover {
    transform: scale(1.02) translateY(-4px);
}

.hp-about__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow:
        0 24px 64px rgba(15, 23, 21, 0.12),
        0 8px 24px rgba(15, 23, 21, 0.06);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-about__image:hover img {
    box-shadow:
        0 32px 80px rgba(15, 23, 21, 0.18),
        0 12px 32px rgba(15, 23, 21, 0.08);
}

[data-theme="dark"] .hp-about__image img {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .hp-about__image:hover img {
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Hide accent swatch */
.hp-about__image-accent {
    display: none;
}

/* Decorative offset frame — editorial dropshadow outline */
.hp-about__image::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -14px;
    bottom: -14px;
    border: 2px solid rgba(47, 111, 97, 0.18);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
    transition: border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-about__image:hover::after {
    border-color: rgba(47, 111, 97, 0.32);
}

[data-theme="dark"] .hp-about__image::after {
    border-color: rgba(184, 150, 62, 0.15);
}

[data-theme="dark"] .hp-about__image:hover::after {
    border-color: rgba(184, 150, 62, 0.32);
}

.hp-about__content {
    padding: 0.5rem 0;
}

.hp-about__title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.75rem, 3vw + 0.4rem, 2.75rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--text-primary, #111816);
    margin-bottom: 1.35rem;
}

.hp-about__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary, #2f6f61);
}

.hp-about__text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-secondary, #3a4a46);
    margin-bottom: 1.75rem;
}

.hp-about__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.hp-about__features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary, #3a4a46);
    font-weight: 500;
}

.hp-about__features li i {
    color: var(--primary, #2f6f61);
    font-size: 0.6rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50, rgba(47, 111, 97, 0.08));
    border-radius: 50%;
    flex-shrink: 0;
}

.hp-about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary, #2f6f61);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.hp-about__link:hover {
    gap: 0.9rem;
    color: var(--primary-dark, #1e4a40);
    border-bottom-color: var(--primary, #2f6f61);
}


/* ==========================================
   4. ROOMS SHOWCASE — Bento Grid
   One large featured card + two smaller ones
   in an asymmetric magazine-style layout.
   ========================================== */
.hp-rooms {
    padding: var(--section-gap, 4.5rem) 0;
    background: var(--surface, #faf9f7);
    position: relative;
}

/* Soft top transition from about into rooms */
.hp-rooms::before {
    display: none;
}

/* Subtle texture for depth */
.hp-rooms::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(47, 111, 97, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

[data-theme="dark"] .hp-rooms {
    background: var(--bg-secondary, #2A3835);
}

/* Removed gradient for flat look */
[data-theme="dark"] .hp-rooms::before {
    background: var(--card-bg, #202E2B);
}

.hp-rooms__bento {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    height: 560px;
}

.hp-rooms__card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none !important;
    color: #fff !important;
    display: block;
    cursor: pointer;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-rooms__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.hp-rooms__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    z-index: 3;
    transition: border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hp-rooms__card:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
}

.hp-rooms__card:focus-visible {
    outline: 3px solid var(--primary, #2f6f61);
    outline-offset: 3px;
}

.hp-rooms__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hp-rooms__card:hover img {
    transform: scale(1.06);
}

.hp-rooms__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18); /* fallback for readability, no gradient */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    z-index: 1;
    transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-rooms__card:hover .hp-rooms__card-overlay {
    background: rgba(0,0,0,0.22);
}

.hp-rooms__card--large {
    grid-row: 1 / 3;
}

.hp-rooms__card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gold, #b8963e);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hp-rooms__card h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
    line-height: 1.25;
}

.hp-rooms__card--large h3 {
    font-size: 1.55rem;
}

.hp-rooms__card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
}

.hp-rooms__card--large p {
    font-size: 0.92rem;
}

/* Arrow hover indicator */
.hp-rooms__card-arrow {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    opacity: 0;
    transform: translate(-6px, 6px) scale(0.85);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.hp-rooms__card:hover .hp-rooms__card-arrow {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* "View all" link for rooms section */
.hp-rooms__more {
    margin-top: 3rem;
    text-align: center;
}


/* ==========================================
   5. EXPERIENCE — Dark Immersive Section
   Deep green/forest background that breaks
   the light-section pattern. Gold accents.
   ========================================== */
.hp-experience {
    position: relative;
    padding: var(--section-gap, 4.5rem) 0;
    background: linear-gradient(145deg, #0b1e19 0%, #143830 40%, #0f2822 100%);
    color: #fff;
    overflow: hidden;
}

/* Soft dark fade-in at the top of the experience section */
.hp-experience::after {
    display: none;
}

/* Removed gradient for flat look */
[data-theme="dark"] .hp-experience::after {
    display: none;
}

/* Ambient glow */
/* Removed gradients for flat look */
.hp-experience::before {
    display: none;
}

.hp-experience__header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.hp-experience__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light, #d4b163);
    border: 1px solid rgba(212, 177, 99, 0.25);
    padding: 0.35rem 1.1rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.hp-experience__title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.75rem, 3vw + 0.3rem, 2.65rem);
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hp-experience__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.hp-experience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    position: relative;
}

.hp-experience__item {
    text-align: center;
    padding: 2.75rem 1.75rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hp-experience__item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.hp-experience__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.35rem;
    border-radius: 4px;
    background: var(--gold, #b8963e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(184, 150, 62, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-experience__item:hover .hp-experience__icon {
    transform: scale(1.08) rotate(-3deg);
}

.hp-experience__item-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.7rem;
}

.hp-experience__item-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 0;
}

/* --- Toggle arrow (now a "go to page" arrow) --- */
.hp-experience__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light, #d4b163);
    font-size: 0.75rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.25s ease;
}

.hp-experience__item:hover .hp-experience__toggle {
    background: rgba(184, 150, 62, 0.2);
    transform: translateX(3px);
}

/* Experience cards are now links */
a.hp-experience__item {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}


/* ==========================================
   6. TESTIMONIAL — Editorial Quote
   Large serif italic quote, centered.
   Dramatic quotation mark. Clean restraint.
   ========================================== */
.hp-testimonial {
    padding: var(--section-gap, 4.5rem) 0;
    background: var(--surface, #faf9f7);
    position: relative;
}

/* Soft dark-to-light transition from experience */
.hp-testimonial::before {
    display: none;
}

/* Subtle texture overlay */
.hp-testimonial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(47, 111, 97, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.015) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="dark"] .hp-testimonial {
    background: var(--card-bg, #202E2B);
}

/* Removed gradient for flat look */
[data-theme="dark"] .hp-testimonial::before {
    background: var(--card-bg, #202E2B);
}

.hp-testimonial__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hp-testimonial__mark {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 7rem;
    line-height: 0.7;
    color: var(--primary-50, rgba(47, 111, 97, 0.12));
    user-select: none;
    margin-bottom: -0.25rem;
}

[data-theme="dark"] .hp-testimonial__mark {
    color: rgba(47, 111, 97, 0.2);
}

.hp-testimonial blockquote {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-primary, #111816);
    margin: 0 0 1.75rem;
    border: none;
    padding: 0;
}

.hp-testimonial__stars {
    color: var(--gold, #b8963e);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.hp-testimonial cite {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--text-tertiary, #6b7a76);
    font-weight: 500;
    letter-spacing: 0.03em;
}


/* ==========================================
   7. CTA — Final Call to Action
   Deep green base with warm gold glow.
   Trust badges for conversion confidence.
   ========================================== */
.hp-cta {
    padding: var(--section-gap, 4.5rem) 0;
    background: var(--primary, #2f6f61);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Soft light-to-dark transition from testimonial */
.hp-cta::after {
    display: none;
}

/* Removed gradient for flat look */
[data-theme="dark"] .hp-cta::after {
    background: var(--card-bg, #202E2B);
}

/* Warm ambient glow */
/* Removed gradient for flat look */
.hp-cta::before {
    display: none;
}

.hp-cta__inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.hp-cta__title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 1rem;
}

.hp-cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.25rem;
    line-height: 1.75;
}

.hp-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hp-cta__cta--white {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 2.25rem;
    border-radius: 4px;
    background: var(--surface, #fafbf9);
    color: var(--primary-dark, #1e4a40);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-cta__cta--white:hover {
    background: var(--gold-light, #d4b163);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.hp-cta__cta--outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 2.25rem;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-cta__cta--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

/* Trust badges */
.hp-cta__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hp-cta__trust-item i {
    color: var(--gold-light, #d4b163);
    font-size: 0.85rem;
}


/* ==========================================
   8. RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet landscape */
@media (max-width: 1199px) {
    .hp-rooms__bento {
        height: 480px;
    }
}

/* Tablet portrait */
@media (max-width: 991px) {
    .hp-about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hp-about__image img {
        height: 360px;
    }

    .hp-about__image-accent {
        display: none;
    }

    .hp-about__image::after {
        display: none;
    }

    .hp-rooms__bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .hp-rooms__card {
        height: 280px;
    }

    .hp-rooms__card--large {
        grid-row: auto;
        grid-column: 1 / -1;
        height: 340px;
    }

    .hp-experience__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* ==========================================
   MOBILE — Phone Optimization (≤767px)
   Comprehensive layout, spacing, typography,
   and touch target optimization.
   ========================================== */
@media (max-width: 767px) {

    /* --- Hero --- */
    .hp-hero {
        min-height: 85svh;
        min-height: 85vh;
    }

    .hp-hero__content {
        padding: 0 1.25rem;
        top: 52%;
    }

    .hp-hero__eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.22em;
        margin-bottom: 1rem;
    }

    .hp-hero__eyebrow::before,
    .hp-hero__eyebrow::after {
        width: 18px;
    }

    .hp-hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hp-hero__subtitle {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 1.75rem;
        max-width: 100%;
    }

    .hp-hero__actions {
        gap: 0.65rem;
    }

    .hp-hero__cta {
        padding: 0.85rem 1.75rem;
        font-size: 0.85rem;
        min-height: 48px; /* 48px touch target */
    }

    .hp-hero__scroll {
        display: none !important;
    }

    /* --- Nav scrim on mobile: taller to cover mobile header fully --- */
    body.page-home .site-header::before,
    body.page-home header::before {
        height: 100%;
        background: rgba(0, 0, 0, 0.40);
    }

    /* Make mobile nav buttons more visible over hero */
    body.page-home .site-header .nav-button,
    body.page-home .site-header .nav-btn,
    body.page-home header .nav-button,
    body.page-home header .nav-btn {
        background: rgba(255, 255, 255, 0.22) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25) !important;
    }

    /* Mobile hamburger button visibility over hero */
    body.page-home .mobile-menu-toggle {
        background: rgba(255, 255, 255, 0.22) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
        color: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25) !important;
    }

    /* Scrolled: keep header transparent on mobile — no white bar */
    body.page-home .site-header.scrolled,
    body.page-home header.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom-color: transparent !important;
    }

    /* Scrolled: hide the dark scrim behind nav */
    body.page-home .site-header.scrolled::before,
    body.page-home header.scrolled::before {
        opacity: 0;
    }

    /* Scrolled buttons on mobile: darker bg for contrast over any content */
    body.page-home .site-header.scrolled .nav-button,
    body.page-home .site-header.scrolled .nav-btn,
    body.page-home header.scrolled .nav-button,
    body.page-home header.scrolled .nav-btn {
        background: rgba(255, 255, 255, 0.85) !important;
        border-color: rgba(47, 111, 97, 0.12) !important;
        color: var(--text-color, #1a1a1a) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    body.page-home .site-header.scrolled .nav-button i,
    body.page-home .site-header.scrolled .nav-btn i,
    body.page-home header.scrolled .nav-button i,
    body.page-home header.scrolled .nav-btn i {
        color: var(--text-color, #1a1a1a) !important;
    }

    body.page-home .site-header.scrolled .mobile-menu-toggle,
    body.page-home header.scrolled .mobile-menu-toggle {
        background: rgba(255, 255, 255, 0.85) !important;
        border-color: rgba(47, 111, 97, 0.12) !important;
        color: var(--text-color, #1a1a1a) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    body.page-home .site-header.scrolled .logo img,
    body.page-home header.scrolled .logo img {
        filter: none !important;
    }

    /* --- Metrics --- */
    .hp-metrics {
        padding: 2rem 0;
    }

    .hp-metrics__grid {
        gap: 1rem 2rem;
    }

    .hp-metrics__divider {
        display: none;
    }

    .hp-metrics__item {
        min-width: 90px;
    }

    .hp-metrics__number {
        font-size: 1.5rem;
    }

    .hp-metrics__label {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    /* --- About --- */
    .hp-about {
        padding: 3.5rem 0;
    }

    .hp-about__grid {
        gap: 2rem;
    }

    .hp-about__image img {
        height: 240px;
        border-radius: 4px;
    }

    .hp-about__image-accent {
        display: none;
    }

    .hp-about__title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .hp-about__text {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }

    .hp-about__features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hp-about__features li {
        font-size: 0.85rem;
        min-height: 44px; /* touch target */
    }

    .hp-about__link {
        font-size: 0.88rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* --- Rooms --- */
    .hp-rooms {
        padding: 3.5rem 0;
    }

    .hp-rooms::before {
        height: 50px;
    }

    .hp-rooms__bento {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .hp-rooms__card {
        height: 260px;
        border-radius: 4px;
    }

    .hp-rooms__card::before {
        border-radius: 4px;
    }

    .hp-rooms__card--large {
        grid-column: auto;
        height: 320px;
    }

    .hp-rooms__card-overlay {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .hp-rooms__card h3 {
        font-size: 1.05rem;
    }

    .hp-rooms__card--large h3 {
        font-size: 1.25rem;
    }

    .hp-rooms__card p {
        font-size: 0.78rem;
    }

    .hp-rooms__card-badge {
        top: 0.85rem;
        left: 0.85rem;
        font-size: 0.6rem;
        padding: 0.25rem 0.75rem;
    }

    .hp-rooms__card-arrow {
        /* Always visible on mobile (no hover) */
        opacity: 1;
        transform: none;
        width: 38px;
        height: 38px;
        top: 0.85rem;
        right: 0.85rem;
        font-size: 0.72rem;
    }

    .hp-rooms__more {
        margin-top: 2rem;
    }

    .hp-rooms__more .btn-hero-secondary {
        min-height: 48px;
        font-size: 0.88rem;
    }

    /* --- Section headings (rooms, etc.) --- */
    .section-heading {
        font-size: 1.65rem !important;
    }

    .section-subheading {
        font-size: 0.92rem !important;
        line-height: 1.65;
    }

    .section-badge {
        font-size: 0.6rem;
    }

    /* --- Experience --- */
    .hp-experience {
        padding: 3.5rem 0;
        padding-top: calc(3.5rem + 30px);
    }

    .hp-experience::after {
        height: 60px;
    }

    .hp-experience__header {
        margin-bottom: 2.25rem;
    }

    .hp-experience__badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.9rem;
        margin-bottom: 1rem;
    }

    .hp-experience__title {
        font-size: 1.65rem !important;
    }

    .hp-experience__subtitle {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .hp-experience__grid {
        gap: 1rem;
        max-width: 100%;
    }

    .hp-experience__item {
        padding: 1.75rem 1.25rem;
        border-radius: 4px;
        /* Remove hover lift on mobile */
        transform: none !important;
    }

    .hp-experience__icon {
        width: 52px;
        height: 52px;
        border-radius: 4px;
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .hp-experience__item-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .hp-experience__item-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .hp-experience__toggle {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        margin-top: 0.6rem;
    }

    /* --- Testimonial --- */
    .hp-testimonial {
        padding: 3.5rem 0;
        padding-top: calc(3.5rem + 30px);
    }

    .hp-testimonial::before {
        height: 50px;
    }

    .hp-testimonial__mark {
        font-size: 4.5rem;
        margin-bottom: -0.5rem;
    }

    .hp-testimonial blockquote {
        font-size: 1.08rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .hp-testimonial__stars {
        font-size: 0.88rem;
    }

    .hp-testimonial cite {
        font-size: 0.78rem;
    }

    /* --- CTA --- */
    .hp-cta {
        padding: 3.5rem 0;
        padding-top: calc(3.5rem + 30px);
    }

    .hp-cta::after {
        height: 50px;
    }

    .hp-cta__title {
        font-size: 1.65rem !important;
    }

    .hp-cta__text {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.7;
    }

    .hp-cta__actions {
        gap: 0.65rem;
    }

    .hp-cta__cta--white,
    .hp-cta__cta--outline {
        padding: 0.85rem 1.75rem;
        font-size: 0.88rem;
        min-height: 48px; /* touch target */
    }

    .hp-cta__trust {
        gap: 1rem 1.25rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hp-cta__trust-item {
        font-size: 0.72rem;
        gap: 0.4rem;
    }

    .hp-cta__trust-item i {
        font-size: 0.78rem;
    }
}

/* ==========================================
   SMALL MOBILE (≤480px)
   Stack CTAs vertically, tighter spacing.
   ========================================== */
@media (max-width: 480px) {
    .hp-hero__content {
        padding: 0 1rem;
    }

    .hp-hero__title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hp-hero__subtitle {
        font-size: 0.88rem;
    }

    .hp-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .hp-about__image img {
        height: 200px;
    }

    .hp-rooms__card {
        height: 200px;
    }

    .hp-rooms__card--large {
        height: 250px;
    }

    .hp-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-cta__cta--white,
    .hp-cta__cta--outline {
        width: 100%;
        justify-content: center;
    }

    .hp-cta__trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hp-testimonial blockquote {
        font-size: 1rem;
    }

    .hp-testimonial__mark {
        font-size: 3.5rem;
    }
}

/* ==========================================
   TINY MOBILE (≤360px)
   Absolute minimum viewport handling.
   ========================================== */
@media (max-width: 360px) {
    .hp-hero__eyebrow {
        font-size: 0.52rem;
        letter-spacing: 0.18em;
    }

    .hp-hero__eyebrow::before,
    .hp-hero__eyebrow::after {
        display: none;
    }

    .hp-hero__title {
        font-size: 1.7rem;
    }

    .hp-metrics__grid {
        gap: 0.75rem 1.5rem;
    }

    .hp-metrics__number {
        font-size: 1.3rem;
    }

    .hp-metrics__item {
        min-width: 75px;
    }
}


/* ==========================================
   9. REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .hp-hero__eyebrow,
    .hp-hero__title,
    .hp-hero__subtitle,
    .hp-hero__actions,
    .hp-hero__scroll {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .hp-hero__scroll-line::after {
        animation: none !important;
    }

    .hp-rooms__card img,
    .hp-experience__item,
    .hp-experience__icon,
    .hp-hero__cta,
    .hp-cta__cta--white,
    .hp-cta__cta--outline {
        transition: none !important;
    }
}


/* ==========================================
   10. PRINT
   ========================================== */
@media print {
    .hp-hero {
        height: auto;
        min-height: auto;
    }

    .hp-hero__media,
    .hp-hero__overlay,
    .hp-hero__scroll,
    .hp-experience,
    .hp-cta {
        display: none !important;
    }

    .hp-hero__content {
        color: #000;
        padding: 2rem 0;
    }
}
