/* =============================================================
   Blackberry Hotel — дизайн-система «тёплый минимализм»
   ============================================================= */

/* ---------- 1. Токены ---------- */
:root {
    --ink: #1c1a17;
    --ink-2: #43403a;
    --ink-3: #7d776e;
    --paper: #fbf8f4;
    --paper-2: #f4ede4;
    --paper-3: #ece2d5;
    --line: #e3d9cb;
    --line-soft: #efe7dc;
    --accent: #b9784a;
    --accent-2: #d4a074;
    --accent-soft: #f7ece1;
    --deep: #16302b;
    --deep-2: #0f221f;
    --white: #fff;
    --ok: #2f7a56;
    --warn: #b8860b;
    --err: #b3452f;

    --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --wrap: 1240px;
    --gap: 28px;
    --radius: 4px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 2px rgba(28, 26, 23, .06), 0 6px 20px rgba(28, 26, 23, .05);
    --shadow-md: 0 2px 6px rgba(28, 26, 23, .07), 0 18px 44px rgba(28, 26, 23, .09);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-family: var(--font-display); font-weight: 500; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent-2); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.icon { width: 20px; height: 20px; flex: none; }
.icon-sm { width: 16px; height: 16px; flex: none; }

/* ---------- 3. Каркас ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 7vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--paper { background: var(--paper-2); }
.section--deep { background: var(--deep); color: #d8d2c7; }
.section--deep h2, .section--deep h3 { color: #fff; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head { max-width: 640px; margin: 0 auto clamp(32px, 4vw, 56px); text-align: center; }
.section-head p { color: var(--ink-3); margin: 0; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-block; margin-bottom: 14px;
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--accent); font-weight: 500;
}
.eyebrow::after { content: ""; display: block; width: 34px; height: 1px; margin-top: 10px; background: var(--accent); opacity: .55; }
.section-head .eyebrow::after { margin-left: auto; margin-right: auto; }
.section-head--left .eyebrow::after { margin-left: 0; }

.muted { color: var(--ink-3); }
.text-center { text-align: center; }

/* ---------- 4. Кнопки ---------- */
.btn {
    --btn-bg: var(--accent); --btn-fg: #fff; --btn-bd: var(--accent);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border: 1px solid var(--btn-bd); background: var(--btn-bg); color: var(--btn-fg);
    border-radius: 100px; font-size: .9rem; font-weight: 500; letter-spacing: .02em;
    cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(185, 120, 74, .25); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--accent); --btn-fg: var(--accent); box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .55); }
.btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--ink); box-shadow: none; }
.btn--dark { --btn-bg: var(--deep); --btn-fg: #fff; --btn-bd: var(--deep); }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--wide { width: 100%; }
.btn .icon { width: 18px; height: 18px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 500; font-size: .9rem; }
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- 5. Шапка ---------- */
.topbar {
    background: var(--deep); color: rgba(255, 255, 255, .72);
    font-size: .8rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; align-items: center; gap: 26px; min-height: 42px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__spacer { margin-left: auto; }
.topbar .icon-sm { opacity: .7; }

.header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(251, 248, 244, .92);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-soft);
    transition: background .3s, border-color .3s, box-shadow .3s;
}
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 78px; }
.logo { color: var(--ink); flex: none; }
.logo svg { width: 168px; height: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a {
    position: relative; font-size: .88rem; letter-spacing: .01em; color: var(--ink-2);
    padding: 6px 0; transition: color .2s;
}
.nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
    background: var(--accent); transition: right .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.burger {
    display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
}

.mobile-nav {
    position: fixed; inset: 0; z-index: 80; background: var(--paper);
    display: flex; flex-direction: column; padding: 24px;
    transform: translateY(-100%); transition: transform .4s var(--ease); overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-nav a.mobile-nav__link {
    font-family: var(--font-display); font-size: 1.6rem; color: var(--ink);
    padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; font-size: .9rem; }

/* ---------- 6. Герой ---------- */
.hero { position: relative; min-height: min(88vh, 780px); display: flex; align-items: flex-end; overflow: hidden; background: var(--deep-2); }
.hero__media { position: absolute; inset: 0; }
.hero__slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.06); transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 31, .5) 0%, rgba(15, 34, 31, .15) 35%, rgba(15, 34, 31, .82) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 150px 0 clamp(100px, 11vw, 175px); color: #fff; }
.hero h1 { color: #fff; max-width: 16ch; white-space: pre-line; text-shadow: 0 2px 30px rgba(0, 0, 0, .3); }
.hero__sub { max-width: 46ch; color: rgba(255, 255, 255, .82); font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__dots { position: absolute; right: 28px; bottom: 30px; z-index: 3; display: grid; gap: 10px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .7); background: none; cursor: pointer; padding: 0; }
.hero__dot.is-active { background: #fff; }

/* ---------- 7. Панель бронирования ---------- */
.bookbar { position: relative; z-index: 5; margin-top: -46px; }
.bookbar__box {
    background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 20px;
}
.bookbar form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 16px; align-items: end; }
.bookbar .field { display: grid; gap: 6px; }
.bookbar label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: #fff; outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--err); }
.field__error { color: var(--err); font-size: .8rem; }

/* ---------- 8. Блок «О нас» ---------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about__text p { max-width: 52ch; }
.about__gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 180px); gap: 16px; }
.about__gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about__gallery img:first-child { grid-row: span 2; height: 100%; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.badge {
    display: flex; align-items: center; gap: 10px; padding: 9px 14px;
    background: #fff; border: 1px solid var(--line-soft); border-radius: 100px; box-shadow: var(--shadow-sm);
}
.badge__value { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.badge__meta { font-size: .72rem; color: var(--ink-3); line-height: 1.3; }
.badge__meta strong { display: block; color: var(--ink-2); font-weight: 500; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 12px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: #fff; }
.stat__value { font-family: var(--font-display); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); color: var(--ink); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--ink-3); margin-top: 8px; }

/* ---------- 9. Карточка номера ---------- */
.card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
    position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 100px;
    background: rgba(255, 255, 255, .92); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.card__price {
    position: absolute; right: 14px; bottom: 14px; padding: 7px 14px; border-radius: 100px;
    background: rgba(28, 26, 23, .78); color: #fff; font-size: .85rem; backdrop-filter: blur(4px);
}
.card__price s { opacity: .55; margin-right: 6px; font-size: .78rem; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title { margin-bottom: 8px; font-size: 1.2rem; }
.card__title a:hover { color: var(--accent); }
.card__meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--ink-3); margin-bottom: 12px; }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__text { font-size: .9rem; color: var(--ink-3); margin-bottom: 18px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__amenities { display: flex; gap: 10px; color: var(--ink-3); }
.card__amenities .icon { width: 18px; height: 18px; }

/* ---------- 10. Услуги ---------- */
.service {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 280px; padding: 26px; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
    background: var(--deep); isolation: isolate;
}
.service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.service::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(15, 34, 31, .1), rgba(15, 34, 31, .85));
}
.service:hover img { transform: scale(1.06); }
.service h3 { color: #fff; margin-bottom: 6px; }
.service p { font-size: .88rem; color: rgba(255, 255, 255, .78); margin: 0; }
.service .icon { margin-bottom: auto; opacity: .9; }

.feature { padding: 28px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.feature .icon { width: 26px; height: 26px; color: var(--accent); margin-bottom: 16px; }
.feature h3 { font-size: 1.1rem; }
.feature p { font-size: .9rem; color: var(--ink-3); margin: 0; }

/* ---------- 11. Полоса SPA / параллакс ---------- */
.strip { position: relative; min-height: 420px; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip::after { content: ""; position: absolute; inset: 0; background: rgba(15, 34, 31, .55); }
.strip__inner { position: relative; z-index: 2; padding: 60px 24px; max-width: 620px; }
.strip h2 { color: #fff; letter-spacing: .06em; }
.strip p { color: rgba(255, 255, 255, .8); }

/* ---------- 12. Отзывы ---------- */
.review { padding: 30px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.review__stars { display: flex; gap: 3px; color: var(--accent-2); margin-bottom: 14px; }
.review__stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.review__text { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.review__foot { margin-top: auto; padding-top: 16px; font-size: .82rem; color: var(--ink-3); }
.review__foot strong { display: block; color: var(--ink-2); font-weight: 500; }

/* ---------- 13. Страница номера ---------- */
.page-hero { position: relative; padding: clamp(70px, 9vw, 130px) 0; color: #fff; overflow: hidden; background: var(--deep); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 34, 31, .55), rgba(15, 34, 31, .78)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 56ch; margin: 0; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: var(--ink-3); padding: 18px 0; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: .5; }
.page-hero .crumbs { color: rgba(255, 255, 255, .65); padding: 0 0 16px; }

.room-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.room-gallery { display: grid; gap: 14px; }
.room-gallery__main { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-3); }
.room-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.room-gallery__thumbs button { padding: 0; border: 1px solid transparent; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: none; aspect-ratio: 4 / 3; }
.room-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery__thumbs button.is-active { border-color: var(--accent); }

.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0; }
.spec { padding: 16px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: #fff; }
.spec__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.spec__value { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }

.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.amenity { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.amenity .icon { color: var(--accent); }

.check-list li { display: flex; gap: 10px; padding: 7px 0; font-size: .92rem; }
.check-list .icon { color: var(--accent); margin-top: 3px; }

.booking-panel {
    position: sticky; top: 100px; padding: 26px; background: #fff;
    border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.booking-panel__price { font-family: var(--font-display); font-size: 2rem; color: var(--ink); line-height: 1; }
.booking-panel__price small { font-family: var(--font-body); font-size: .85rem; color: var(--ink-3); }
.booking-panel form { display: grid; gap: 14px; margin-top: 20px; }
.booking-panel .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- 14. Формы и сообщения ---------- */
.form-card { padding: clamp(24px, 3vw, 38px); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .field--full { grid-column: 1 / -1; }

.alert { padding: 16px 20px; border-radius: var(--radius-lg); border: 1px solid; margin-bottom: 22px; font-size: .92rem; }
.alert--ok { background: #eef6f1; border-color: #cfe6da; color: #205c41; }
.alert--err { background: #fbeeeb; border-color: #f0d3cb; color: #8f3423; }

.note { font-size: .82rem; color: var(--ink-3); }

/* ---------- 15. Карта, галерея, CTA ---------- */
.map { height: 460px; background: var(--paper-3); position: relative; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__stub { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--ink-3); padding: 24px; }
.map__stub .icon { margin: 0 auto 12px; width: 28px; height: 28px; color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.05); }

.cta { text-align: center; padding: clamp(40px, 5vw, 72px) 24px; background: var(--deep); color: rgba(255, 255, 255, .82); border-radius: var(--radius-lg); }
.cta h2 { color: #fff; }
.cta p { max-width: 46ch; margin: 0 auto 26px; }

/* ---------- 16. Подвал ---------- */
.footer { background: var(--deep-2); color: rgba(255, 255, 255, .62); font-size: .9rem; padding: clamp(48px, 6vw, 80px) 0 0; }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 500; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 40px; }
.footer a:hover { color: #fff; }
.footer li { padding: 5px 0; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo svg { width: 150px; }
.subscribe { display: flex; gap: 8px; margin-top: 14px; }
.subscribe input { flex: 1; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); border-radius: var(--radius); color: #fff; }
.subscribe input::placeholder { color: rgba(255, 255, 255, .4); }
.footer__bottom {
    margin-top: 48px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255, 255, 255, .45);
}
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
    width: 38px; height: 38px; display: grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; transition: background .25s, border-color .25s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- 17. Анимации появления ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- 18. Адаптив ---------- */
@media (max-width: 1080px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .room-layout { grid-template-columns: 1fr; }
    .booking-panel { position: static; }
    .bookbar form { grid-template-columns: repeat(2, 1fr); }
    .bookbar .btn { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav { display: none; }
    .burger { display: inline-flex; }
    .header__actions .btn { display: none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar__inner { justify-content: center; }
    .topbar .topbar__hide { display: none; }
}

@media (max-width: 640px) {
    .wrap { padding: 0 18px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .specs { grid-template-columns: 1fr; }
    .amenity-list { grid-template-columns: 1fr; }
    .bookbar form { grid-template-columns: 1fr; }
    .bookbar { margin-top: -24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .about__gallery { grid-template-rows: repeat(2, 130px); }
    .room-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
    .hero__dots { display: none; }
}

/* ---------- 19. Печать ---------- */
@media print {
    .header, .topbar, .footer, .bookbar, .btn { display: none !important; }
    body { background: #fff; }
}
