/*
   Pava De Luxe — Design System Stylesheet
   BUILD_SPEC v1.1 compliant — 2026-07-14
   Tokens: ivory / ink / brass · Playfair Display · Source Serif 4 · Onest
*/

/* =============================================================
   1. DESIGN TOKENS & CORE RESET
   ============================================================= */
:root {
    /* Colour palette — 60/30/10 rule */
    --c-ground:      #F5F1E8;   /* warm ivory — 60 % page bg */
    --c-ink:         #29252A;   /* warm near-black — 30 % text/structure */
    --c-accent:      #A6885B;   /* antique brass FLAT — 10 % CTA/active/focus */
    --c-accent-deep: #7C6337;   /* brass-as-text — passes 4.5 : 1 on ivory */

    /* Hairline helper */
    --hairline-ink:    rgba(41, 37, 42, 0.17);
    --hairline-accent: rgba(166, 136, 91, 0.45);

    /* Font stacks */
    --f-headline: "Playfair Display", Georgia, "Times New Roman", serif;
    --f-body:     "Source Serif 4", Georgia, serif;
    --f-ui:       "Onest", system-ui, sans-serif;

    /* Z-index tokens */
    --z-nav:   100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-toast: 400;

    /* Transition tokens */
    --ease-out-expo: cubic-bezier(0.23, 1, 0.32, 1);
    --t-ui:    150ms;
    --t-edit:  500ms;

    /* Navbar */
    --navbar-h: 72px;
}

/* Keyboard focus — brass ring, only for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--c-accent-deep);
    outline-offset: 3px;
    border-radius: 2px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-h) + 16px);
}

body {
    background-color: var(--c-ground);
    color: var(--c-ink);
    font-family: var(--f-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: clip;   /* clip, NOT hidden — hidden creates a scroll
                           container that breaks ScrollTrigger pinning
                           on touch devices */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-headline);
    font-weight: 500;
    color: var(--c-ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p { max-width: 65ch; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-ui) ease;
}

button {
    font-family: var(--f-ui);
    border: none;
    background: none;
    cursor: pointer;
}

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

/* Prose hyphenation — requires correct lang attr */
.prose { hyphens: auto; -webkit-hyphens: auto; }

/* Hidden utility */
.hidden { display: none !important; }

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =============================================================
   2. NAVBAR — ink-dark full-width strip, split layout
   ============================================================= */
/* Mobile dropdown hidden at ALL widths by default — without this base rule
   it renders as a duplicate link strip on desktop (C2 cascade bug). */
.nav-menu { display: none; }

.navbar-container {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: calc(100% - 32px);
    z-index: var(--z-nav);
}

/* Appears only after scrolling into the page (JS adds .nav-visible) */
html.anim .navbar-container {
    opacity: 0;
    transform: translateX(-50%) translateY(-24px);
    pointer-events: none;
    transition: opacity 0.45s var(--ease-out-expo),
                transform 0.45s var(--ease-out-expo);
}
html.anim .navbar-container.nav-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.navbar {
    width: 100%;
    height: 64px;
    /* Monarch signature: translucent ivory liquid-glass pill */
    background: rgba(251, 248, 241, 0.68);
    -webkit-backdrop-filter: blur(18px) saturate(1.55) brightness(1.04);
    backdrop-filter: blur(18px) saturate(1.55) brightness(1.04);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82),
                inset 0 -12px 28px rgba(166, 136, 91, 0.07),
                0 16px 40px rgba(41, 37, 42, 0.18);
    position: relative;               /* bubble anchor */
    isolation: isolate;
    overflow: hidden;
    display: grid;
    /* auto tracks + JS side-balancing (balanceNav) keep the logo at the
       true center of a compact, content-width bar */
    grid-template-columns: auto auto auto;
    align-items: center;
    column-gap: 18px;
    padding: 0 16px;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0.48) 0%,
        rgba(255, 255, 255, 0.10) 34%,
        rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
    z-index: 0;
}

/* Three-part split: left links, center logo slot, right links */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 56px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.nav-center-logo {
    height: 42px;                     /* spec floor: never below 40px */
    width: auto;
    opacity: 1;
}

.nav-center-logo.visible { opacity: 1; }

/* Nav links */
.nav-link {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-ink);
    position: relative;
    z-index: 4;                       /* labels ABOVE the glass bubble — text stays crisp */
    padding: 8px 2px;
    white-space: nowrap;
}

.nav-link::after {
    content: none;                    /* underline replaced by glass bubble */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-accent);
    transition: width 0.25s var(--ease-out-expo);
}

.nav-link:hover { color: var(--c-ink); }

/* Liquid-glass hover bubble — frosted slider gliding link-to-link,
   sits UNDER the labels (labels z-index 4): the glass blurs only the
   pill surface behind it, the type stays perfectly crisp
   (client-directed secondary system) */
.nav-bubble {
    position: absolute;
    top: 50%;
    left: 0;
    height: 38px;
    border-radius: 999px;
    background: rgba(166, 136, 91, 0.16);
    -webkit-backdrop-filter: blur(4px) saturate(1.25);
    backdrop-filter: blur(4px) saturate(1.25);
    border: 1px solid rgba(166, 136, 91, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55),
                0 4px 14px rgba(41, 37, 42, 0.10);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%);
}

/* Language toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(245, 241, 232, 0.6);
    padding: 6px 0;
    cursor: pointer;
    background: none;
    border: none;
}

.lang-toggle .lang-label { color: rgba(41, 37, 42, 0.6); transition: color var(--t-ui) ease; }
.lang-toggle .lang-label.active { color: var(--c-ink); font-weight: 600; }
.lang-toggle .lang-divider { color: rgba(245, 241, 232, 0.3); margin: 0 2px; }

/* CTA button (brass) — navbar */
.nav-cta {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 10px 18px;
    background-color: var(--c-accent);
    color: var(--c-ink);
    text-decoration: none;
    transition: background-color var(--t-ui) ease, transform var(--t-ui) ease;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.nav-cta:hover { background-color: var(--c-accent-deep); color: var(--c-ground); }
.nav-cta:active { transform: scale(0.98); }

/* Mobile: hamburger (right), logo symbol center, call icon left */
.mobile-call-icon,
.mobile-toggle-btn {
    display: none;
}

.mobile-call-icon {
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.mobile-toggle-btn {
    flex-direction: column;
    gap: 5px;
    width: 26px;
    height: 20px;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    z-index: 10;
}

.mobile-toggle-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--c-ground);
    transition: all 0.35s var(--ease-out-expo);
    transform-origin: center;
}

.mobile-toggle-btn.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle-btn.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu actions inside dropdown */
.mobile-menu-actions { display: none; }

/* =============================================================
   3. BUTTONS & SHARED COMPONENTS
   ============================================================= */
.btn {
    display: inline-block;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 32px;
    transition: background-color var(--t-ui) ease, color var(--t-ui) ease, transform var(--t-ui) ease;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background-color: var(--c-accent);
    color: var(--c-ink);
    border-color: var(--c-accent);
}
.btn-primary:hover {
    background-color: var(--c-accent-deep);
    color: var(--c-ground);
    border-color: var(--c-accent-deep);
}

.btn-outline {
    background: transparent;
    color: var(--c-ground);
    border-color: var(--c-accent);
}
.btn-outline:hover {
    background-color: var(--c-accent);
    color: var(--c-ink);
}

.btn-block { display: block; width: 100%; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 48px;
}

/* Section badge — small uppercase label */
.section-badge {
    font-family: var(--f-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-accent-deep);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

/* =============================================================
   4. HERO — full viewport, logo lockup, ink overlay
   ============================================================= */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;   /* clips the zoom-through symbol + bg dolly — V2 overflow guard */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-h);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    /* True dolly-IN: the camera moves forward (translateZ), not a flat
       scale — the perspective container is what sells "I walked in" */
    perspective: 500px;
    overflow: hidden;
}

.hero-bg img {
    will-change: transform;
    width: 100%; height: 100%;
    object-fit: cover;
    transform-origin: 50% 42%;        /* vanishing point of the colonnade */
}

.hero-logo-symbol-wrap {
    will-change: transform, opacity;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(41, 37, 42, 0.50);
    z-index: 1;
    will-change: background-color;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    flex: 1;
    justify-content: center;
}

/* Logo lockup in hero */
.hero-logo-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.hero-logo-symbol {
    width: 160px;
    height: auto;
    margin-bottom: 24px;
}

.hero-logo-text {
    width: 360px;
    max-width: 80vw;
    height: auto;
}

.hero-tagline {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 32px;
    padding: 8px 16px;
    border: 1px solid rgba(245, 241, 232, 0.2);
}

.hero-cta {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 48px;
    background-color: var(--c-accent);
    color: var(--c-ink);
    text-decoration: none;
    display: inline-block;
    border: 0;
    cursor: pointer;
    transition: background-color var(--t-ui) ease, transform var(--t-ui) ease;
}
.hero-cta:hover { background-color: var(--c-accent-deep); color: var(--c-ground); }
.hero-cta:active { transform: scale(0.98); }

/* Quick-info hairline row at hero bottom */
.hero-quickinfo {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 2;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding: 16px 48px;
    display: flex;
    justify-content: center;
    gap: 32px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    color: rgba(245, 241, 232, 0.7);
    letter-spacing: 0.04em;
}

.hero-quickinfo span { white-space: nowrap; }

.quickinfo-dot {
    color: var(--c-accent);
}

/* =============================================================
   5. PEACOCK FEATHER DIVIDER — single SVG, once
   ============================================================= */
.peacock-divider {
    display: flex;
    justify-content: center;
    padding: 56px 0 8px;
    background-color: var(--c-ground);
}

.peacock-divider svg {
    width: 200px;
    height: auto;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 1.5;
}

/* =============================================================
   6. INTRO ACT II — the story arrives inside the zoomed lobby frame
   (merged pin: hero and about share ONE background, no cut)
   ============================================================= */
/* Default (no-JS / no-GSAP / reduced-motion): normal block below the
   hero content — everything readable, nothing overlaid */
.intro-about {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* GSAP mode: full-viewport overlay on the pinned hero, hidden until
   Act II of the timeline brings it in */
html.gsap .intro-about {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 48px;
}

.about-image-col { overflow: visible; }

/* Facade photo split into the five logo petals — each layer scrubs apart.
   Client-directed size bump (2026-07-19): the figure reads as the section's
   protagonist, allowed to breach its column slightly. */
.petal-figure {
    position: relative;
    width: 152%;
    margin-left: -26%;
    aspect-ratio: 4377 / 2745;
}
.petal {
    position: absolute;
    height: auto;
    will-change: transform, opacity;
}

/* Figma-style story card (approved secondary system) */
.about-text-col {
    /* visual surface now provided by the .lg glass system */
    padding: 64px;
}

.about-text-col h2 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--c-ink);
}

.about-text-col p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-ink);
    margin-bottom: 16px;
}

.about-text-col p.muted {
    color: rgba(41, 37, 42, 0.62);
}

.about-text-col .section-badge {
    color: var(--c-accent-deep);
}

/* =============================================================
   7. ROOMS — alternating image-text rows, oversized numerals
   ============================================================= */
.rooms-section {
    background-color: var(--c-ground);
    border-top: 1px solid var(--hairline-ink);
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 48px;
}

.rooms-header {
    margin-bottom: 64px;
}

.rooms-header h2 {
    font-size: 44px;
    margin-bottom: 12px;
}

.rooms-header p {
    font-family: var(--f-ui);
    font-size: 15px;
    color: rgba(41, 37, 42, 0.6);
}

/* Individual room row */
.room-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--hairline-ink);
    position: relative;
}

.room-row:last-child { border-bottom: none; }

/* Alternate: even rows flip image/text */
.room-row.reverse { direction: rtl; }
.room-row.reverse > * { direction: ltr; }

.room-image-col {
    position: relative;
    overflow: hidden;
}

.room-image-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 6px;
    background-color: var(--c-ground);
    border: 1px solid var(--c-accent);
}

/* Oversized numeral */
.room-numeral {
    font-family: var(--f-headline);
    font-size: 120px;
    font-weight: 600;
    color: rgba(41, 37, 42, 0.06);
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.room-row.reverse .room-numeral {
    left: auto;
    right: -8px;
}

.room-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-text-col h3 {
    font-size: 32px;
    font-weight: 500;
}

.room-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(41, 37, 42, 0.7);
}

.room-meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--f-ui);
    font-size: 14px;
    color: rgba(41, 37, 42, 0.6);
    margin-top: 8px;
}

.room-price {
    font-family: var(--f-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--c-accent-deep);
}

.room-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-card-detail {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--c-accent);
    color: var(--c-ink);
    cursor: pointer;
    transition: background-color var(--t-ui) ease, color var(--t-ui) ease;
    position: relative;
}

.btn-card-detail::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--c-accent);
    transition: width 0.25s var(--ease-out-expo);
}
.btn-card-detail:hover::after { width: 100%; }
.btn-card-detail:hover { border-color: var(--c-accent-deep); }
.btn-card-detail:active { transform: scale(0.98); }

.btn-card-book {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    background: var(--c-accent);
    color: var(--c-ink);
    border: 1px solid var(--c-accent);
    cursor: pointer;
    transition: background-color var(--t-ui) ease, color var(--t-ui) ease;
}
.btn-card-book:hover { background-color: var(--c-accent-deep); color: var(--c-ground); }
.btn-card-book:active { transform: scale(0.98); }

.room-tag {
    display: inline-block;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent-deep);
    padding: 4px 12px;
    border: 1px solid var(--c-accent);
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--c-ground);
    z-index: 1;
}

.rooms-footnote {
    font-family: var(--f-ui);
    font-size: 13px;
    color: rgba(41, 37, 42, 0.5);
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--hairline-ink);
}

/* =============================================================
   8. RESTAURANT & BREAKFAST — split layout
   ============================================================= */
.restaurant-section {
    background-color: var(--c-ground);
    border-top: 1px solid var(--hairline-ink);
}

.restaurant-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.restaurant-content { padding-right: 32px; }

.restaurant-title {
    font-size: 44px;
    margin-bottom: 24px;
}

.restaurant-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(41, 37, 42, 0.75);
    margin-bottom: 32px;
}

.restaurant-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid var(--hairline-ink);
    padding-top: 24px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-title {
    font-family: var(--f-headline);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-accent-deep);
}

.highlight-desc {
    font-family: var(--f-ui);
    font-size: 13px;
    color: rgba(41, 37, 42, 0.6);
}

.restaurant-image-block {
    overflow: hidden;
    height: 480px;
}

.restaurant-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 6px;
    background-color: var(--c-ground);
    border: 1px solid var(--c-accent);
}

/* =============================================================
   9. GALLERY — masonry from ALL images, lightbox
   ============================================================= */
.gallery-section {
    position: relative;
    z-index: 1;
    background-color: var(--c-ground);
    border-top: 1px solid var(--hairline-ink);
    box-shadow: 0 -24px 56px rgba(41, 37, 42, 0.16);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header h2 {
    font-size: 44px;
    margin-bottom: 12px;
}

.gallery-header p {
    font-family: var(--f-ui);
    font-size: 15px;
    color: rgba(41, 37, 42, 0.6);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.size-v { grid-row: span 2; }
.gallery-item.size-h { grid-column: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    padding: 6px;
    background-color: var(--c-ground);
    border: 1px solid var(--c-accent);
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.04); }

.item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(41, 37, 42, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay,
.gallery-item:focus-visible .item-overlay { opacity: 1; }

.item-overlay span {
    color: var(--c-ground);
    font-family: var(--f-headline);
    font-size: 20px;
    font-weight: 500;
    transform: translateY(8px);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .item-overlay span,
.gallery-item:focus-visible .item-overlay span { transform: translateY(0); }

.gallery-item.hidden { display: none; }

/* =============================================================
   10. CONTACT / NAP + INQUIRY FORM
   ============================================================= */
.contact-section {
    position: relative;
    z-index: 1;
    background-color: var(--c-ground);
    border-top: 1px solid var(--hairline-ink);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 48px;
    align-items: flex-start;
}

.contact-info-block { padding-right: 32px; }

.contact-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(41, 37, 42, 0.65);
    margin-bottom: 48px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-accent-deep);
    border: 1px solid var(--hairline-accent);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: var(--f-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(41, 37, 42, 0.5);
}

.info-value {
    font-size: 17px;
    font-weight: 400;
    color: var(--c-ink);
}

a.info-value:hover { color: var(--c-accent-deep); }

.booking-email {
    font-family: var(--f-ui);
    font-size: 15px;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.email-placeholder {
    font-family: var(--f-ui);
    font-size: 14px;
    color: rgba(41, 37, 42, 0.5);
    border: 1px dashed var(--hairline-ink);
    padding: 8px 12px;
    display: inline-block;
}

/* Form */
.contact-form-block {
    /* surface provided by .lg glass system */
    padding: 48px;
}

.form-title {
    font-size: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--hairline-ink);
    padding-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--f-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: rgba(41, 37, 42, 0.6);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-family: var(--f-ui);
    font-size: 14px;
    background: #ffffff;
    border: 1px solid var(--hairline-ink);
    color: var(--c-ink);
    transition: border-color var(--t-ui) ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--c-accent);
}

/* Honeypot — visually hidden */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.success-alert {
    margin-top: 24px;
    padding: 16px;
    background: rgba(166, 136, 91, 0.1);
    border: 1px solid var(--c-accent);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-accent-deep);
}

.success-icon { font-weight: bold; color: var(--c-accent-deep); }

/* =============================================================
   11. FOOTER — ink-dark
   ============================================================= */
.footer {
    background-color: var(--c-ink);
    color: rgba(245, 241, 232, 0.7);
    border-top: 1px solid var(--c-accent);
}

.footer .section-container { padding: 64px 48px 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.footer-tagline {
    font-family: var(--f-headline);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-ground);
}

.footer-nav,
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4,
.footer-contact-col h4 {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-ground);
    margin-bottom: 4px;
}

.footer-nav a {
    font-family: var(--f-ui);
    font-size: 14px;
    color: rgba(245, 241, 232, 0.6);
}
.footer-nav a:hover { color: var(--c-accent); }

.footer-contact-col p,
.footer-contact-col a {
    font-family: var(--f-ui);
    font-size: 14px;
    color: rgba(245, 241, 232, 0.6);
}
.footer-contact-col a:hover { color: var(--c-accent); }

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 241, 232, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: var(--f-ui);
    font-size: 12px;
    color: rgba(245, 241, 232, 0.4);
    letter-spacing: 0.05em;
}

.footer-disclaimer {
    font-style: italic;
}

/* =============================================================
   12. DRAWER / MODAL / LIGHTBOX OVERLAYS
   ============================================================= */
/* Drawer overlay */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(41, 37, 42, 0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Slide-out room details drawer */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(520px, 100vw);
    height: 100%;
    z-index: var(--z-modal);
    transition: transform 0.5s var(--ease-out-expo);
    padding: 48px;
    overflow-y: auto;
    transform: translateX(100%);
}
/* glass drawer: round only the leading (left) edge, flush to screen right.
   overflow-y MUST stay auto (2-class selector beats .lg's overflow:hidden) */
.drawer.lg { border-radius: 24px 0 0 24px; border-right: none; overflow-y: auto; }

.drawer.active { transform: translateX(0); }

.drawer-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; line-height: 1;
    color: var(--c-ink);
    cursor: pointer;
    z-index: 10;
}
.drawer-close-btn:hover { color: var(--c-accent-deep); }

.drawer-detail-title {
    font-size: 32px;
    margin-bottom: 24px;
}

.drawer-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 24px;
}

.drawer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(41, 37, 42, 0.7);
    margin-bottom: 32px;
}

.drawer-amenities-title {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--c-ink);
}

.drawer-amenities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
    margin-bottom: 32px;
}

.drawer-amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-ui);
    font-size: 14px;
}

.drawer-amenities-list li::before {
    content: '—';
    color: var(--c-accent);
    font-weight: 600;
}

/* Booking modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(41, 37, 42, 0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.booking-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
    max-width: 620px;
    z-index: var(--z-modal);
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo), visibility 0.4s ease;
}

/* keep the modal scrollable if its content is taller than the viewport
   (2-class selector overrides .lg's overflow:hidden) */
.booking-modal.lg { max-height: 90vh; overflow-y: auto; }

.booking-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-close-btn {
    position: absolute;
    top: 18px; right: 18px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; line-height: 1;
    color: var(--c-ink);
    cursor: pointer;
    z-index: 10;
}
.modal-close-btn:hover { color: var(--c-accent-deep); }

.modal-title {
    font-size: 28px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--hairline-ink);
    padding-bottom: 12px;
}

/* Fullscreen gallery lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(41, 37, 42, 0.95);
    z-index: var(--z-toast);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; line-height: 1;
    color: var(--c-ground);
    cursor: pointer;
    z-index: 10;
}
.lightbox-close:hover { color: #fff; }

/* lightbox chips read on a near-black backdrop → use the dark glass tint */
.lightbox-close.lg, .lightbox-arrow.lg { background: rgba(245, 241, 232, 0.12); border-color: rgba(255,255,255,0.28); }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; line-height: 1;
    color: rgba(245, 241, 232, 0.85);
    cursor: pointer;
}
.lightbox-arrow:hover { color: #fff; }
/* keep the vertical centering transform through the .lg--interactive hover */
.lightbox-arrow.lg--interactive:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-arrow.lg--interactive:active { transform: translateY(-50%) scale(0.98); }

.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.lightbox-caption {
    position: absolute;
    bottom: 32px;
    color: rgba(245, 241, 232, 0.8);
    font-family: var(--f-headline);
    font-size: 22px;
    font-weight: 500;
}

/* =============================================================
   13. MOBILE STICKY BOTTOM BAR
   ============================================================= */
.mobile-sticky-bar {
    display: none;
}

/* =============================================================
   14. SCROLL ANIMATION GATING
   All pre-hide states are ONLY active when html.anim is set,
   which is added by JS when motion is allowed.
   Wrapped in prefers-reduced-motion: no-preference.
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
    /* About/intro entrances are GSAP-timeline-driven (merged pin Act II);
       no CSS pre-hide here — the .intro-about overlay state lives under
       html.gsap and the timeline owns petals + story card. */

    /* Rooms: "photo develop" — image emerges softly from haze
       (fade + blur + desaturation settle, reversible) */
    html.anim .room-image-col img {
        opacity: 0;
        transform: scale(1.045);
        filter: blur(10px) saturate(0.35);
        transition: opacity 0.8s var(--ease-out-expo),
                    transform 0.9s var(--ease-out-expo),
                    filter 0.9s var(--ease-out-expo);
    }
    html.anim .room-image-col.in-view img {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) saturate(1);
    }

    /* Rooms: text cascades in line by line, in step with the photo */
    html.anim .room-text-col > * {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity 0.6s var(--ease-out-expo),
                    transform 0.6s var(--ease-out-expo);
    }
    html.anim .room-text-col.in-view > * { opacity: 1; transform: none; }
    html.anim .room-text-col.in-view > *:nth-child(1) { transition-delay: 0s; }
    html.anim .room-text-col.in-view > *:nth-child(2) { transition-delay: 0.08s; }
    html.anim .room-text-col.in-view > *:nth-child(3) { transition-delay: 0.16s; }
    html.anim .room-text-col.in-view > *:nth-child(4) { transition-delay: 0.24s; }
    html.anim .room-text-col.in-view > *:nth-child(5) { transition-delay: 0.32s; }
    html.anim .room-text-col.in-view > *:nth-child(6) { transition-delay: 0.4s; }

    /* Restaurant: image scale */
    html.anim .restaurant-image-block img {
        transform: scale(1.04);
        transition: transform 0.8s var(--ease-out-expo);
    }
    html.anim .restaurant-image-block.in-view img {
        transform: scale(1.0);
    }

    /* Gallery: staggered rise */
    html.anim .gallery-item {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.5s var(--ease-out-expo),
                    transform 0.5s var(--ease-out-expo);
    }
    html.anim .gallery-item.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero logo text fade */
    .hero-logo-text-wrap {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Peacock divider SVG stroke draw */
    html.anim .peacock-divider svg path {
        stroke-dasharray: 600;
        stroke-dashoffset: 600;
        transition: stroke-dashoffset 1.2s var(--ease-out-expo);
    }
    html.anim .peacock-divider.in-view svg path {
        stroke-dashoffset: 0;
    }
}

/* =============================================================
   15. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
    .navbar-container {
        top: 12px;
        width: calc(100% - 24px);
    }
    .navbar { height: 56px; padding: 0 20px; column-gap: 16px; }
    .nav-center-logo { height: 36px; }


    /* --- NAVBAR --- */
    .navbar {
        height: 56px;
        padding: 0 16px;
    }

    :root { --navbar-h: 56px; }

    .nav-left,
    .nav-right .nav-link,
    .nav-right .lang-toggle,
    .nav-right .nav-cta {
        display: none;
    }

    .nav-center {
        order: 0;
    }

    .nav-center-logo {
        height: 40px;
        opacity: 1;
    }

    .mobile-call-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: var(--c-accent);
        text-decoration: none;
        order: -1;
    }

    .mobile-call-icon svg {
        width: 22px;
        height: 22px;
    }

    .mobile-toggle-btn {
        display: flex;
        order: 2;
    }

    /* Mobile pill: call LEFT · symbol CENTER · hamburger RIGHT.
       The call icon + hamburger live inside .nav-right in the DOM;
       display:contents promotes them to grid items so the three-track
       grid can place them properly. Compact pill, true center. */
    .navbar-container {
        width: auto;
        min-width: 300px;
        max-width: calc(100% - 24px);
    }

    .navbar {
        grid-template-columns: 44px 1fr 44px;
        column-gap: 12px;
        padding: 0 14px;
    }

    .nav-right { display: contents; }

    .mobile-call-icon  { grid-column: 1; grid-row: 1; justify-self: start; }
    .nav-center        { grid-column: 2; grid-row: 1; justify-self: center; }
    .mobile-toggle-btn { grid-column: 3; grid-row: 1; justify-self: end; }

    .nav-bubble { display: none; }   /* hover glass — pointerless on touch */

    .mobile-toggle-btn .bar { background-color: var(--c-ink); }

    /* Mobile dropdown — floats under the pill, same rounded language */
    .nav-menu {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(41, 37, 42, 0.78);
        -webkit-backdrop-filter: blur(18px) saturate(1.45);
        backdrop-filter: blur(18px) saturate(1.45);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(41, 37, 42, 0.28);
        padding: 20px 20px;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active { display: flex; }

    .nav-menu .nav-link {
        display: block;
        font-size: 15px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(245, 241, 232, 0.1);
        width: 100%;
        color: var(--c-ground);          /* ivory on the ink panel */
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: var(--c-accent);
    }

    /* Lang toggle inside the dark dropdown: ivory labels */
    .mobile-menu-actions .lang-toggle .lang-label { color: rgba(245, 241, 232, 0.55); }
    .mobile-menu-actions .lang-toggle .lang-label.active { color: var(--c-ground); }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(245, 241, 232, 0.15);
        width: 100%;
    }

    .mobile-menu-actions .lang-toggle {
        justify-content: center;
        padding: 10px;
        font-size: 14px;
    }

    .mobile-menu-actions .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 14px;
    }

    /* --- HERO --- */
    .hero-section { padding-top: var(--navbar-h); }

    .hero-logo-symbol { width: 100px; }
    .hero-logo-text { width: 240px; }

    .hero-quickinfo {
        padding: 12px 16px;
        gap: 16px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* --- MOBILE STICKY BOTTOM BAR --- */
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0; right: 0;
        z-index: var(--z-nav);
        background-color: var(--c-ink);
        border-top: 1px solid var(--c-accent);
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        gap: 12px;
    }

    .mobile-sticky-bar a,
    .mobile-sticky-bar button {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--f-ui);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 14px 0;
        text-decoration: none;
        border: 0;
        cursor: pointer;
    }

    .mobile-sticky-bar .sticky-call {
        background-color: var(--c-accent);
        color: var(--c-ink);
    }

    .mobile-sticky-bar .sticky-route {
        background: transparent;
        color: var(--c-ground);
        border: 1px solid var(--c-accent);
    }

    .mobile-sticky-bar svg { width: 18px; height: 18px; }

    /* Extra bottom padding on body to not overlap content */
    body { padding-bottom: 80px; }

    /* --- INTRO ACT II (mobile: stacked, must FIT one viewport in
           GSAP overlay mode — figure on top, compact card below) --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 76px 20px 24px;   /* top clears the floating pill */
    }

    html.gsap .about-grid { align-content: center; }

    .about-text-col { padding: 22px 24px; border-radius: 18px; }
    .about-text-col h2 { font-size: 26px; margin-bottom: 12px; }
    .about-text-col p { font-size: 15px; line-height: 1.5; margin-bottom: 10px; }
    /* Figure sized to share one mobile viewport with the card */
    .petal-figure { width: 100%; max-width: min(92vw, 58vh); margin: 0 auto; }

    /* --- ROOMS --- */
    .rooms-container { padding: 64px 24px; }

    .room-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .room-row.reverse { direction: ltr; }

    .room-image-col img { height: 280px; }

    .room-numeral {
        font-size: 72px;
    }

    .room-text-col h3 { font-size: 26px; }

    /* --- RESTAURANT --- */
    .restaurant-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 24px;
    }

    .restaurant-content { padding-right: 0; }
    .restaurant-title { font-size: 32px; }
    .restaurant-image-block { height: 300px; }

    /* --- GALLERY --- */
    .gallery-section .section-container { padding: 64px 24px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 8px;
    }

    .gallery-item.size-h,
    .gallery-item.size-v {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* --- CONTACT --- */
    .contact-section .section-container { padding: 64px 24px; }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-block { padding-right: 0; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form-block { padding: 32px 24px; }

    /* --- DRAWER --- */
    .drawer {
        width: 100%;
        padding: 32px 24px;
    }

    /* --- FOOTER --- */
    .footer .section-container { padding: 48px 24px 32px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* --- LIGHTBOX --- */
    .lightbox-img { max-width: 95%; }
    .lightbox-arrow { font-size: 32px; padding: 8px; }
    .arrow-left { left: 4px; }
    .arrow-right { right: 4px; }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero-logo-symbol { width: 80px; }
    .hero-logo-text { width: 200px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}

/* =============================================================
   16. LIQUID GLASS SYSTEM  (client-directed, 2026-07-23)
   Web re-creation of LiquidGlassKit (iOS/Metal) for every FLOATING
   layer that sits over the heritage base. The base page stays
   radius-0 / hairline / no-shadow; only overlays become glass.
   Cues mapped from the kit's fragment shader:
     · refraction      -> backdrop-filter: url(#lg-refract)  (desktop)
     · frost/thickness -> backdrop-filter: blur() saturate()
     · Fresnel edge     -> bright gradient border + inset top light
     · glare streak     -> ::before diagonal specular highlight
     · dispersion       -> faint R/B offset inset shadows on the rim
   ============================================================= */
.lg-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

:where(.lg) {
    position: relative;
}

.lg {
    isolation: isolate;
    background: rgba(251, 248, 241, 0.55);          /* ivory glass tint */
    -webkit-backdrop-filter: blur(7px) saturate(1.45) brightness(1.03);
    backdrop-filter: blur(7px) saturate(1.45) brightness(1.03);
    border: 1px solid rgba(255, 255, 255, 0.42);     /* Fresnel rim */
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),      /* top Fresnel light */
        inset 1px 0 0 rgba(255, 120, 120, 0.05),      /* dispersion — warm side */
        inset -1px 0 0 rgba(120, 140, 255, 0.05),     /* dispersion — cool side */
        inset 0 -10px 24px rgba(166, 136, 91, 0.06),
        0 16px 44px rgba(41, 37, 42, 0.20);           /* drop */
    overflow: hidden;
}

/* Glare streak — a soft diagonal specular sweep across the top-left,
   the kit's directional glare highlight */
.lg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(133deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.10) 18%,
            rgba(255, 255, 255, 0) 42%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}
:where(.lg) > * { position: relative; z-index: 1; }

/* DESKTOP: add true refraction — the backdrop bends through the noise
   field, exactly the kit's feDisplacement idea. Guarded so unsupported
   browsers simply keep the frosted look. */
@media (min-width: 769px) {
    @supports ((backdrop-filter: url(#lg-refract)) or (-webkit-backdrop-filter: url(#lg-refract))) {
        .lg--refract {
            -webkit-backdrop-filter: url(#lg-refract) blur(5px) saturate(1.5) brightness(1.03);
            backdrop-filter: url(#lg-refract) blur(5px) saturate(1.5) brightness(1.03);
        }
        .lg--refract-strong {
            -webkit-backdrop-filter: url(#lg-refract-strong) blur(3px) saturate(1.6);
            backdrop-filter: url(#lg-refract-strong) blur(3px) saturate(1.6);
        }
    }
}

/* ---- Variants ---- */
/* Ivory-strong: text-bearing panels that must stay ≥4.5:1 readable */
.lg--solidish { background: rgba(251, 248, 241, 0.80); }

/* Dark glass — for panels over light backgrounds (footer accents, chips) */
.lg--dark {
    background: rgba(41, 37, 42, 0.52);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -10px 24px rgba(0, 0, 0, 0.18),
        0 16px 44px rgba(41, 37, 42, 0.30);
}
.lg--dark::before { background:
    linear-gradient(133deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 20%, rgba(255,255,255,0) 44%); }

/* Pill + chip radii */
.lg--pill { border-radius: 999px; }
.lg--chip { border-radius: 999px; }

/* Interactive glass (buttons / clickable cards): lift + brighten */
.lg--interactive { transition: transform var(--t-ui) var(--ease-out-expo),
                                box-shadow var(--t-ui) ease,
                                background-color var(--t-ui) ease; cursor: pointer; }
.lg--interactive:hover {
    transform: translateY(-2px);
    background: rgba(251, 248, 241, 0.66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 22px 52px rgba(41, 37, 42, 0.26);
}
.lg--interactive:active { transform: translateY(0) scale(0.99); }

/* =============================================================
   17. AMENITIES — glass icon grid  (verified facts only)
   ============================================================= */
.amenities-section {
    position: relative;
    background-color: var(--c-ground);
    border-top: 1px solid var(--hairline-ink);
    overflow: hidden;
}
.amenities-section .section-container { padding: 96px 48px; }
.amenities-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.amenities-header h2 { font-size: 44px; margin: 12px 0 0; }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.amenity-card {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    min-height: 150px;
}
.amenity-card .amenity-ico {
    width: 30px; height: 30px;
    color: var(--c-accent-deep);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.amenity-card .amenity-name {
    font-family: var(--f-ui);
    font-size: 15px; font-weight: 600;
    color: var(--c-ink);
    letter-spacing: 0.01em;
    line-height: 1.3;
}
.amenity-card .amenity-sub {
    font-family: var(--f-ui);
    font-size: 12.5px; font-weight: 400;
    color: rgba(41, 37, 42, 0.72);
    letter-spacing: 0.02em;
}

/* =============================================================
   18. LOCATION / THERMAL — glass panel over facade
   ============================================================= */
.location-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid var(--hairline-ink);
}
.location-bg { position: absolute; inset: 0; z-index: 0; }
.location-bg img { width: 100%; height: 100%; object-fit: cover; }
.location-bg::after {
    content: ""; position: absolute; inset: 0;
    background-color: rgba(41, 37, 42, 0.42);
}
.location-wrap {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 96px 48px; width: 100%;
    display: flex; justify-content: flex-start;
}
.location-card { max-width: 520px; padding: 48px; }
.location-card h2 { font-size: 42px; margin-bottom: 16px; color: var(--c-ink); }
.location-card p { font-size: 16px; line-height: 1.6; color: var(--c-ink); margin-bottom: 16px; }
.location-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.location-facts .lfact {
    font-family: var(--f-ui); font-size: 12.5px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--c-accent-deep);
    padding: 8px 16px;
}

@media (min-width: 769px) {
    .location-section {
        position: sticky;
        top: 0;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 0;
    }
}

/* =============================================================
   19. LIQUID GLASS — applied to existing floating layers
   ============================================================= */
/* Section badges become glass chips */
.section-badge {
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 4px;
    font-family: var(--f-ui);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--c-accent-deep);
    background: rgba(251, 248, 241, 0.5);
    -webkit-backdrop-filter: blur(6px) saturate(1.4);
    backdrop-filter: blur(6px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Restaurant: floating glass thumb overlapping the main photo */
.restaurant-image-block { position: relative; }
.restaurant-thumb {
    position: absolute;
    right: -18px; bottom: -26px;
    width: 40%; max-width: 220px;
    margin: 0; padding: 8px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.restaurant-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* Restaurant highlight chips → glass */
.restaurant-highlights .highlight-item {
    padding: 20px 22px;
    display: flex; flex-direction: column; gap: 6px;
    background: rgba(251, 248, 241, 0.5);
    -webkit-backdrop-filter: blur(7px) saturate(1.4);
    backdrop-filter: blur(7px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 28px rgba(41,37,42,0.12);
}

/* Gallery caption overlay → glass slab that floats up on hover */
.gallery-item .item-overlay {
    background: rgba(41, 37, 42, 0.42) !important;
    -webkit-backdrop-filter: blur(6px) saturate(1.3);
    backdrop-filter: blur(6px) saturate(1.3);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* Mobile sticky bar → glass */
.mobile-sticky-bar {
    background-color: rgba(41, 37, 42, 0.62) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    backdrop-filter: blur(12px) saturate(1.4);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* MOBILE: drop the expensive SVG refraction everywhere, keep frosted blur;
   soften shadows for lighter compositing */
@media (max-width: 768px) {
    .lg, .lg--refract, .lg--refract-strong {
        -webkit-backdrop-filter: blur(9px) saturate(1.4);
        backdrop-filter: blur(9px) saturate(1.4);
        border-radius: 18px;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.55),
            0 10px 26px rgba(41, 37, 42, 0.18);
    }
    .amenities-section .section-container { padding: 64px 20px; }
    .amenities-header h2 { font-size: 30px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .amenity-card { padding: 20px 16px; min-height: 128px; }
    .location-section { min-height: auto; }
    .location-wrap { padding: 56px 20px; }
    .location-card { padding: 28px 24px; }
    .location-card h2 { font-size: 28px; }
}

/* No backdrop-filter support at all → solid ivory fallback so text stays readable */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .lg { background: rgba(251, 248, 241, 0.94); }
    .lg--dark { background: rgba(41, 37, 42, 0.9); }
}

/* Reduced-motion users: kill the glare sweep animation-feel (it's static
   anyway) and any interactive lift */
@media (prefers-reduced-motion: reduce) {
    .lg--interactive { transition: none; }
}
