/* ==========================================================================
   Design System & Custom Properties
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #0d1117;       /* Deep Charcoal (Winter Night) */
    --color-bg-light: #f7f8fa;      /* Ice White / Light Grey */
    --color-bg-cream: #fcfbf7;     /* Warm Tatami Cream */
    --color-text-dark: #2c3539;     /* Deep slate for readability */
    --color-text-light: #f5f6f8;    /* Pure snow text */
    --color-text-muted: #8a99a8;    /* Muted grey */
    --color-gold: #c5a880;          /* Premium Champagne Gold */
    --color-gold-hover: #b4956d;    /* Deep gold on hover */
    --color-gold-light: #f5eedf;    /* Light gold background tint */
    --color-overlay: rgba(13, 17, 23, 0.45); /* Soft darken overlay */
    --color-overlay-dark: rgba(13, 17, 23, 0.85);

    /* Fonts */
    --font-serif: 'Noto Serif JP', serif;
    --font-english: 'Cinzel', serif;
    --font-sans: 'Montserrat', 'Noto Sans JP', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --border-radius: 4px; /* Subtle rounded corners for luxury feel */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-bg-cream);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

input, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.section-subtitle {
    display: block;
    font-family: var(--font-english);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
}

.section-title.text-white {
    color: var(--color-text-light);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-gold-hover);
    margin-bottom: 25px;
}

.body-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 2;
}

/* ==========================================================================
   Utility Classes & Layouts
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.max-w-800 {
    max-width: 800px;
}

.grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.grid-2col {
    grid-template-columns: 1fr 1fr;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.no-padding {
    padding: 0;
}

.text-center {
    text-align: center;
}

.mb-80 { margin-bottom: 80px; }
.mb-50 { margin-bottom: 50px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.mt-10 { margin-top: 10px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--color-gold);
    color: #fff;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.3);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 15px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-en {
    font-family: var(--font-english);
    font-size: 20px;
    letter-spacing: 0.25em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.logo-ja {
    font-family: var(--font-serif);
    font-size: 11px;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    margin-top: 5px;
    padding-left: 2px;
}

/* Nav Menu */
#nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 15px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #fff;
}

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

.btn-header {
    padding: 10px 24px;
    font-size: 13px;
}

/* Header States */
.header-transparent {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-scrolled {
    background-color: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Menu Button */
#menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

#menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
#mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#mobile-nav .mobile-link {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.1em;
}

#mobile-nav .mobile-link:hover {
    color: var(--color-gold);
}

#mobile-nav .btn {
    margin-top: 15px;
}

.mobile-nav-hidden {
    transform: translateY(-100%);
}

.mobile-nav-active {
    transform: translateY(0);
}

/* Mobile Menu Animation */
#menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

#menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section & Canvas Snow Animation
   ========================================================================== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05); /* Slight zoom for entrance parallax */
    animation: heroZoom 10s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 17, 23, 0.5) 0%,
        rgba(13, 17, 23, 0.3) 50%,
        rgba(13, 17, 23, 0.7) 100%
    );
    z-index: 1;
}

#snow-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Make sure users can click elements underneath */
}

.hero-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
    display: flex;
    justify-content: flex-start; /* Place text on the left to balance layout */
}

/* Vertical Slogan Layout */
.slogan-container {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slogan {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 40px;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.4em;
    font-weight: 300;
    height: 480px; /* Keep height constrained for layout */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-slogan .char-group {
    display: block;
    margin-left: 15px; /* Spacing between vertical columns */
}

.hero-sub {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.3em;
}

.scroll-text {
    opacity: 0.6;
    margin-top: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--color-gold);
    animation: scrollScroll 2s infinite ease-in-out;
}

@keyframes scrollScroll {
    0% { transform: translateY(-20px); }
    80% { transform: translateY(60px); }
    100% { transform: translateY(60px); }
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-text {
    padding-right: 40px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.decoration-gold {
    position: relative;
}

.decoration-gold::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   Rooms Section (Luxurious Layout)
   ========================================================================== */
.rooms-featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: #161b22;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.room-image-side {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.room-image-side .image-wrapper {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}

.room-image-side img {
    height: 100%;
}

.room-info-side {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.room-title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.room-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.room-features {
    margin-bottom: 35px;
}

.room-features li {
    font-size: 14px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon-gold {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

.room-price-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-bottom: 35px;
}

.price-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-english);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0 5px;
}

.price-tax {
    font-size: 12px;
    color: var(--color-text-light);
}

.room-btn {
    align-self: flex-start;
}

/* ==========================================================================
   Onsen & Dining Split Columns
   ========================================================================== */
.split-row {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.split-col {
    position: relative;
    width: 50%;
    display: flex;
    align-items: flex-end;
    padding: 80px;
    overflow: hidden;
    min-height: 600px;
}

.split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.split-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 17, 23, 0.2) 0%,
        rgba(13, 17, 23, 0.8) 100%
    );
    z-index: 2;
    transition: background 0.6s ease;
}

.split-content-overlay {
    position: relative;
    z-index: 3;
    max-width: 480px;
}

.split-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.split-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Split Hover Effects */
.split-col:hover .split-image {
    transform: scale(1.05);
}

.split-col:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(13, 17, 23, 0.1) 0%,
        rgba(13, 17, 23, 0.95) 100%
    );
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-card {
    background-color: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: var(--border-radius);
    background-color: #fff;
    outline: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.access-item h4 {
    font-size: 16px;
    color: var(--color-gold-hover);
    margin-bottom: 6px;
}

.access-item p {
    font-size: 14px;
    color: #4a5568;
}

/* Map Styling */
.access-map {
    height: 100%;
    min-height: 400px;
}

.map-placeholder-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #e5e9f0;
    background-image: radial-gradient(#d3dbe8 1px, transparent 0), radial-gradient(#d3dbe8 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.map-overlay {
    position: absolute;
    background-color: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    color: #fff;
    text-align: center;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-marker {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.marker-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.5);
}

.marker-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: markerPulse 2s infinite ease-out;
}

.map-hotel-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.map-hotel-address {
    font-size: 12px;
    color: var(--color-text-muted);
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-muted);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo .logo-en {
    font-size: 24px;
}

.footer-logo .logo-ja {
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.copyright {
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Sticky Booking Bar
   ========================================================================== */
#sticky-booking-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 900px;
    background-color: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Fully rounded bar */
    padding: 10px 30px 10px 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    z-index: 900;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-booking-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sticky-logo {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.25em;
}

.sticky-inputs {
    display: flex;
    gap: 30px;
}

.sticky-input-group {
    display: flex;
    flex-direction: column;
}

.sticky-input-group .input-label {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.sticky-input-group input,
.sticky-input-group select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.sticky-input-group select option {
    background-color: var(--color-bg-dark);
}

.sticky-btn {
    border-radius: 30px;
    padding: 10px 28px;
    font-size: 12px;
}

/* Visibility states for JS toggle */
#sticky-booking-bar.sticky-booking-visible {
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
#toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-gold);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.toast-title {
    font-size: 15px;
    font-weight: 600;
}

.toast-message {
    font-size: 12px;
    color: var(--color-text-muted);
}

.toast-hidden {
    transform: translateY(-50px);
    opacity: 0;
    pointer-events: none;
}

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

/* ==========================================================================
   Scroll-Reveal Entrance Animations
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.fade-up {
    transform: translateY(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        padding-right: 0;
    }

    .rooms-featured-grid {
        grid-template-columns: 1fr;
    }

    .room-image-side {
        min-height: 350px;
    }

    .room-info-side {
        padding: 40px;
    }

    .split-row {
        flex-direction: column;
        min-height: auto;
    }

    .split-col {
        width: 100%;
        min-height: 480px;
        padding: 50px;
    }

    #sticky-booking-bar {
        display: none; /* Hide sticky bar on tablets/mobiles to save screen space */
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .section-title {
        font-size: 32px;
    }

    #nav-menu, .header-cta {
        display: none; /* Hide links & desktop button */
    }

    #menu-toggle {
        display: flex; /* Show hamburger toggle */
    }

    .hero-slogan {
        font-size: 32px;
        height: 380px;
        letter-spacing: 0.3em;
    }

    .hero-slogan .char-group {
        margin-left: 10px;
    }

    .booking-card {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
