/* ============================================================
   «ЛЕС» — комплекс отдыха, Пермь
   Светлый современный минимализм. Много воздуха, мягкая
   типографика, скругления, один акцент — солнечно-зелёный.
   ============================================================ */

:root {
  --bg:        #fcfcfa;
  --surface:   #f1f4ec;
  --ink:       #1e2420;
  --muted:     #616b64;
  --line:      #e4e7dd;
  --grass:     #7bc42e;
  --grass-ink: #3d7a12;
  --grass-soft:#e9f4d9;
  --water:     #dcebc7;
  --on-grass:  #16240a;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(72px, 10vw, 138px);
  --col-gap: clamp(24px, 4vw, 56px);
  --r: 24px;
  --r-sm: 14px;
  --ease: 260ms cubic-bezier(.4, 0, .2, 1);

  --font: "Onest", "Segoe UI", system-ui, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.9rem); line-height: 1.06; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }

p { margin: 0; }

mark {
  background: none;
  color: var(--grass-ink);
  box-shadow: inset 0 -0.28em 0 var(--grass-soft);
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--grass-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--grass-soft); color: var(--ink); }

/* ---------- Раскладка ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--surface { background: var(--surface); }
.section--grass { background: var(--grass); color: var(--on-grass); }
.section--soft { background: var(--grass-soft); }

.eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--grass-ink);
  margin: 0 0 1.3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grass);
  flex: none;
}
.section--grass .eyebrow { color: var(--on-grass); }
.section--grass .eyebrow::before { background: var(--on-grass); }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}
.section-head h2 + p {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 40ch;
  text-wrap: pretty;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center h2 + p { margin-inline: auto; }

/* ---------- Кнопки ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding-inline: 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--grass); color: var(--on-grass); }
.button-primary:hover { background: color-mix(in oklab, var(--grass) 88%, black); }
.button-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.button-ghost:hover { border-color: var(--ink); }
.section--grass .button-primary { background: var(--on-grass); color: #fff; }
.section--grass .button-primary:hover { background: color-mix(in oklab, var(--on-grass) 82%, black); }
.section--grass .button-ghost { border-color: color-mix(in srgb, var(--on-grass) 40%, transparent); color: var(--on-grass); }
.section--grass .button-ghost:hover { border-color: var(--on-grass); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.2rem;
}

/* ---------- Шапка ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-weight: 800;
}
.logo span { font-size: 1.5rem; letter-spacing: -0.02em; }
.logo small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.header .logo { margin-right: auto; }

.nav { display: flex; gap: 1.8rem; font-size: .95rem; font-weight: 500; }
.nav a { color: var(--muted); transition: color var(--ease); }
.nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.header-phone { font-weight: 600; white-space: nowrap; }
.header-book {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 1.2rem;
  border-radius: 999px;
  background: var(--grass);
  color: var(--on-grass);
  font-weight: 600;
  font-size: .92rem;
  transition: transform var(--ease), background-color var(--ease);
}
.header-book:hover { transform: translateY(-2px); background: color-mix(in oklab, var(--grass) 88%, black); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
.menu-button i { position: relative; }
.menu-button i::before { content: ""; position: absolute; top: -7px; }
.menu-button i::after  { content: ""; position: absolute; top: 7px; }
.menu-button[aria-expanded="true"] i { background: transparent; }
.menu-button[aria-expanded="true"] i::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] i::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero .container { max-width: 1340px; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 2fr);
  gap: var(--col-gap);
  align-items: stretch;
  padding-block: clamp(32px, 4vw, 56px) clamp(36px, 5vw, 68px);
}
.hero-copy-panel { display: flex; flex-direction: column; max-width: 32rem; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grass-ink);
}
.hero-kicker span { width: 22px; height: 2px; border-radius: 2px; background: var(--grass); }
.hero h1 { font-size: clamp(2.1rem, 3.3vw, 3.1rem); margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--grass-ink); box-shadow: inset 0 -0.26em 0 var(--grass-soft); }
.hero-copy { font-size: 1.1rem; color: var(--muted); text-wrap: pretty; max-width: 28rem; }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.8rem;
  font-size: .92rem;
  line-height: 1.35;
}
.hero-features span { display: flex; align-items: center; gap: .5rem; color: var(--muted); }
.hero-features b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grass-soft);
  color: var(--grass-ink);
  font-size: .95rem;
  flex: none;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-collage figure { margin: 0; border-radius: var(--r-sm); overflow: hidden; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-collage figure:not(.hero-collage__main) { aspect-ratio: 1 / 1.18; }
.hero-collage__main {
  grid-column: 1 / -1;
  position: relative;
  height: clamp(300px, 48vh, 540px);
  border-radius: var(--r);
}
.hero-place {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  padding: .5rem .85rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(6px);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-place small { font-size: .72rem; font-weight: 500; color: var(--muted); }

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.6rem;
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-facts > div { display: flex; flex-direction: column; }
.hero-facts b { font-size: .98rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-facts span { font-size: .86rem; color: var(--muted); line-height: 1.35; }

/* ---------- Сценарии ---------- */

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--col-gap);
}
.scenario { display: flex; flex-direction: column; }
.scenario-media {
  display: block;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}
.scenario-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.scenario:hover .scenario-media img { transform: scale(1.04); }
.scenario-body { display: flex; flex-direction: column; gap: .3rem; }
.scenario-body small { font-size: .82rem; color: var(--grass-ink); font-weight: 600; }
.scenario-body strong { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.scenario-body b { display: none; }
.scenario-main .scenario-body strong::after { content: " →"; color: var(--grass-ink); }

/* ---------- Больше, чем беседки ---------- */

.more__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap);
  align-items: center;
}
.more-photo { position: relative; }
.more-photo img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--r); }
.more-photo span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: .6rem .95rem;
  border-radius: 14px;
  background: var(--bg);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}
.more-content { max-width: 32rem; }
.more-content h2 { margin-bottom: 1.1rem; }
.more-content > p { color: var(--muted); font-size: 1.1rem; text-wrap: pretty; }
.more-content ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .1rem;
}
.more-content li {
  padding: .95rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.more-content li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grass);
  flex: none;
}
.more-content li:last-child { border-bottom: 1px solid var(--line); }

/* ---------- Сезоны ---------- */

.season-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
}
.season { display: flex; flex-direction: column; }
.season img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--r); margin-bottom: 1.2rem; }
.season small { font-size: .85rem; font-weight: 600; color: var(--grass-ink); }
.season h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: .3rem 0 .6rem; }
.season p { color: var(--muted); }

/* ---------- Семья ---------- */

.family__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap) var(--col-gap);
  align-items: start;
}
.family-text { align-self: center; }
.family-text { max-width: 30rem; }
.family-text h2 { margin-bottom: 1.1rem; }
.family-text p { color: var(--muted); font-size: 1.1rem; }
.family-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--r); }
.family-quote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.family-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
}

/* ---------- Беседки ---------- */

.gazebo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
}
.gazebo-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--r);
  overflow: hidden;
}
.section--surface .gazebo-card { background: var(--bg); }
.gazebo-card-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.gazebo-card-content { padding: 1.6rem clamp(1.2rem, 2.5vw, 1.9rem) 1.8rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.gazebo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .82rem;
  font-weight: 600;
}
.gazebo-card-head span { color: var(--grass-ink); }
.gazebo-card-head strong { color: var(--muted); font-weight: 500; }
.gazebo-card h3 { margin: .7rem 0 .4rem; }
.gazebo-card-content > p { color: var(--muted); font-size: .98rem; }
.gazebo-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 .2rem; }
.gazebo-tags span {
  font-size: .8rem;
  font-weight: 500;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--grass-soft);
  color: var(--grass-ink);
}
.gazebo-inside { margin-top: .9rem; font-size: .92rem; color: var(--muted); }
.gazebo-inside b { color: var(--ink); font-weight: 600; }
.gazebo-card-content > a {
  margin-top: 1.3rem;
  font-weight: 600;
  color: var(--grass-ink);
  align-self: flex-start;
}
.gazebo-card-content > a b { font-weight: 600; }
.gazebo-card-content > a:hover { text-decoration: underline; text-underline-offset: 3px; }

.gazebo-disclaimer { margin-top: 1.8rem; font-size: .92rem; color: var(--muted); }
.gazebo-coming {
  margin-top: 1.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--r);
  background: var(--grass-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem 1rem;
}
.gazebo-coming span { font-weight: 700; font-size: 1.1rem; color: var(--grass-ink); }
.gazebo-coming strong { font-weight: 700; }
.gazebo-coming p { width: 100%; color: var(--muted); font-size: .95rem; }

/* ---------- Повод ---------- */

.occasions__inner { max-width: 40rem; margin-inline: auto; text-align: center; }
.occasions-content .eyebrow { justify-content: center; }
.occasions-content h2 { margin-bottom: 1.1rem; }
.occasions-content > p { color: var(--muted); font-size: 1.15rem; margin-bottom: 2rem; }
.occasions-photo { display: none; }

/* ---------- Карта территории ---------- */

.map-section .territory-map-wrap { margin-top: 0; }
.territory-map {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 900 / 500;
}
.section--surface .territory-map { background: var(--bg); }
.territory-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-contour { fill: none; stroke: var(--line); stroke-width: 3; }
.trail { fill: none; stroke: var(--grass); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 2 20; }
.water { fill: var(--water); }
.map-trees path { fill: color-mix(in srgb, var(--grass-ink) 26%, transparent); }
.map-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
}
.map-point b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grass);
  color: var(--on-grass);
  font-size: .72rem;
}
.map-point.p1 { left: 7%; bottom: 12%; }
.map-point.p2 { left: 27%; bottom: 42%; }
.map-point.p3 { left: 45%; top: 30%; }
.map-point.p4 { right: 16%; top: 20%; }
.map-point.p5 { right: 7%; bottom: 14%; }

/* ---------- Цены ---------- */

.prices__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--col-gap);
  align-items: start;
}
.prices-intro { max-width: 26rem; }
.prices-intro h2 { margin-bottom: 1.1rem; }
.price-note { color: var(--muted); }
.price-list { display: grid; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-row span { font-weight: 500; }
.price-row p { display: flex; align-items: baseline; gap: .4rem; }
.price-row strong { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; }
.price-row small { color: var(--muted); }
.price-meta {
  margin-top: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--r-sm);
  background: var(--grass-soft);
}
.price-meta strong { display: block; font-weight: 700; }
.price-meta span { color: var(--muted); font-size: .95rem; }
.price-list + .button, .price-meta + .button { margin-top: 1.6rem; }

/* ---------- Отзывы ---------- */

.review-score { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 3rem; }
.review-score > strong { font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 700; letter-spacing: -0.04em; color: var(--grass-ink); }
.review-score > span { display: flex; flex-direction: column; color: var(--grass); letter-spacing: .12em; }
.review-score small { color: var(--muted); letter-spacing: 0; font-size: .9rem; margin-top: .2rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
}
.reviews-grid blockquote {
  margin: 0;
  padding: 1.6rem 1.7rem 1.8rem;
  border-radius: var(--r);
  background: var(--surface);
  font-size: 1rem;
}
.section--surface .reviews-grid blockquote { background: var(--bg); }
.reviews-grid blockquote::before {
  content: "“";
  display: block;
  font-size: 2.4rem;
  line-height: .8;
  color: var(--grass);
  margin-bottom: .3rem;
}
.reviews-grid cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- FAQ ---------- */

.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: var(--col-gap);
}
.faq__inner > div h2 { margin-top: 1rem; }
.faq-list { display: grid; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grass-soft);
  color: var(--grass-ink);
  font-size: 1.1rem;
  transition: transform var(--ease);
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 1.4rem; color: var(--muted); max-width: 52ch; }

/* ---------- Контакты ---------- */

.contacts__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: var(--col-gap);
  align-items: center;
}
.contact-main { max-width: 30rem; }
.contact-main h2 { margin-bottom: 1.4rem; }
.big-phone { display: block; font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
.contact-address { font-size: 1.15rem; font-weight: 600; }
.contact-description { color: color-mix(in srgb, var(--on-grass) 72%, transparent); margin-top: .3rem; }
.contact-photo img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; border-radius: var(--r); }

/* ---------- Подвал ---------- */

footer {
  padding-block: 2.6rem;
  border-top: 1px solid var(--line);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
footer .footer-logo { margin-right: auto; }
footer .footer-logo small { color: var(--muted); }
footer p { color: var(--muted); font-size: .9rem; }

/* ---------- Появление при скролле ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Адаптив ---------- */

@media (max-width: 1000px) {
  .scenario-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .nav--open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.2rem;
    font-size: 1.05rem;
  }
  .nav--open a { padding-block: .75rem; border-top: 1px solid var(--line); color: var(--ink); }

  .hero__inner,
  .more__inner,
  .family__inner,
  .prices__inner,
  .contacts__inner,
  .faq__inner { grid-template-columns: 1fr; }
  .hero__inner { gap: 2.4rem; padding-bottom: clamp(40px, 8vw, 64px); }
  .hero-copy-panel, .more-content, .family-text, .contact-main { max-width: none; }
  .hero-facts { margin-top: 2.2rem; }
  .hero-collage__main { height: clamp(240px, 44vh, 420px); }

  .season-cards { grid-template-columns: 1fr; }
  .gazebo-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .hero-collage { gap: 8px; }
  .hero-collage__main { height: clamp(200px, 40vh, 320px); }
  .actions .button { flex: 1 1 100%; }
  .map-point span { display: none; }
  .territory-map { aspect-ratio: 4 / 5; }
}

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