/* ============================================
   LUMEN HOTEL — Main Stylesheet
   Soft, elegant, 4-star feel
   ============================================ */

/* ---- Variables ---- */
:root {
    --cream:       #F7F3EC;
    --cream-dark:  #EDE8DF;
    --gold:        #C9A96E;
    --gold-light:  #E8D5B0;
    --gold-dark:   #A07840;
    --navy:        #1E2B3A;
    --navy-light:  #2C3E50;
    --sage:        #8B9E8E;
    --white:       #FFFFFF;
    --text:        #2C2C2C;
    --text-light:  #6B6B6B;
    --border:      #E2DAD0;
    --shadow:      0 4px 30px rgba(0,0,0,0.07);
    --shadow-md:   0 8px 40px rgba(0,0,0,0.12);
    --radius:      6px;
    --radius-lg:   12px;
    --transition:  0.3s ease;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Lato', sans-serif;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section { padding: 100px 0; }
.bg-cream { background: var(--cream); }

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

.eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    padding: 13px 34px;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-light {
    display: inline-block;
    padding: 13px 34px;
    border: 1.5px solid rgba(255,255,255,0.8);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-light:hover { background: var(--white); color: var(--navy); }

.btn-room {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    margin-top: 16px;
    transition: all var(--transition);
}
.btn-room:hover { background: var(--gold); color: var(--white); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(30, 43, 58, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
}
.nav-logo .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

.nav-book {
    background: var(--gold);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius);
    transition: background var(--transition) !important;
}
.nav-book:hover { background: var(--gold-dark) !important; }

.lang-switcher {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.lang-btn {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    padding: 4px 7px;
    border-radius: 3px;
    transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 20, 30, 0.35) 0%,
        rgba(15, 20, 30, 0.55) 50%,
        rgba(15, 20, 30, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-stars {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.hero-desc {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BOOKING BAR
   ============================================ */
#booking-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    z-index: 10;
}

.booking-bar-inner {
    display: flex;
    align-items: stretch;
    min-height: 72px;
}

.bb-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 24px;
}
.bb-field label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.bb-field input, .bb-field select {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    width: 100%;
}
.bb-field select option { background: var(--navy); color: var(--white); }

.bb-sep {
    width: 1px;
    background: rgba(255,255,255,0.12);
    margin: 12px 0;
}

.btn-book-bar {
    padding: 0 36px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: background var(--transition);
    min-height: 72px;
}
.btn-book-bar:hover { background: var(--gold-dark); }

/* ============================================
   STORY SECTION
   ============================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-imgs {
    position: relative;
}
.story-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.story-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}
.story-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--white);
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.badge-big { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.badge-small { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.story-text-block { padding-left: 20px; }
.story-text-block p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1rem;
}
.story-text-block em { color: var(--gold-dark); font-style: italic; }

.story-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { flex: 1; text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}
.stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}
.stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ============================================
   ROOMS
   ============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.room-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.room-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.05); }

.suite-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.room-body {
    padding: 24px;
}
.room-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.room-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.room-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}
.room-icons span {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--gold-dark);
}

.room-card-suite { border: 1.5px solid var(--gold-light); }

/* ============================================
   PROXIMITY BANNER
   ============================================ */
#proximity {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}
.prox-bg { position: absolute; inset: 0; }
.prox-img { width: 100%; height: 100%; object-fit: cover; }
.prox-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,25,40,0.78) 0%, rgba(30,43,58,0.85) 100%);
}
.prox-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto;
}
.prox-cross {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    display: block;
    opacity: 0.9;
}
.prox-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}
.prox-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.8;
}

/* ============================================
   RESTAURANT
   ============================================ */
.rest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.rest-text .section-title { margin-top: 0; }
.rest-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.rest-features {
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.rf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}
.rf-item i { color: var(--gold); width: 18px; text-align: center; }

.rest-imgs { position: relative; }
.rest-img-main {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.rest-img-sec {
    position: absolute;
    bottom: -30px; left: -24px;
    width: 180px; height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

/* ============================================
   GROUPS
   ============================================ */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.group-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 3px solid transparent;
}
.group-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}
.group-icon {
    width: 64px; height: 64px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--gold);
}
.group-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.group-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
}
.score-big {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}
.score-stars-row {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}
.score-base {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border-left: 3px solid var(--gold-light);
    transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 0.1em; }
.review-card p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}
.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-author strong { font-size: 0.88rem; color: var(--navy); }
.review-author span { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   AMENITIES
   ============================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}
.amen-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.amen-item:hover { transform: translateY(-3px); }
.amen-item i { font-size: 1.4rem; color: var(--gold); }
.amen-item span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
#footer { background: var(--navy); color: rgba(255,255,255,0.75); }

.footer-top { padding: 70px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.footer-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 0.08em;
    font-weight: 600;
}
.footer-logo .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-transform: uppercase;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.1);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-list li i { color: var(--gold); width: 14px; flex-shrink: 0; margin-top: 3px; }

.footer-langs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.flang-btn {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    font-weight: 700;
    transition: all var(--transition);
    text-align: left;
}
.flang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-light); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
    .groups-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-imgs { max-width: 540px; margin: 0 auto; }
    .story-text-block { padding-left: 0; }
    .rest-grid { grid-template-columns: 1fr; gap: 50px; }
    .rest-imgs { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 6px;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 12px 16px; border-radius: var(--radius); }

    .lang-switcher { display: none; }
    .nav-toggle { display: flex; }

    .booking-bar-inner { flex-direction: column; }
    .bb-sep { width: 100%; height: 1px; margin: 0; }
    .btn-book-bar { min-height: 56px; }

    .story-img-secondary { display: none; }
    .story-badge { left: 10px; }

    .rest-img-sec { display: none; }

    .rooms-grid { grid-template-columns: 1fr; }
    .groups-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .rest-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .story-stats { flex-direction: column; gap: 16px; }
    .stat-div { display: none; }
}
