/* ===== VARIABLES ===== */
:root {
    --gold: #c9a962;
    --gold-dark: #b8944a;
    --navy: #1a252f;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --radius: 8px;
    --header-height: 72px;
    --demo-banner-height: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
section { padding: 50px 0; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201,169,98,0.14);
    color: var(--gold-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gallery,
#availability,
#faq,
#location,
#reviews,
#booking-availability {
    scroll-margin-top: calc(var(--header-height) + var(--demo-banner-height) + 24px);
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
    background: var(--white); box-shadow: var(--shadow);
    padding: 12px 15px;
}
.demo-full-site .header { top: var(--demo-banner-height); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.logo span { color: var(--gold); }

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid rgba(28,39,53,0.16);
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(28,39,53,0.08);
}
.nav-toggle__text {
    line-height: 1;
}
.nav-toggle__icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nav-toggle__icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--dark); transition: 0.3s;
}

/* Nav Menu */
.nav {
    position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px;
    height: 100vh; background: var(--white); z-index: 1004;
    padding: 60px 20px 30px; transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.demo-full-site .nav {
    top: var(--demo-banner-height);
    height: calc(100vh - var(--demo-banner-height));
}
.nav.active { left: 0; }
.nav-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 1001;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.demo-full-site .nav-overlay { top: var(--demo-banner-height); }
.nav-overlay.active { opacity: 1; visibility: visible; }
.nav-close {
    position: absolute; top: 15px; right: 15px;
    font-size: 1.5rem; color: var(--text-light);
}
.nav a,
.nav-dropdown-toggle {
    display: block; padding: 12px 0; font-size: 1rem;
    border-bottom: 1px solid #eee; color: var(--text);
    width: 100%; text-align: left;
}
.nav a:hover, .nav a.active, .nav-dropdown-toggle:hover { color: var(--gold); }
.nav-dropdown-toggle {
    position: relative;
    font-weight: 500;
}
.nav-dropdown-toggle::after {
    content: "▾";
    float: right;
    color: var(--gold);
}
.nav-dropdown-menu {
    display: none;
    padding: 4px 0 8px 14px;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* Lang Switch */
.lang-switch {
    display: flex; gap: 5px;
}
.lang-switch button {
    padding: 4px 8px; font-size: 0.75rem; font-weight: 600;
    border-radius: 4px; color: var(--text-light);
}
.lang-switch button.active {
    background: var(--gold); color: var(--white);
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 15px 40px; text-align: center; color: var(--white);
    background: url('../images/1_смарфтфон.webp') center/cover no-repeat;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 { font-size: 2.2rem; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1rem; margin-bottom: 30px; opacity: 0.95; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
.hero .booking-search {
    max-width: 980px;
    margin: 0 auto;
    color: var(--text);
    text-align: left;
    overflow: visible;
}
.booking-search .btn {
    height: 44px;
    padding: 0 24px;
    white-space: nowrap;
}

/* ===== BOOKING FORM ===== */
.booking-form {
    background: var(--white); padding: 20px 15px; border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; gap: 12px;
}
.booking-occupancy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-light); font-weight: 600;
}
.form-group input, .form-group select {
    width: 100%; height: 44px; padding: 0 12px;
    border: 1px solid #ddd; border-radius: var(--radius);
    font-size: 0.95rem; background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group__hint {
    display: block;
    margin-top: 4px;
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.35;
}
.guest-picker-group {
    position: relative;
    overflow: visible;
    z-index: 4;
}
.guest-picker-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    appearance: none;
}
.guest-picker-toggle:hover,
.guest-picker-toggle:focus-visible {
    border-color: var(--gold);
    outline: none;
}
.guest-picker-toggle__summary {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.guest-picker-toggle__icon {
    margin-left: 12px;
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.18s ease;
}
.guest-picker-toggle[aria-expanded="true"] .guest-picker-toggle__icon {
    transform: rotate(180deg);
}
.guest-picker-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 30px));
    padding: 16px;
    border: 1px solid rgba(28,39,53,0.12);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(28,39,53,0.18);
    display: grid;
    gap: 14px;
    z-index: 80;
}
.guest-picker-panel[hidden] {
    display: none;
}
.guest-picker-panel__header {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.guest-picker-panel__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.guest-picker-panel__row strong {
    display: block;
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}
.guest-picker-panel__row small {
    display: block;
    margin-top: 4px;
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.35;
}
.guest-stepper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 126px;
    padding: 4px 8px;
    border: 1px solid #dcd8d0;
    border-radius: 12px;
    background: #fff;
}
.guest-stepper__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    background: rgba(201,169,98,0.14);
    color: var(--gold-dark);
    font: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    appearance: none;
}
.guest-stepper__btn:hover,
.guest-stepper__btn:focus-visible {
    background: rgba(201,169,98,0.22);
    outline: none;
}
.guest-stepper__value {
    min-width: 20px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}
.guest-picker-panel__done {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
}
.btn {
    display: inline-block; width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); font-size: 1rem; font-weight: 600;
    border-radius: var(--radius); text-align: center;
    transition: box-shadow 0.3s;
}
.btn:hover { box-shadow: 0 5px 20px rgba(201,169,98,0.4); }
.btn-outline {
    background: transparent; border: 2px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ===== PROMO BANNER ===== */
.promo-banner {
    display: none;
}
.demo-notice {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1006;
    background: rgba(16,42,67,0.92); color: var(--white);
    padding: 10px 14px 12px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(4,17,30,0.18);
}
.demo-notice-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.demo-notice-text {
    max-width: 560px; margin: 0; font-size: 0.9rem;
    font-weight: 700; line-height: 1.3; text-align: left;
}
.demo-notice-actions {
    display: flex; align-items: center; gap: 8px; flex: 0 0 auto;
}
.demo-notice-back-mobile,
.demo-notice-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 0 12px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 700;
}
.demo-notice-back-mobile {
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}
.demo-notice-toggle {
    color: var(--gold);
    background: rgba(255,255,255,0.1);
}
.demo-notice-links {
    display: none;
    padding-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.demo-notice-full.is-open .demo-notice-links { display: grid; }
.demo-notice a,
.demo-notice-current {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 10px 12px; border-radius: 14px;
    white-space: normal; line-height: 1.25; text-align: center;
}
.demo-notice a {
    color: var(--gold); font-weight: 700; text-decoration: none;
    background: rgba(255,255,255,0.08);
}
.demo-notice-current {
    color: var(--white); border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
}
.demo-notice-desktop-back { display: none; }
.demo-notice-cta { grid-column: 1 / -1; }
.demo-full-site .demo-notice + .hero {
    padding-top: calc(var(--header-height) + var(--demo-banner-height) + 28px);
}
.demo-full-site .demo-notice + section:not(.hero) {
    padding-top: calc(var(--header-height) + var(--demo-banner-height) + 52px) !important;
}

/* ===== SECTION HEADERS ===== */
.section-title {
    text-align: center; margin-bottom: 35px;
}
.section-title h2 { color: var(--dark); margin-bottom: 10px; }
.section-title h2::after {
    content: ''; display: block; width: 50px; height: 3px;
    background: var(--gold); margin: 12px auto 0;
}
.section-title p { color: var(--text-light); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.benefit-card {
    background: var(--white); padding: 25px 20px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center;
    border: 1px solid #f0f0f0;
}
.benefit-icon {
    width: 60px; height: 60px; margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.benefit-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== ROOMS GRID ===== */
.rooms-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.room-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
}
.room-card img { width: 100%; height: 200px; object-fit: cover; }
.room-info { padding: 20px; }
.room-info h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.room-info .price {
    font-size: 1.3rem; color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.room-info .price span { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }
.room-amenities { margin-bottom: 15px; }
.room-amenities li {
    padding: 5px 0; font-size: 0.85rem; color: var(--text-light);
}
.room-amenities li::before { content: "✓ "; color: var(--gold); font-weight: bold; }

/* ===== AVAILABILITY ===== */
.availability-board {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}
.availability-search {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
.availability-search div {
    padding: 12px;
    border: 1px solid #e6e1d6;
    border-radius: var(--radius);
}
.availability-search span {
    display: block;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.availability-search strong {
    display: block;
    color: var(--dark);
    margin-top: 3px;
}
.availability-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,239,0.92)),
        radial-gradient(circle at 100% 0%, rgba(201,169,98,0.24), transparent 32%);
    box-shadow: var(--shadow);
}
.availability-teaser-copy h3 {
    color: var(--dark);
    font-size: 1.22rem;
    margin-bottom: 6px;
}
.availability-teaser-copy p {
    color: var(--text-light);
    margin: 0;
}
.availability-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.availability-mini div {
    padding: 12px;
    border: 1px solid #e6e1d6;
    border-radius: 10px;
    background: var(--white);
}
.availability-mini span {
    display: block;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.availability-mini strong {
    display: block;
    color: var(--dark);
    margin-top: 3px;
}
.availability-teaser-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.availability-teaser-status span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f6f1e6;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 800;
}
.availability-teaser-status span:first-child {
    background: rgba(201,169,98,0.18);
}
.booking-availability {
    margin-bottom: 32px;
}
.availability-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.rate-calendar,
.availability-results {
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 14px;
}
.rate-calendar-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.rate-calendar-top h3,
.availability-results h3 {
    color: var(--dark);
    font-size: 1.15rem;
}
.rate-calendar-top span {
    color: var(--text-light);
    font-size: 0.82rem;
    text-align: right;
}
.calendar-weekdays,
.rate-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(74px, 1fr));
    gap: 6px;
}
.calendar-weekdays {
    min-width: 560px;
    margin-bottom: 6px;
    color: var(--text-light);
    font-size: 0.74rem;
    font-weight: 800;
    text-align: center;
}
.rate-calendar {
    overflow-x: auto;
}
.rate-grid {
    min-width: 560px;
}
.rate-day {
    min-height: 74px;
    padding: 8px;
    border: 1px solid #e8e1d2;
    border-radius: 6px;
    background: #fffdf8;
}
.rate-day b,
.rate-day span,
.rate-day em {
    display: block;
}
.rate-day b {
    color: var(--dark);
    font-size: 0.94rem;
}
.rate-day span {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 8px;
}
.rate-day em {
    color: var(--text-light);
    font-size: 0.68rem;
    font-style: normal;
    margin-top: 3px;
}
.rate-day.is-selected {
    border-color: var(--gold);
    background: rgba(201,169,98,0.16);
}
.rate-day.is-low {
    border-color: var(--gold);
}
.rate-day.is-closed,
.rate-day.is-booked {
    background: #f3f3f3;
    opacity: 0.76;
}
.rate-day.is-muted {
    background: #f8f9fa;
}
.availability-results {
    display: grid;
    gap: 12px;
    align-content: start;
}
.result-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background: var(--white);
}
.result-card strong,
.result-card span,
.result-card b {
    display: block;
}
.result-card strong { color: var(--dark); }
.result-card span {
    color: var(--text-light);
    font-size: 0.86rem;
}
.result-card b {
    color: var(--gold);
    font-size: 1.05rem;
}
.result-card small {
    color: var(--text-light);
    font-size: 0.76rem;
    font-weight: 500;
}
.result-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--gold);
    color: var(--white);
    font-weight: 800;
}
.result-card.is-unavailable {
    background: #f8f9fa;
}
.availability-note {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--navy);
    color: var(--white);
}
.gallery-section .section-title h2 { color: var(--white); }
.gallery-section .section-title p { color: rgba(255,255,255,0.72); }
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    margin: 0;
    border-radius: var(--radius);
    background: #101820;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-item figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(16,24,32,0.68);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    backdrop-filter: blur(8px);
}

/* ===== SERVICES / UPSELL ===== */
.services-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.service-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.service-card img {
    width: 100%; height: auto; display: block;
}
.service-card img.mobile { display: none; }
.service-card .service-content {
    padding: 20px;
}
.service-card h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.service-card .price { font-size: 1.2rem; color: var(--gold); font-weight: 700; }

/* ===== OFFERS ===== */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.offer-card .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.offer-period {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.offer-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}
.offer-list li + li { margin-top: 6px; }
.offer-list li::marker { color: var(--gold); }
.offer-note {
    color: var(--text-light);
    font-size: 0.86rem;
    font-weight: 600;
}
.offer-card .btn {
    width: 100%;
    max-width: 240px;
}

/* ===== BOOKING OFFER ===== */
.booking-offer {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,239,0.92)),
        radial-gradient(circle at 100% 0%, rgba(201,169,98,0.18), transparent 34%);
    box-shadow: var(--shadow);
}
.booking-offer__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-offer__title {
    margin: 0;
    color: var(--dark);
    font-size: 1.15rem;
}
.booking-offer__text {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}
.booking-offer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.booking-offer .btn {
    width: auto;
}

/* ===== BOOKING TRUST ===== */
.booking-trust {
    margin: 0 auto 28px;
    padding: 18px;
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(251,247,239,0.95)),
        radial-gradient(circle at 100% 0%, rgba(201,169,98,0.14), transparent 30%);
    box-shadow: var(--shadow);
}
.booking-trust__header {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.booking-trust__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-trust__header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.15rem;
}
.booking-trust__header p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}
.booking-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.booking-trust-item {
    padding: 14px;
    border: 1px solid #eadfca;
    border-radius: 8px;
    background: rgba(255,255,255,0.84);
}
.booking-trust-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 0.96rem;
}
.booking-trust-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.45;
}
.booking-trust-direct {
    margin-top: 14px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(201,169,98,0.08);
    border: 1px solid rgba(201,169,98,0.22);
}
.booking-trust-direct__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-trust-direct p {
    margin: 8px 0 0;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}
.booking-occupancy-note {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.45;
}

.calendar-demo {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
}
.calendar-demo__header {
    display: grid;
    gap: 8px;
}
.calendar-demo__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.calendar-demo__header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.18rem;
}
.calendar-demo__header p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}
.calendar-demo__monthline {
    display: flex;
    align-items: center;
}
.calendar-demo__monthline span {
    color: var(--text-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.calendar-demo__scroll {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-gutter: stable;
}
.calendar-demo__table {
    display: grid;
    grid-template-columns: minmax(170px, 220px) repeat(16, 42px);
    gap: 5px;
    width: max-content;
    min-width: 922px;
}
.calendar-demo__roomhead,
.calendar-demo__roomname,
.calendar-demo__dayhead,
.calendar-demo__cell {
    border-radius: 8px;
    border: 1px solid #e6dfd1;
}
.calendar-demo__roomhead {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    background: #f5eddd;
    color: var(--dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: sticky;
    left: 0;
    z-index: 5;
    box-shadow: 10px 0 18px -16px rgba(28,39,53,0.45);
    background-clip: padding-box;
}
.calendar-demo__dayhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 6px 3px;
    background: var(--white);
    text-align: center;
}
.calendar-demo__dayhead b {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1;
}
.calendar-demo__dayhead span {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.calendar-demo__dayhead.is-past-col {
    border-color: #ddd4c5;
    background: linear-gradient(180deg, rgba(241,236,227,0.98), rgba(234,227,215,0.98));
    color: #a89b88;
    opacity: 0.94;
}
.calendar-demo__dayhead.is-past-col b,
.calendar-demo__dayhead.is-past-col span {
    color: #a89b88;
}
.calendar-demo__roomname {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 12px;
    background: #fffefa;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    position: sticky;
    left: 0;
    z-index: 3;
    box-shadow: 10px 0 18px -16px rgba(28,39,53,0.35);
    background-clip: padding-box;
}
.calendar-demo__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    background: #fffdf8;
    position: relative;
    overflow: hidden;
}
.calendar-demo__cell.is-open {
    border-color: rgba(98,149,88,0.55);
    background: linear-gradient(180deg, rgba(139,187,130,0.28), rgba(139,187,130,0.14));
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.calendar-demo__cell.is-open:hover,
.calendar-demo__cell.is-open:focus-visible {
    border-color: rgba(98,149,88,0.85);
    background: linear-gradient(180deg, rgba(139,187,130,0.38), rgba(139,187,130,0.2));
    box-shadow: inset 0 0 0 1px rgba(98,149,88,0.2);
    transform: translateY(-1px);
    outline: none;
}
.calendar-demo__cell.is-muted {
    background: #f7f7f7;
}
.calendar-demo__cell.is-past {
    border-color: #d8d0c1;
    background:
        linear-gradient(180deg, rgba(242,239,232,0.98), rgba(235,229,219,0.98)),
        repeating-linear-gradient(135deg, rgba(189,180,166,0.08) 0 8px, rgba(255,255,255,0) 8px 16px);
    color: #a59a87;
    cursor: not-allowed;
    opacity: 0.95;
}
.calendar-demo__cell.is-booked {
    border-color: #ff5a52;
    background: #ff5a52;
}
.calendar-demo__cell.is-picked {
    border-color: rgba(57,132,79,0.86);
    background: linear-gradient(180deg, #65b975, #3f9658);
    box-shadow: inset 0 0 0 1px rgba(20,94,44,0.18);
}
.calendar-demo__cell.is-open.is-picked:hover,
.calendar-demo__cell.is-open.is-picked:focus-visible {
    border-color: rgba(57,132,79,0.86);
    background: linear-gradient(180deg, #65b975, #3f9658);
    box-shadow: inset 0 0 0 1px rgba(20,94,44,0.18);
    transform: none;
}
.calendar-demo__cell.is-picked::before {
    content: "✓";
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}
.calendar-demo__cell.is-open::after,
.calendar-demo__cell.is-past::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.calendar-demo__cell.is-open::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6e9f63;
    box-shadow: 0 0 0 4px rgba(110,159,99,0.12);
}
.calendar-demo__cell.is-past::after {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #b9ae9e;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.calendar-demo__cell.is-picked::after {
    display: none;
}
.calendar-demo__roomname.is-picked-row {
    background: #fff4dc;
    border-color: rgba(201,169,98,0.62);
    z-index: 4;
}
.calendar-demo__dayhead.is-picked-col {
    border-color: rgba(201,169,98,0.62);
    background: rgba(201,169,98,0.16);
}
.calendar-demo__cell.is-booked span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}
.calendar-demo__selection {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(201,169,98,0.24);
    border-radius: 10px;
    background: rgba(201,169,98,0.12);
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}
.calendar-demo__selection.is-empty {
    background: rgba(255,255,255,0.86);
    color: var(--text-light);
    font-weight: 500;
}
.calendar-demo__note {
    margin: 0;
    color: var(--text-light);
    font-size: 0.83rem;
    line-height: 1.45;
}

/* ===== OFFER CALENDAR ===== */
.offer-calendar {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.97), rgba(251,246,236,0.95)),
        radial-gradient(circle at 100% 0%, rgba(201,169,98,0.16), transparent 34%);
    box-shadow: var(--shadow);
}
.offer-calendar__header {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.offer-calendar__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.offer-calendar__header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
}
.offer-calendar__header p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}
.offer-calendar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.offer-calendar-card {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #eadfca;
    background: rgba(255,255,255,0.82);
}
.offer-calendar-card.is-active {
    border-color: rgba(201,169,98,0.4);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,247,238,0.95));
}
.offer-calendar-card.is-break {
    border-style: dashed;
    background: rgba(248,249,250,0.86);
}
.offer-calendar-card__month {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.offer-calendar-card strong {
    color: var(--gold-dark);
    font-size: 1rem;
}
.offer-calendar-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.45;
}
.offer-calendar-note {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 0.83rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .service-card img.desktop { display: none; }
    .service-card img.mobile { display: block; }
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.faq-item {
    border: 1px solid #e8e1d2;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.3rem;
    line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
    padding: 0 18px 18px;
    color: var(--text-light);
    font-size: 0.94rem;
    margin: 0;
}

/* ===== LOCATION ===== */
.location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.location-info {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}
.location-address {
    color: var(--dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.location-address-text {
    color: var(--text-light);
    margin-bottom: 16px;
}
.location-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.location-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
}
.location-actions a:nth-child(2) {
    background: var(--gold);
}
.location-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.location-service-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--light);
    color: var(--dark);
    font-size: 0.84rem;
    font-weight: 800;
}
.location-service-list span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}
.location-map-preview {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #dfe4dc;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at 47% 47%, rgba(201,169,98,0.28) 0 13px, transparent 14px),
        radial-gradient(circle at 23% 27%, rgba(26,37,47,0.12) 0 3px, transparent 4px),
        repeating-linear-gradient(0deg, rgba(26,37,47,0.06) 0 1px, transparent 1px 38px),
        repeating-linear-gradient(90deg, rgba(26,37,47,0.06) 0 1px, transparent 1px 38px),
        #edf0ea;
}
.location-map-preview::before {
    content: "";
    position: absolute;
    inset: 30px;
    border: 2px solid rgba(201,169,98,0.42);
    border-radius: 34px 84px 42px 72px;
    transform: rotate(-8deg);
}
.location-map-preview::after {
    content: "";
    position: absolute;
    left: 8%;
    top: 55%;
    width: 86%;
    height: 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 -56px 0 rgba(255,255,255,0.44), 0 58px 0 rgba(255,255,255,0.38);
    transform: rotate(-9deg);
}
.map-pin {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    font-size: 0.82rem;
    font-weight: 900;
}
.map-pin::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}
.hotel-pin {
    top: 45%;
    left: 47%;
    transform: translate(-50%, -50%);
    background: var(--navy);
    color: var(--white);
}
.center-pin { top: 19%; left: 14%; }
.airport-pin { right: 12%; bottom: 17%; }
.cafe-pin { top: 28%; right: 14%; }
.map-route {
    position: absolute;
    z-index: 1;
    height: 0;
    border-top: 3px dashed var(--gold);
    opacity: 0.84;
    transform-origin: left center;
}
.map-route-center {
    top: 43%;
    left: 25%;
    width: 25%;
    transform: rotate(29deg);
}
.map-route-airport {
    top: 55%;
    left: 50%;
    width: 34%;
    transform: rotate(24deg);
}
.location-distance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}
.location-distance-card {
    padding: 16px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}
.location-distance-card strong,
.location-distance-card span {
    display: block;
}
.location-distance-card strong {
    color: var(--dark);
    margin-bottom: 4px;
}
.location-distance-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}
.location-points {
    display: grid;
    gap: 12px;
}
.location-points div {
    padding: 12px 0;
    border-top: 1px solid #eee;
}
.location-points strong,
.location-points span {
    display: block;
}
.location-points strong { color: var(--dark); margin-bottom: 3px; }
.location-points span { color: var(--text-light); font-size: 0.92rem; }
.location-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--navy);
}
.location-visual img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}
.location-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,37,47,0.05), rgba(26,37,47,0.72));
}
.location-route-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    width: min(320px, calc(100% - 36px));
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.route-title {
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 12px;
}
.route-line {
    display: grid;
    grid-template-columns: 12px 1fr 12px 1fr 12px;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}
.route-line span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
}
.route-line span:first-child {
    background: var(--navy);
}
.route-line i {
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 13px);
}
.route-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.route-items strong,
.route-items span {
    display: block;
}
.route-items strong {
    color: var(--dark);
    font-size: 0.88rem;
}
.route-items span {
    color: var(--text-light);
    font-size: 0.8rem;
}
.location-photo-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    max-width: calc(100% - 36px);
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(26,37,47,0.82);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

/* ===== LOYALTY ===== */
.loyalty-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.loyalty-card {
    background: var(--white); padding: 30px 20px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center;
    border-top: 4px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}
.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.loyalty-card.silver { border-top-color: #bdc3c7; }
.loyalty-card.gold { border-top-color: var(--gold); }
.loyalty-card.platinum { border-top-color: var(--dark); }
.loyalty-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--dark); }
.loyalty-card .discount {
    font-size: 2.5rem; font-weight: 700; color: var(--gold); margin-bottom: 15px;
}
.loyalty-card ul { text-align: left; margin-bottom: 20px; }
.loyalty-card li { padding: 8px 0; font-size: 0.9rem; color: var(--text-light); border-bottom: 1px solid #eee; }
.loyalty-card li::before { content: "✓ "; color: var(--gold); font-weight: bold; }

.loyalty-lead {
    padding: 0 0 28px;
}
.loyalty-lead__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(26,37,47,0.98), rgba(44,62,80,0.96));
    color: var(--white);
    box-shadow: var(--shadow);
}
.loyalty-lead__copy h2 {
    color: var(--white);
    margin: 10px 0 12px;
}
.loyalty-lead__copy,
.loyalty-lead-form {
    min-width: 0;
}
.loyalty-lead__copy p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0;
}
.loyalty-lead__list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.loyalty-lead__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
}
.loyalty-lead__list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 800;
    flex: 0 0 auto;
}
.loyalty-lead-form {
    width: 100%;
    background: rgba(255,255,255,0.98);
    padding: 22px;
    border-radius: var(--radius);
    color: var(--text);
}
.loyalty-lead-form .btn { width: 100%; }
.loyalty-lead__checkbox {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-light);
    cursor: pointer;
}
.loyalty-lead__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex: 0 0 auto;
}
.loyalty-lead__checkbox span,
.booking-optin__check span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}
.loyalty-lead__note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-light);
}
.loyalty-inline-cta {
    padding: 10px 0 28px;
    background: var(--light);
}
.loyalty-inline-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}
.loyalty-inline-cta__inner h2 {
    margin: 10px 0 10px;
}
.loyalty-inline-cta__inner p {
    margin-bottom: 0;
    color: var(--text-light);
}
.loyalty-inline-cta__btn {
    width: 100%;
    align-self: flex-start;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid; grid-template-columns: 1fr; gap: 15px;
}
.review-card {
    background: var(--white); padding: 20px; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.review-card .date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 8px; }
.review-card .name { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.review-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr; gap: 30px;
}
.contact-form {
    display: flex; flex-direction: column; gap: 12px;
}
.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd;
    border-radius: var(--radius); font-size: 0.95rem;
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
    padding: 0;
    border: 1px solid #aaa;
    background: var(--white);
}
.contact-form .loyalty-lead__checkbox input[type="checkbox"],
.contact-form .booking-optin__check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.booking-optin {
    padding: 14px 16px;
    border-radius: var(--radius);
    background: #f3f6f8;
}
.booking-optin__check {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.45;
    color: var(--text);
    font-size: 0.92rem;
}
.booking-optin__check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex: 0 0 auto;
}
.booking-optin__note {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--text-light);
}
.contact-info li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid #eee;
}
.contact-info li span:first-child { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy); color: var(--white); padding: 40px 15px 20px;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 25px;
    margin-bottom: 30px;
}
.footer h4 { font-size: 1rem; color: var(--gold); margin-bottom: 12px; }
.footer p, .footer a {
    color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; display: block;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); font-size: 0.85rem;
}

/* ===== STICKY BOOKING BAR (Mobile) ===== */
.sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.98); padding: 12px 14px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12); z-index: 999;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; border-top: 1px solid #e5e5e5;
}
.sticky-bar .price { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.sticky-bar .price span { font-size: 0.8rem; color: var(--text-light); font-weight: 400; }
.sticky-bar .btn { width: auto; padding: 12px 24px; }
.sticky-message {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    min-width: 0;
}
.sticky-message span {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
}
.sticky-message span:first-child {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
}

/* ===== PROMO POPUP ===== */
.promo-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.promo-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.promo-popup__media {
    height: 132px;
    background: linear-gradient(135deg, rgba(26,37,47,0.12), rgba(201,169,98,0.14));
    overflow: hidden;
}
.promo-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-popup__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 18px;
}
.promo-popup__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(201,169,98,0.16);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.promo-popup__title {
    margin: 0;
    color: var(--dark);
    font-size: 1.08rem;
    line-height: 1.25;
}
.promo-popup__desc {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}
.promo-popup__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.promo-popup__btn {
    width: auto;
    min-width: 168px;
    padding: 12px 18px;
}
.promo-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: var(--dark);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.promo-popup__close:hover { color: var(--gold); }

@media (max-width: 767px) {
    body.guest-picker-open .sticky-bar {
        display: none;
    }
    .guest-picker-panel {
        position: static;
        width: 100%;
        margin-top: 10px;
        transform: none;
    }
    .promo-popup__btn {
        width: 100%;
        min-width: 0;
    }
    .loyalty-lead__inner {
        display: flex;
        flex-direction: column;
    }
    .loyalty-lead__inner {
        padding: 20px 16px;
    }
    .loyalty-lead-form {
        padding: 18px 16px;
    }
    .loyalty-inline-cta__inner {
        padding: 20px 16px;
    }
    .booking-optin {
        padding: 12px 12px;
    }
    .calendar-demo__table {
        grid-template-columns: 122px repeat(16, 38px);
        min-width: 805px;
        gap: 4px;
    }
    .calendar-demo__roomhead,
    .calendar-demo__roomname {
        left: -1px;
        box-shadow: 8px 0 14px -12px rgba(28,39,53,0.7);
    }
    .calendar-demo__roomname {
        font-size: 0.86rem;
        padding: 9px 8px;
        word-break: break-word;
    }
    .calendar-demo__dayhead,
    .calendar-demo__cell {
        min-height: 36px;
    }
    .calendar-demo__dayhead b {
        font-size: 0.86rem;
    }
    .calendar-demo__dayhead span {
        font-size: 0.6rem;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.bg-light { background: var(--light); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== DESKTOP (min-width: 768px) ===== */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    section { padding: 70px 0; }

    .container { padding: 0 30px; }

    /* Header */
    .nav-toggle { display: none; }
    .nav {
        position: static; width: auto; height: auto;
        background: none; box-shadow: none;
        padding: 0; display: flex; gap: 25px;
    }
    .nav-close { display: none; }
    .nav-overlay { display: none; }
    .nav a,
    .nav-dropdown-toggle {
        padding: 0; border: none; font-size: 0.9rem; font-weight: 500;
        width: auto;
    }
    .nav a:hover, .nav-dropdown-toggle:hover { color: var(--gold); }
    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle::after { margin-left: 5px; float: none; }
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        padding: 8px;
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: 0 12px 30px rgba(0,0,0,0.14);
        border: 1px solid #eee;
        z-index: 1005;
    }
    .nav-dropdown-menu a {
        display: block;
        padding: 9px 10px;
        border-radius: 6px;
        white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: var(--light); }

    /* Hero */
    .hero {
        background-image: url('../images/1_десктоп.webp');
        padding: 100px 30px 60px;
    }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }

    /* Booking Form - horizontal */
    .booking-form {
        flex-direction: row; flex-wrap: wrap; align-items: flex-end;
        padding: 20px; gap: 15px;
    }
    .booking-form .form-group { flex: 1; min-width: 140px; }
    .booking-search {
        flex-wrap: nowrap;
    }
    .booking-search .form-group {
        flex: 1 1 0;
        min-width: 0;
    }
    .booking-search .guest-picker-group {
        flex: 1.15 1 0;
    }
    .booking-form .btn { width: auto; padding: 14px 30px; flex-shrink: 0; }
    .booking-search .btn {
        height: 44px;
        padding: 0 28px;
        min-width: 160px;
    }
    .booking-occupancy-grid { grid-template-columns: 1fr 1fr; }
    .guest-picker-panel {
        position: absolute;
        top: auto;
        bottom: calc(100% + 10px);
        left: 50%;
        right: auto;
        width: 320px;
        margin-top: 0;
        transform: translateX(-50%);
    }
    .booking-trust__header { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr); align-items: end; }
    .booking-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    /* Grids */
    .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .offers-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .offer-calendar__header { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr); align-items: end; }
    .offer-calendar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .rooms-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .availability-teaser { grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.75fr) minmax(210px, 0.85fr) auto; align-items: center; }
    .availability-teaser .btn { width: auto; white-space: nowrap; }
    .availability-search { grid-template-columns: 1fr 1fr 1fr auto; align-items: stretch; }
    .availability-search .btn { width: auto; min-width: 170px; display: inline-flex; align-items: center; justify-content: center; }
    .availability-content { grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr); }
    .calendar-demo__table { grid-template-columns: minmax(180px, 230px) repeat(16, 44px); min-width: 954px; }
    .result-card { grid-template-columns: 1fr auto; align-items: center; }
    .result-card a { grid-column: 1 / -1; }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 175px;
        grid-auto-flow: dense;
    }
    .gallery-item { min-height: 0; }
    .gallery-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-wide { grid-column: span 2; }
    .gallery-item:hover img { transform: scale(1.04); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .location-layout { grid-template-columns: 0.85fr 1.15fr; align-items: stretch; }
    .location-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location-distance-grid { grid-template-columns: repeat(3, 1fr); }
    .loyalty-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .loyalty-lead__inner { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); align-items: start; }
    .loyalty-inline-cta__inner { flex-direction: row; justify-content: space-between; align-items: center; }
    .loyalty-inline-cta__btn { width: auto; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }

}

@media (min-width: 768px) and (max-width: 1099px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px;
        height: 100vh; background: var(--white); z-index: 1004;
        padding: 60px 20px 30px; transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        display: block;
    }
    .nav.active { left: 0; }
    .nav-close { display: block; }
    .nav-overlay { display: block; }
    .nav a {
        display: block; padding: 12px 0; font-size: 1rem;
        border-bottom: 1px solid #eee; color: var(--text);
    }
    .nav-dropdown-toggle {
        display: block; padding: 12px 0; font-size: 1rem;
        border-bottom: 1px solid #eee; color: var(--text);
        width: 100%; text-align: left;
    }
    .nav-dropdown {
        position: static;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        padding: 4px 0 8px 14px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    .nav-dropdown-menu a {
        padding: 9px 0;
        white-space: normal;
    }
}

@media (min-width: 1100px) {
    :root { --demo-banner-height: 64px; }
    .nav-toggle { display: none; }
    .nav {
        position: static; width: auto; max-width: none; height: auto;
        background: none; box-shadow: none; padding: 0;
        display: flex; gap: 25px;
    }
    .demo-full-site .nav {
        top: auto;
        left: auto;
        height: auto;
    }
    .nav-close, .nav-overlay { display: none; }
    .nav a,
    .nav-dropdown-toggle {
        padding: 0; border: none; font-size: 0.9rem; font-weight: 500;
        width: auto;
    }
    .nav-dropdown { position: relative; }
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        padding: 8px;
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: 0 12px 30px rgba(0,0,0,0.14);
        border: 1px solid #eee;
        z-index: 1005;
    }
    .nav-dropdown-menu a {
        display: block;
        padding: 9px 10px;
        border-radius: 6px;
        white-space: nowrap;
    }
    .demo-notice {
        display: flex; align-items: center; justify-content: space-between;
        gap: 16px; padding: 12px 20px;
    }
    .demo-notice-actions { display: none; }
    .demo-notice-text { max-width: none; font-size: 0.95rem; }
    .demo-notice-links {
        display: flex !important;
        padding-top: 0;
        grid-template-columns: none;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
    .demo-notice-desktop-back { display: inline-flex; }
    .demo-notice-cta { grid-column: auto; }
}

/* ===== LARGE DESKTOP (min-width: 1024px) ===== */
@media (min-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .hero p { font-size: 1.3rem; }
    .room-card img { height: 250px; }
    .gallery-grid { grid-auto-rows: 190px; }
    .sticky-bar {
        left: auto; right: 18px; bottom: 18px; max-width: 390px;
        border: 1px solid #e5e5e5; border-radius: 12px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
    .promo-popup {
        left: 18px;
        right: auto;
        bottom: 18px;
        width: min(430px, calc(100vw - 36px));
        grid-template-columns: 140px minmax(0, 1fr);
    }
    .promo-popup__media {
        height: auto;
        min-height: 100%;
    }
    .promo-popup__content {
        padding: 18px 18px 20px;
    }
    .promo-popup__btn {
        min-width: 180px;
    }
}
