:root {
  --ink: #17221f;
  --muted: #5f6b66;
  --green: #17372f;
  --green-2: #235447;
  --coral: #e85d45;
  --coral-dark: #cb4935;
  --sand: #f4efe7;
  --cream: #fbf8f3;
  --white: #fff;
  --line: rgba(23, 55, 47, .14);
  --shadow: 0 24px 70px rgba(18, 43, 36, .13);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.section-muted { background: var(--sand); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(251, 248, 243, .94);
  border-bottom: 1px solid rgba(23, 55, 47, .08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 230px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--white);
  background: var(--green);
  border-radius: 14px 14px 14px 4px;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
}
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 16px; letter-spacing: -.01em; }
.brand small { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); }
.main-nav a { font-size: 14px; font-weight: 650; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--coral-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: grid; text-align: right; }
.header-phone span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.header-phone strong { font-size: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 14px; background: var(--green); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; background: #fff; border-radius: 2px; transition: .25s ease; }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 82px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(10, 30, 24, .88) 0%, rgba(10, 30, 24, .58) 48%, rgba(10, 30, 24, .12) 80%), linear-gradient(0deg, rgba(10, 30, 24, .35), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-block: 80px; color: var(--white); }
.eyebrow { margin: 0 0 13px; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #ffd2c8; }
.hero h1, .section-heading h2, .final-cta h2, .contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 800px; margin: 0; font-size: clamp(57px, 8vw, 108px); font-weight: 500; line-height: .92; }
.hero h1 span { color: #ffd8cf; white-space: nowrap; }
.hero-lead { max-width: 690px; margin: 27px 0 0; color: rgba(255,255,255,.88); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--coral); box-shadow: 0 12px 30px rgba(232, 93, 69, .28); }
.button-primary:hover { background: var(--coral-dark); }
.button-glass { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.button-glass:hover { background: rgba(255,255,255,.2); }
.button-dark { color: #fff; background: var(--green); }
.button-small { min-height: 44px; padding-inline: 19px; color: #fff; background: var(--green); font-size: 13px; }
.button-outline { color: var(--green); border-color: var(--line); background: #fff; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 45px; }
.hero-facts span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(13, 38, 31, .3); color: rgba(255,255,255,.9); font-size: 13px; backdrop-filter: blur(8px); }

.booking-section { position: relative; z-index: 4; padding: 78px 0 90px; background: #fff; }
.section-heading h2, .contact-card h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); font-weight: 500; line-height: 1.04; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.booking-heading { display: grid; grid-template-columns: 1fr minmax(280px, 440px); align-items: end; gap: 40px; margin-bottom: 31px; }
.booking-heading > p { margin: 0 0 6px; }
.widget-shell { position: relative; z-index: 20; min-height: 170px; padding: 20px; border: 1px solid rgba(23, 55, 47, .1); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
#booking-widget { position: relative; z-index: 21; width: 100%; min-height: 120px; scroll-margin-top: 100px; }
.booking-note { margin: 18px 18px 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.intro-copy { position: sticky; top: 120px; }
.intro-copy > p:not(.eyebrow) { margin: 24px 0 0; }
.text-link { margin-top: 24px; padding: 0; border: 0; border-bottom: 1px solid var(--green); color: var(--green); background: none; cursor: pointer; font-weight: 800; line-height: 1.8; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.benefit-card { min-height: 235px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.66); }
.benefit-card:nth-child(2), .benefit-card:nth-child(3) { transform: none; }
.benefit-icon { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 14px; color: #fff; background: var(--coral); font-size: 22px; font-weight: 800; }
.benefit-card h3 { margin: 25px 0 10px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.split-heading { display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 50px; align-items: end; margin-bottom: 44px; }
.split-heading > p { margin: 0; }
.room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.room-card { overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 16px 45px rgba(21, 42, 36, .08); }
.photo-button, .mini-gallery button, .feature-photo > button, .media-collage button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.photo-button { overflow: hidden; aspect-ratio: 1.75; }
.photo-button img, .mini-gallery img, .feature-photo img, .media-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-button:hover img, .mini-gallery button:hover img, .feature-photo button:hover img, .media-collage button:hover img { transform: scale(1.035); }
.room-card-body { display: grid; grid-template-columns: 1fr auto; gap: 20px 28px; align-items: start; padding: 28px; }
.room-card-body h3 { margin: 3px 0 0; font-family: Georgia, serif; font-size: 29px; font-weight: 500; }
.card-kicker { margin: 0; color: var(--coral-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.room-card-body > p { grid-column: 1 / -1; margin: 0; color: var(--muted); line-height: 1.65; }
.room-card-body .button { grid-column: 1 / -1; justify-self: start; }
.mini-gallery { display: grid; grid-template-columns: .9fr .9fr 1.2fr; gap: 18px; margin-top: 18px; }
.mini-gallery button, .room-range { min-height: 245px; overflow: hidden; border-radius: 24px; }
.room-range { display: flex; flex-direction: column; justify-content: flex-end; padding: 31px; color: #fff; background: var(--green); }
.room-range span { margin-bottom: 12px; color: #ffd2c8; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.room-range strong { font-family: Georgia, serif; font-size: 25px; font-weight: 500; line-height: 1.35; }

.media-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 75px; align-items: center; }
.media-collage { position: relative; min-height: 650px; }
.media-main { position: absolute; inset: 0 12% 12% 0; overflow: hidden; border-radius: 34px; }
.media-inset { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1.15; overflow: hidden; border: 9px solid var(--cream) !important; border-radius: 28px; box-shadow: var(--shadow); }
.media-copy > p:not(.eyebrow) { margin: 23px 0 0; }
.check-list { display: grid; gap: 10px; margin: 27px 0 31px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--coral-dark); font-weight: 900; }

.wellness-section { color: #fff; background: var(--green); }
.wellness-heading { max-width: 760px; margin-bottom: 45px; }
.wellness-heading > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.feature-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-photo { position: relative; min-height: 330px; overflow: hidden; border-radius: 26px; }
.feature-photo-large { grid-column: 1 / -1; min-height: 520px; }
.feature-photo > button { position: absolute; inset: 0; height: 100%; }
.feature-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(7,24,19,.8), transparent 60%); }
.feature-overlay { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 27px; pointer-events: none; }
.feature-overlay span { color: #ffd2c8; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-overlay h3 { max-width: 560px; margin: 8px 0 0; font-family: Georgia, serif; font-size: clamp(25px, 4vw, 40px); font-weight: 500; }

.reviews-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; align-items: start; }
.reviews-copy { position: sticky; top: 120px; }
.reviews-copy > p:not(.eyebrow) { margin: 23px 0 0; }
.rating-card { display: flex; align-items: center; gap: 14px; margin-top: 27px; padding: 17px; border-radius: 20px; background: #fff; box-shadow: 0 13px 35px rgba(19,47,39,.08); }
.ya-mark { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border-radius: 14px; color: #fff; background: #fc3f1d; font-size: 25px; font-weight: 900; }
.rating-card > span:last-child { display: grid; gap: 4px; }
.rating-card small { color: var(--muted); }
.rating-card strong { font-size: 15px; }
.yandex-frame { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 18px 50px rgba(18,43,36,.08); }
.reviews-frame { height: 650px; }
.map-frame { min-height: 520px; }
.yandex-frame iframe { display: none; width: 100%; height: 100%; border: 0; pointer-events: none; }
.yandex-frame.is-loaded iframe { display: block; }
.consent-placeholder { position: absolute; inset: 0; z-index: 1; display: grid; align-content: center; justify-items: center; padding: 30px; text-align: center; background: linear-gradient(135deg, #fff 0%, #f2ece4 100%); }
.consent-placeholder::before { content: "Я"; display: grid; width: 58px; height: 58px; margin-bottom: 18px; place-items: center; border-radius: 18px; color: #fff; background: #fc3f1d; font-size: 28px; font-weight: 900; }
.consent-placeholder strong { font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.consent-placeholder p { max-width: 380px; margin: 11px 0 20px; color: var(--muted); line-height: 1.55; }
.is-loaded .consent-placeholder { display: none; }

.contacts-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 25px; }
.contact-card { padding: 44px; border-radius: 28px; color: #fff; background: var(--green); }
.contact-card .eyebrow { color: #ffd2c8; }
.contact-card > p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.7; }
.contact-lines { display: grid; gap: 10px; margin-top: 30px; }
.contact-lines a { display: grid; gap: 4px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.07); }
.contact-lines a:hover { background: rgba(255,255,255,.13); }
.contact-lines span { color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-lines strong { font-size: 17px; }

.final-cta { padding: 70px 0; color: #fff; background: #0e2a23; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { max-width: 730px; margin: 0; font-size: clamp(36px, 5vw, 61px); font-weight: 500; line-height: 1.05; }
.site-footer { padding: 65px 0 30px; background: #071a15; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .65fr; gap: 70px; }
.brand-footer .brand-mark { background: var(--coral); }
.brand-footer small { color: rgba(255,255,255,.55); }
.footer-note { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; }
.footer-grid h3 { margin: 0 0 9px; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-link { width: fit-content; color: rgba(255,255,255,.82); font-size: 13px; }
.footer-grid a:hover, .footer-link:hover { color: #fff; }
.footer-link { padding: 0; border: 0; background: none; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 11px; }

.floating-contacts { position: fixed; z-index: 90; right: 18px; bottom: 23px; display: grid; gap: 9px; }
.floating-contacts a { display: flex; min-height: 48px; align-items: center; gap: 8px; padding: 7px 13px 7px 7px; border-radius: 999px; color: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.22); }
.floating-contacts span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-weight: 900; }
.floating-contacts b { font-size: 12px; }
.float-phone { background: var(--coral); }
.float-max { background: #5d55f7; }
.float-tg { background: #229ed9; }

.lightbox { width: min(1120px, calc(100% - 28px)); max-width: none; padding: 0; border: 0; border-radius: 22px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(3, 14, 11, .9); backdrop-filter: blur(8px); }
.lightbox img { max-height: 86vh; width: 100%; object-fit: contain; border-radius: 22px; }
.lightbox-close { position: absolute; z-index: 2; top: -15px; right: -10px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--coral); cursor: pointer; font-size: 28px; line-height: 1; }

.cookie-banner { position: fixed; z-index: 200; left: 18px; right: 18px; bottom: 18px; display: none; max-width: 980px; margin: auto; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 23px; color: #fff; background: rgba(9, 31, 25, .97); box-shadow: 0 25px 80px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
.cookie-banner.is-visible { display: grid; }
.cookie-banner strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.cookie-banner p { margin: 7px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.55; }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 44px; padding-inline: 17px; font-size: 12px; }
.noscript-note { position: fixed; z-index: 500; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; background: #a83e2d; text-align: center; }

.legal-page { background: var(--cream); }
.legal-header { position: sticky; top: 0; z-index: 20; padding: 18px 0; border-bottom: 1px solid var(--line); background: rgba(251,248,243,.95); backdrop-filter: blur(12px); }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-back { color: var(--green); font-size: 13px; font-weight: 800; }
.legal-main { width: min(820px, calc(100% - 38px)); margin: 0 auto; padding: 80px 0 100px; }
.legal-main h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 6vw, 64px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.legal-updated { margin: 18px 0 45px; color: var(--muted); font-size: 13px; }
.legal-main h2 { margin: 40px 0 13px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.legal-main p, .legal-main li { color: #44514d; font-size: 15px; line-height: 1.75; }
.legal-main ul { padding-left: 22px; }
.legal-card { margin-top: 35px; padding: 27px; border: 1px solid var(--line); border-radius: 23px; background: #fff; }
.legal-card p { margin: 5px 0; }

@media (max-width: 1040px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 13px; }
  .header-phone span { display: none; }
  .intro-grid, .media-split, .reviews-grid { gap: 45px; }
  .media-collage { min-height: 550px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 720px); }
  .section-pad { padding: 78px 0; }
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    height: calc(100svh - 72px);
    padding: 38px 22px;
    align-content: start;
    background: var(--cream);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 730px; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,30,24,.86), rgba(10,30,24,.33)), linear-gradient(0deg, rgba(10,30,24,.55), transparent 60%); }
  .booking-heading, .split-heading, .intro-grid, .media-split, .reviews-grid, .contacts-grid { grid-template-columns: 1fr; }
  .booking-heading, .split-heading { gap: 18px; }
  .intro-copy, .reviews-copy { position: static; }
  .benefit-card:nth-child(2), .benefit-card:nth-child(3) { transform: none; }
  .media-collage { order: 2; min-height: 580px; }
  .reviews-frame { height: 610px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); --radius: 23px; }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 62px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 39px; height: 39px; font-size: 22px; }
  .hero { min-height: 690px; }
  .hero-content { padding-block: 58px; }
  .hero h1 { font-size: clamp(49px, 16vw, 74px); }
  .hero-lead { margin-top: 22px; font-size: 17px; line-height: 1.5; }
  .hero-buttons { display: grid; }
  .hero-buttons .button { width: 100%; }
  .hero-facts { margin-top: 30px; }
  .hero-facts span { font-size: 11px; }
  .booking-section { padding: 60px 0 70px; }
  .section-heading h2, .contact-card h2 { font-size: 39px; }
  .section-heading > p:not(.eyebrow) { font-size: 15px; }
  .widget-shell { min-height: 240px; padding: 10px; border-radius: 22px; }
  .booking-note { margin-inline: 6px; }
  .benefit-grid, .room-grid, .feature-photo-grid, .footer-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; padding: 24px; }
  .room-card-body { grid-template-columns: 1fr; }
  .room-card-body > p, .room-card-body .button { grid-column: auto; }
  .mini-gallery { grid-template-columns: 1fr 1fr; }
  .mini-gallery button { min-height: 170px; }
  .room-range { grid-column: 1 / -1; min-height: 190px; }
  .media-collage { min-height: 460px; }
  .media-main { inset: 0 7% 13% 0; }
  .media-inset { width: 58%; border-width: 6px !important; }
  .feature-photo, .feature-photo-large { grid-column: auto; min-height: 330px; }
  .feature-photo-large { min-height: 410px; }
  .contact-card { padding: 29px 23px; }
  .map-frame { min-height: 430px; }
  .final-cta-inner { display: grid; }
  .final-cta .button { width: 100%; }
  .footer-grid { gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .floating-contacts {
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    box-shadow: 0 -8px 30px rgba(0,0,0,.12);
  }
  .floating-contacts a { min-height: 62px; justify-content: center; padding: 6px; border-radius: 0; box-shadow: none; }
  .floating-contacts span { width: 30px; height: 30px; }
  .floating-contacts b { font-size: 11px; }
  .cookie-banner { bottom: 72px; grid-template-columns: 1fr; gap: 15px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { padding-inline: 10px; }
  .legal-main { padding: 55px 0 85px; }
}

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


/* ALEAN MAP CONTROLS 20260731 */
.map-frame iframe {
    pointer-events: none !important;
}

.map-controls {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    display: none;
    overflow: hidden;
    border: 1px solid rgba(22, 51, 43, 0.14);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(18, 43, 36, 0.18);
}

.map-frame.is-loaded .map-controls {
    display: grid;
}

.map-controls button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    color: var(--green);
    background: #ffffff;
    font: 600 28px/1 Arial, sans-serif;
    cursor: pointer;
}

.map-controls button + button {
    border-top: 1px solid var(--line);
}

.map-controls button:hover {
    background: #f4f0e9;
}

.map-controls button:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid var(--coral);
    outline-offset: -3px;
}


/* BENEFIT CARDS ALIGNMENT 20260731 */
.benefit-grid {
    align-items: stretch;
    gap: 22px;
}

.benefit-card,
.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
    height: auto;
    min-height: 235px;
    box-sizing: border-box;
    transform: none !important;
}
