@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600&family=Noto+Sans+SC:wght@300;400;500;600&family=Inter:wght@400;500;600&display=swap');

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

:root {
    --primary:      #1a3a32;
    --accent:       #b85450;
    --cream:        #f7f5f0;
    --washi:        #ebe6df;
    --white:        #ffffff;
    --text:         #2c2c2c;
    --text-muted:   #6b6b6b;
    --shadow-sm:    0 1px 8px rgba(26,58,50,.06);
    --shadow:       0 2px 12px rgba(26,58,50,.08);
    --shadow-hover: 0 8px 28px rgba(26,58,50,.15);
    --font-primary: 'Inter', 'Noto Sans JP', 'Noto Sans SC', sans-serif;
    --font-display: 'Shippori Mincho', 'Noto Serif JP', serif;
    --safe-top:      env(safe-area-inset-top, 0px);
    --safe-bottom:   env(safe-area-inset-bottom, 0px);
    --nav-h:         calc(3.5rem + var(--safe-top));
    --radius:        14px;
    --radius-sm:     8px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Navbar ─── */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,58,50,.07);
    box-shadow: 0 1px 18px rgba(26,58,50,.05);
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    padding-top: calc(0.65rem + var(--safe-top));
    padding-bottom: 0.65rem;
    transition: box-shadow .3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.18em;
    text-decoration: none;
    line-height: 1.2;
    flex-shrink: 0;
}

.nav-right { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }

.nav-menu { display: flex; list-style: none; gap: 2.25rem; }

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.92rem;
    letter-spacing: 0.07em;
    transition: color .22s ease;
    position: relative;
    padding-bottom: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active { color: var(--primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
    padding: 12px;
    margin: -12px -12px -12px 0;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    width: 22px; height: 1.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all .28s ease;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Language Switcher ─── */
.nav-drawer-lang { display: none; list-style: none; }

.nav-drawer-lang-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.lang-switcher { display: flex; gap: 0.4rem; }
.lang-switcher--drawer { flex-wrap: wrap; gap: 0.45rem; }
.lang-switcher--drawer .lang-btn {
    flex: 1 1 calc(33.333% - 0.45rem);
    min-width: 5rem;
    min-height: 44px;
    box-sizing: border-box;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    border: 1.5px solid rgba(26,58,50,.28);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: all .2s ease;
}
.lang-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.lang-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ─── Hero ─── */
.hero {
    background:
        linear-gradient(135deg, rgba(26,58,50,.9) 0%, rgba(42,80,70,.85) 100%),
        url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 140px 20px calc(100px + var(--safe-bottom));
    text-align: center;
    margin-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero-content { position: relative; z-index: 1; }

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: 0.15em;
}

.hero-content h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(184,84,80,.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184,84,80,.45);
    background: #a04844;
}
.btn-primary:active { transform: translateY(0); }

/* ─── Shared Section ─── */
section { padding: 96px 20px; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    line-height: 1.4;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--accent);
    margin: 0.9rem auto 0;
    border-radius: 1px;
}

/* ─── About / News ─── */
.news-section { background: var(--cream); }

/* About banner image */
.about-hero-img {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-hero-img img {
    width: 100%;
    height: clamp(200px, 40vw, 420px);
    object-fit: cover;
    display: block;
}

.news-list { max-width: 800px; margin: 0 auto; }

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.feature-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.news-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.news-item p { line-height: 1.9; color: var(--text); }

.news-item p + p { margin-top: 0.75rem; }

/* ─── Menu ─── */
.menu-section { background: var(--white); }

.menu-description {
    max-width: 760px;
    margin: -1rem auto 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.menu-item {
    background: var(--cream);
    padding: 2.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid transparent;
}

.menu-item.featured {
    border-color: rgba(201,160,85,.45);
    position: relative;
}

.menu-item.featured::before {
    content: '人気';
    position: absolute;
    top: -12px; right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-item-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .65s ease;
}

.menu-item:hover .menu-item-image img { transform: scale(1.04); }

.menu-item-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26,58,50,.1);
}

.menu-item-title {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.menu-item-subtitle {
    color: var(--text-muted);
    font-size: 0.83rem;
    letter-spacing: 0.04em;
}

.menu-prices { display: flex; flex-direction: column; gap: 0.55rem; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.85rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--washi);
    transition: border-color .2s ease;
}

.price-row:hover { border-color: rgba(201,160,85,.4); }

.price-row .price-time { flex: 1 1 auto; min-width: 0; }
.price-row .price-amount { flex: 0 0 auto; text-align: end; }

.price-time {
    font-weight: 400;
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--accent);
    font-size: 1.22rem;
    letter-spacing: 0.02em;
}

.menu-notes {
    background: var(--cream);
    padding: 1.6rem 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid var(--washi);
}

.menu-notes h4 {
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.notes-content {
    background: var(--white);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
}

.note-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.45rem 0;
}

.note-icon {
    width: 20px; height: 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

.menu-cta { text-align: center; margin-top: 2.5rem; }

/* ─── Room ─── */
.room-section { background: var(--cream); }

.room-carousel { margin-bottom: 2rem; }

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.room-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .32s ease, box-shadow .32s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s ease;
}

.room-card:hover .room-image img { transform: scale(1.04); }

.room-note {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
}

.room-arrow { display: none; }
.room-track-wrap { position: static; }

.room-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0 16px;
}

.room-dots button {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(26,58,50,.22);
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s ease, background .2s ease;
}

.room-dots button[aria-selected="true"] {
    background: var(--accent);
    transform: scale(1.45);
}

.room-dots button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ─── Access ─── */
.access-section { background: var(--white); }

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

.access-info h3 {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--washi);
}

.access-details p {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text);
}

.access-details p::before { content: '📍'; position: absolute; left: 0; }

.access-tel {
    padding-left: 1.5rem;
    position: relative;
    margin-top: 0.4rem;
}
.access-tel::before { content: '📞'; position: absolute; left: 0; }
.access-tel a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    transition: color .2s ease;
}
.access-tel a:hover { color: var(--accent); }

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.75rem;
    padding: 0.95rem 1.85rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #25D366 0%, #1cbe5a 100%);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    box-shadow: 0 4px 18px rgba(37,211,102,.26);
    transition: transform .22s ease, box-shadow .22s ease;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-wa:active { transform: translateY(0); }
.btn-wa svg { flex-shrink: 0; }

.payment-note {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.payment-note span {
    display: inline-block;
    font-weight: 600;
    color: var(--primary);
    margin-right: 0.5rem;
}

.access-photo {
    margin-top: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--washi);
}

.map-container iframe {
    width: 100%;
    height: clamp(260px, 55vw, 420px);
    border: 0;
    vertical-align: bottom;
    display: block;
}

/* ─── Footer ─── */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem 20px calc(2.5rem + var(--safe-bottom));
    text-align: center;
}

.footer-note {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.06em;
}

.copyright {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.65;
    letter-spacing: 0.1em;
}

.footer-powered {
    font-size: 0.68rem;
    opacity: 0.5;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    margin-top: 1.1rem;
    line-height: 1.5;
}
.footer-powered a { color: rgba(255,255,255,.8); text-decoration: underline; text-underline-offset: 3px; }
.footer-powered a:hover { opacity: 1; }

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    transition: color .2s ease;
}
.footer-links a:hover { opacity: 0.85; }

/* ─── Responsive: tablet / large phone ─── */
@media (max-width: 768px) {
    :root { --nav-h: calc(2.95rem + var(--safe-top)); }

    .container { padding: 0 16px; }

    .hamburger { display: flex; }

    .navbar .container { gap: 0.5rem; flex-wrap: nowrap; }

    .nav-right .lang-switcher--header { display: none !important; }

    .nav-brand {
        font-size: 1.05rem;
        letter-spacing: 0.12em;
        flex: 1 1 auto;
        min-width: 0;
        overflow: visible;
        white-space: nowrap;
        margin-right: 0.25rem;
    }

    .nav-drawer-lang {
        display: block;
        padding: 0.85rem 1.5rem 1.05rem;
        margin: 0;
        border-bottom: 1px solid var(--washi);
    }

    .lang-switcher--drawer .lang-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        border-width: 1.5px;
        min-height: 44px;
    }

    .nav-menu {
        position: fixed;
        top: 0; bottom: 0; left: -100%;
        flex-direction: column;
        background: rgba(255,255,255,.99);
        width: min(100%, 22rem);
        min-height: 100vh;
        min-height: 100dvh;
        padding: calc(var(--nav-h) + 0.75rem) 0 calc(2rem + var(--safe-bottom));
        transition: left .28s ease;
        box-shadow: 4px 0 28px rgba(0,0,0,.1);
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 4px 0 32px rgba(0,0,0,.16), 1px 0 0 rgba(26,58,50,.05);
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--washi);
    }

    .nav-link::after { display: none; }

    section { padding: 60px 16px; }

    .section-title {
        font-size: 1.65rem;
        margin-bottom: 1.75rem;
        letter-spacing: 0.07em;
        line-height: 1.4;
    }

    .news-section { padding: 60px 16px; }

    .about-hero-img {
        margin-bottom: 1.75rem;
    }

    .about-hero-img img {
        height: clamp(160px, 52vw, 280px);
    }

    .news-item { padding: 1.5rem 1.25rem; }
    .news-item p { font-size: 0.93rem; }

    .hero {
        padding: 3.5rem 16px calc(4.5rem + var(--safe-bottom));
        margin-top: var(--nav-h);
    }

    .hero-content::before { height: 40px; margin-bottom: 1.5rem; }

    .hero-content h1 {
        font-size: 1.85rem;
        letter-spacing: 0.12em;
        line-height: 1.5;
    }

    .hero-content h2 {
        font-size: 0.58rem;
        letter-spacing: 0.35em;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.86rem;
        margin-bottom: 2.25rem;
        line-height: 2;
    }

    .btn-primary {
        min-height: 48px;
        padding: 0.9rem 1.75rem;
        width: 100%;
        max-width: 22rem;
        -webkit-tap-highlight-color: transparent;
    }

    .menu-description { margin-bottom: 1.75rem; font-size: 0.83rem; }

    .menu-item { padding: 1.35rem 1.1rem; margin-bottom: 1.25rem; }

    .menu-item.featured::before {
        top: 10px; right: 12px;
        font-size: 0.66rem;
        padding: 0.24rem 0.75rem;
    }

    .menu-item-image img { height: 180px; }
    .menu-item-title { font-size: 1.15rem; }
    .menu-item-subtitle { font-size: 0.8rem; }

    .price-row { padding: 0.75rem 1rem; }
    .price-amount { font-size: 1.1rem; }

    .menu-notes { padding: 1.25rem 1rem; }
    .menu-notes h4 { font-size: 0.65rem; }

    .access-content { grid-template-columns: 1fr; gap: 1.75rem; }
    .access-info h3 { font-size: 1.15rem; }
    .access-details p { font-size: 0.9rem; word-break: break-word; }

    .btn-wa {
        display: flex;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.9rem 1.25rem;
        margin-top: 1.25rem;
    }

    /* Room carousel — mobile */
    .room-carousel {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        margin-bottom: 1.25rem;
    }

    .room-track-wrap { position: relative; }

    .room-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 36px; height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 2px 10px rgba(0,0,0,.16);
        color: var(--primary);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: opacity .2s ease, background .15s ease;
        padding: 0;
    }

    .room-arrow:active { background: rgba(255,255,255,1); }
    .room-arrow--prev { left: 10px; }
    .room-arrow--next { right: 10px; }
    .room-arrow[aria-disabled="true"] { opacity: 0; pointer-events: none; }

    .room-carousel .room-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        padding: 0 0 6px;
        margin-bottom: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
    }

    .room-carousel .room-grid::-webkit-scrollbar { display: none; }

    .room-carousel .room-grid::before,
    .room-carousel .room-grid::after {
        content: '';
        flex: 0 0 max(12px, calc(50vw - min(44vw, 170px)));
        min-width: 12px;
        scroll-snap-align: none;
    }

    .room-carousel .room-card {
        flex: 0 0 min(85vw, 340px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .room-dots { display: flex; }
    .room-image { height: 220px; }

    .footer {
        padding: 1.35rem 16px calc(1.35rem + var(--safe-bottom));
    }

    .footer-note { font-size: 0.78rem; margin-bottom: 0.45rem; line-height: 1.45; }
    .copyright { font-size: 0.72rem; margin-bottom: 1rem; }
    .footer-links { gap: 0.4rem 0.75rem; }
    .footer-links a { font-size: 0.74rem; }
    .footer-powered { font-size: 0.62rem; margin-top: 0.85rem; }
}

@media (max-width: 380px) {
    :root { --nav-h: calc(2.85rem + var(--safe-top)); }
    .nav-brand { font-size: 0.97rem; }
    .hero-content h1 { font-size: 1.5rem; }
    .price-amount { font-size: 1.05rem; }
}

@media (hover: hover) {
    .menu-item:hover { transform: translateY(-4px); }
}

@media (hover: none) {
    .menu-item:hover { transform: none; }
    .room-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .nav-menu { transition: none; }
}

html { scroll-behavior: smooth; font-size: 17px; }
