/* ==========================================================
   KOUSA OSAKA NAMBA — Property LP
   ========================================================== */

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

:root {
    --cream: #FFFFFF;               /* base background — pure white */
    --cream-deep: #F2F2F2;          /* nested surfaces — soft gray */
    --ink: #0A0A0A;                 /* primary text — near-black */
    --ink-mute: #0A0A0A;            /* was gray — now unified with --ink (pure black) */
    --line: rgba(0, 0, 0, 0.14);    /* hairlines */
    --accent: #0A0A0A;              /* was warm — now near-black */
    --accent-yellow: #FFFFFF;       /* was yellow — now white (used on dark sections) */
    --dark: #0A0A0A;                /* dark canvas — near-black */
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    overflow-x: clip;
    background: var(--cream);
    color: var(--ink);
    font-family: "Montserrat", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.75;
    font-weight: 500;
}

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

a {
    color: inherit;
}

/* ============================================================
   FIXED CHROME — Left vertical logo pillar + top nav bar
   Both stay visible across all sections. Hidden on mobile.
   ============================================================ */

/* Left pillar — full viewport height, hosts the vertical KOUSA wordmark */
.side-logo {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 180px;                            /* wide enough for large vertical wordmark */
    z-index: 101;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.4rem;                    /* vertical + horizontal breathing */
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.side-logo.is-visible {
    transform: translateX(0);
}

.sl-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Logo scales to fill the pillar while preserving its natural aspect (h/w = 3.86) */
.sl-link img {
    max-width: 100%;
    max-height: 82vh;             /* leaves room for the small OSAKA / NAMBA text below */
    width: auto;
    height: auto;
    display: block;
    filter: brightness(0);
}

/* Small property name beneath the vertical KOUSA wordmark */
.sl-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: var(--ink);
    line-height: 1.2;
    text-transform: uppercase;
}

/* Top horizontal nav bar — starts after the left pillar */
.top-bar {
    position: fixed;
    top: 0;
    left: 180px;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.4vw;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    font-family: 'Montserrat', sans-serif;
    transform: translateY(-100%);
    transition: transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.top-bar.is-visible {
    transform: translateY(0);
}

.tb-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.2;
}

.tb-brand-eyebrow {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--ink);
    opacity: 0.55;
    text-transform: uppercase;
}

.tb-brand-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--ink);
}

.tb-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tb-nav a {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    padding: 0.4rem 0;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.tb-nav a:hover {
    opacity: 1;
}

.tb-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tb-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.tb-nav-external {
    padding-left: 1.6rem !important;
    margin-left: 0.4rem;
    border-left: 1px solid var(--line);
    opacity: 0.85 !important;
}

/* Push main content sections so they aren't overlapped by the fixed chrome.
   Using margin-left (not padding-left) so shorthand padding overrides
   don't accidentally re-collapse the space. */
@media (min-width: 1025px) {
    .statement,
    .features,
    .rooms,
    .footer {
        margin-left: 180px;               /* shift entire section right past the pillar */
    }
    /* Cap centered inner-lists so they never butt up against the pillar edge */
    .room-list,
    .feat-list,
    .rooms-header,
    .feat-header,
    .stmt-inner,
    .foot-inner {
        max-width: 1080px;
    }
    /* Reserve FAB — visually center in the remaining content area */
    .reserve-fab {
        left: calc(50% + 90px);
    }
}

/* Hide the fixed chrome on anything below desktop-wide (tablet + mobile) */
@media (max-width: 1024px) {
    .side-logo,
    .top-bar {
        display: none;
    }
}

/* ============================================================
   HERO — K logo pop-in + rapid Namba slideshow (mirrors KOUSA brand hero)
   ============================================================ */
.stage {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Background container — full-bleed. Photo visible from t=0. */
.bg {
    position: absolute;
    inset: -18% 0;
    z-index: 1;
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}

/* Slow crossfade slideshow — interior/room shots cycle through the hero.
   6 slides × 5s per slide = 30s cycle; ~2s of crossfade overlap between slides. */
.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #111;
    opacity: 0;
    animation: heroCrossfade 30s ease-in-out infinite;
    /* Very slow Ken-Burns zoom so every shot has quiet motion */
    will-change: opacity, transform;
}

/* Stagger — each slide starts 5s after the previous one */
.bg-slide:nth-child(1) { animation-delay:  0s; }
.bg-slide:nth-child(2) { animation-delay:  5s; }
.bg-slide:nth-child(3) { animation-delay: 10s; }
.bg-slide:nth-child(4) { animation-delay: 15s; }
.bg-slide:nth-child(5) { animation-delay: 20s; }
.bg-slide:nth-child(6) { animation-delay: 25s; }

@keyframes heroCrossfade {
    0%   { opacity: 0; transform: scale(1.03); }
    7%   { opacity: 1; }
    17%  { opacity: 1; }
    23%  { opacity: 0; transform: scale(1.07); }
    100% { opacity: 0; transform: scale(1.07); }
}

/* Centered K mark stack — 3 layered PNGs pop in one by one, then fade out as photo appears */
.mark {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    pointer-events: none;
    opacity: 1;
}

.stage.is-in .mark {
    animation: markFadeOut 1s cubic-bezier(0.2, 0.7, 0.2, 1) 2.6s forwards;
}

@keyframes markFadeOut {
    to { opacity: 0; visibility: hidden; }
}

.mark-stack {
    position: relative;
    width: clamp(120px, 16vw, 220px);
    aspect-ratio: 583 / 666;
}

.mark-stack .mark-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    clip-path: inset(0 0 100% 0);          /* hidden by default */
    animation-duration: 0.01s;
    animation-timing-function: step-end;
    animation-fill-mode: forwards;
    /* No drop-shadow — pure black K on the white intro */
}

.stage.is-in .mark-stack .mark-line-1 { animation-name: markPop; animation-delay: 0.3s; }
.stage.is-in .mark-stack .mark-line-2 { animation-name: markPop; animation-delay: 0.8s; }
.stage.is-in .mark-stack .mark-line-3 { animation-name: markPop; animation-delay: 1.3s; }

@keyframes markPop {
    to { clip-path: inset(0 0 0 0); }
}

/* Small property name below the K — fades in after logo lands and photos start */
.mark-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.66rem, 0.9vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.44em;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 0.44em;                  /* optical center for tracking */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    mix-blend-mode: difference;            /* stays readable across changing photos */
    opacity: 0;
    transform: translateY(10px);
}

.stage.is-in .mark-brand {
    animation: markBrandIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) 2s forwards;
}

@keyframes markBrandIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 2.4rem;
    transform: translateX(-50%);
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: #fff;
    mix-blend-mode: difference;
    opacity: 0;
    animation: hintFade 1.2s ease-out 2.4s forwards,
               hintFloat 2.4s ease-in-out 3.6s infinite;
    pointer-events: none;
}

@keyframes hintFade { to { opacity: 0.85; } }
@keyframes hintFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 6px); }
}

/* ============================================================
   EXTERIOR — Mask reveal + parallax
   ============================================================ */
.exterior {
    padding: 8rem 6vw 10rem;
    background: var(--cream);
}

.ext-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.ext-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.ext-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ink);
    line-height: 1;
}

.ext-caption {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    text-transform: uppercase;
}

.ext-cap-num {
    font-weight: 800;
    color: var(--accent);
}

.ext-cap-txt {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

/* Frame with mask reveal */
.ext-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;                    /* wide-cinematic — crops the sky area */
    background: var(--cream-deep);
}

.ext-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;          /* anchor to building base, cut white sky top */
    transform: scale(1.08) translate3d(0, var(--parallax-y, 0px), 0);
    transform-origin: center bottom;
    transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
}

.ext-frame:hover .ext-img {
    transform: scale(1.02) translate3d(0, var(--parallax-y, 0px), 0);
}

/* Mask overlay — swipes right on reveal */
.reveal-mask {
    position: relative;
}

.reveal-mask::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cream);
    z-index: 3;
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform 1.3s cubic-bezier(0.72, 0, 0.24, 1);
}

.reveal-mask.is-visible::before {
    transform: scaleX(0);
}

/* Photo starts slightly zoomed and settles */
.reveal-mask .ext-img,
.reveal-mask img {
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

.reveal-mask.is-visible .ext-img,
.reveal-mask.is-visible img {
    opacity: 1;
}

.ext-figcap {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    color: #fff;
    z-index: 4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
}

.reveal-mask.is-visible .ext-figcap {
    opacity: 1;
    transform: translateY(0);
}

.ext-figcap-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.ext-figcap-jp {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
    padding: 10rem 6vw;
    background: var(--cream);
    position: relative;
}

.stmt-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.stmt-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

.stmt-headline {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.8rem);
    font-weight: 900;
    line-height: 1.65;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 3.6rem;
}

.split-lines .line {
    display: block;
    overflow: hidden;
    padding: 0.05em 0;
}

.split-lines .line .word,
.split-lines .line .char {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease;
    transition-delay: calc(var(--i, 0) * 0.03s);
}

.split-lines.is-visible .line .word,
.split-lines.is-visible .line .char {
    transform: translateY(0);
    opacity: 1;
}

.stmt-body {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.95rem;
    line-height: 2.1;
    color: var(--ink-mute);
}

.stmt-body p {
    margin-bottom: 1.4rem;
}

.stmt-body p:last-child {
    margin-bottom: 0;
}

/* Reveal fade utility */
.reveal-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FEATURES — scroll-hijack horizontal carousel
   Vertical scroll translates the list horizontally; when the last
   card is fully shown, page-scroll continues to Rooms below.
   ============================================================ */
.features {
    padding: 0;                        /* the pin manages its own vertical space */
    background: var(--dark);
    color: var(--cream);
    position: relative;
    /* NO overflow: hidden — would break the sticky pin */
}

.feat-track {
    position: relative;
    /* height is set by JS (viewport + horizontal distance to consume) */
    min-height: 100vh;
}

.feat-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;                  /* clip the horizontally-moving list */
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
}

.feat-header {
    max-width: 1240px;
    margin: 0 auto 5rem;
}

.feat-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent-yellow);
    line-height: 1;
}

.feat-headline {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.6;
    color: var(--cream);
    text-align: left;
    letter-spacing: 0.03em;
}

.feat-headline .line {
    display: block;
    overflow: hidden;
}

/* Horizontal list — translated via JS transform, no native scrolling */
.feat-list {
    display: flex;
    gap: 3rem;
    padding: 0 6vw;
    align-items: stretch;
    will-change: transform;
}

.feat {
    flex: 0 0 clamp(300px, 44vw, 640px);
    display: block;
    position: relative;
    padding: 0;
}

/* Cleanup — no horizontal hairlines in carousel mode */
.feat-line { display: none; }
.feat:last-child::after { display: none; }

/* Number badge — sits over the top-left corner of the card photo */
.feat-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.7rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.feat.is-visible .feat-num {
    opacity: 1;
    transform: translateY(0);
}

.feat-body {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.feat.is-visible .feat-body {
    opacity: 1;
    transform: translateY(0);
}

/* Big photo — main visual of each card */
.feat-photo {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;                 /* larger, more prominent */
    overflow: hidden;
    margin: 0 0 1.6rem;
    background: #1a1a1a;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s,
                transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s;
}

.feat.is-visible .feat-photo {
    opacity: 1;
    transform: translateY(0);
}

.feat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feat:hover .feat-photo img {
    transform: scale(1.06);
}

/* Progress bar — bottom of pin, fills as user scrolls through the carousel */
.feat-progress {
    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 2.4rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
    pointer-events: none;
}

.feat-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--cream);
    transition: width 0.05s linear;
}

.feat-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--accent-yellow);
    text-transform: uppercase;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 1.2rem;
}

.feat-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--cream);
}

.feat-desc {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    max-width: 46em;
}

/* Mobile: disable scroll-hijack, stack cards vertically instead */
@media (max-width: 800px) {
    .feat-track {
        height: auto !important;
        min-height: 0;
    }
    .feat-pin {
        position: static;
        height: auto;
        overflow: visible;
        display: block;
        padding: 4rem 0;
    }
    .feat-list {
        flex-direction: column;
        gap: 3rem;
        transform: none !important;      /* override JS transform */
        padding: 0 6vw;
    }
    .feat {
        flex: 1 1 auto;
        width: 100%;
    }
    .feat-progress {
        display: none;
    }
    .feat-num {
        font-size: 1.4rem;
    }
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms {
    padding: 8rem 6vw;
    background: var(--cream);
}

.rooms-header {
    max-width: 1240px;
    margin: 0 auto 5rem;
}

.rooms-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent);
    line-height: 1;
}

.rooms-headline {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.6;
    color: var(--ink);
    text-align: left;
    letter-spacing: 0.03em;
}

.rooms-headline .line {
    display: block;
    overflow: hidden;
}

.room-list {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.room {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4vw;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.room.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reverse layout on middle room for rhythm */
.room--b {
    grid-template-columns: 1fr 1.2fr;
}

.room--b .room-photo {
    order: 2;
}

.room--b .room-info {
    order: 1;
}

.room-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cream-deep);
}

.room-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
}

.room:hover .room-photo img {
    transform: scale(1.1);
}

.room-info {
    padding: 1rem 0;
}

.room-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    color: var(--accent);
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid currentColor;
    margin-bottom: 1.6rem;
}

.room-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.room-meta span {
    position: relative;
    padding-right: 1.2rem;
}

.room-meta span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--line);
    border-radius: 50%;
}

.room-meta span:last-child {
    padding-right: 0;
}

.room-meta span:last-child::after {
    display: none;
}

.room-desc {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.92rem;
    line-height: 2.05;
    color: var(--ink);
    margin-bottom: 1.8rem;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--ink);
}

.rp-from {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: var(--ink-mute);
    text-transform: uppercase;
}

.rp-num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.rp-note {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
}

@media (max-width: 800px) {
    .rooms-header {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 3rem;
    }
    .rooms-headline {
        text-align: left;
    }
    .room,
    .room--b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .room--b .room-photo {
        order: 0;
    }
    .room--b .room-info {
        order: 1;
    }
    .room-list {
        gap: 3.5rem;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 6rem 6vw 3rem;
    background: var(--dark);
    color: var(--cream);
}

.foot-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4vw;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.36em;
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.foot-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 1rem;
}

.foot-tagline {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.foot-info dl {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.82rem;
}

.foot-info dt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.foot-info dd {
    font-weight: 500;
    color: var(--cream);
}

.foot-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.55);
}

.foot-back {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    transition: color 0.3s ease;
}

.foot-back:hover {
    color: var(--accent-yellow);
}

@media (max-width: 800px) {
    .foot-inner {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .foot-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ============================================================
   FLOATING RESERVATION CTA
   Fixed at bottom, slides up after page load, always visible.
   Desktop: pill, bottom-center. Mobile: full-width bottom bar.
   ============================================================ */
.reserve-fab {
    position: fixed;
    left: 50%;
    bottom: 1.6rem;
    transform: translate(-50%, 200%);       /* start off-screen */
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 1.9rem 1.05rem 1.7rem;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border-radius: 999px;                    /* full pill — rounded corners */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--ink);
    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    /* Reveal on JS-added .is-mounted (delayed so it enters after hero starts) */
}

.reserve-fab.is-mounted {
    transform: translate(-50%, 0);
}

.reserve-fab:hover {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.rf-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: rfPulse 2.2s ease-in-out infinite;
}

@keyframes rfPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.4); }
}

.rf-arrow {
    display: inline-block;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.reserve-fab:hover .rf-arrow {
    transform: translateX(4px);
}

@media (max-width: 700px) {
    /* Pill kept on mobile too — floats above content, still centered */
    .reserve-fab {
        left: 50%;
        bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
        transform: translate(-50%, 200%);
        padding: 0.95rem 1.6rem 0.95rem 1.4rem;
        font-size: 0.78rem;
    }
    .reserve-fab.is-mounted {
        transform: translate(-50%, 0);
    }
}
