/* =====  Благодать — премиум стили  ===== */
:root {
  --green-900: #162a1a;
  --green-800: #1f3a24;
  --green-700: #2f5a36;
  --green-500: #4a7c52;
  --gold: #c9a24a;
  --gold-hover: #b48a32;
  --gold-line: #b89256;
  --cream: #f7f3ea;
  --cream-2: #efe9d9;
  --ink: #1a1d18;
  --ink-2: #4a4e44;
  --muted: #7a7e74;
  --line: rgba(22, 42, 26, .12);
  --line-strong: rgba(22, 42, 26, .22);
  --radius: 2px;
  --radius-lg: 4px;
  --container: 1120px;
  --serif: "Jura", sans-serif;
  --sans: "Jura", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

a { color: var(--green-800); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---- Focus ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 10px;
  padding: 10px 16px; background: var(--green-900); color: #fff;
  z-index: 100;
}
.skip-link:focus { left: 10px; color: #fff; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green-900);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 .6em;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 400; }
h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: .5em; font-weight: 400; }
h3 { font-size: 20px; letter-spacing: -.01em; line-height: 1.3; }
h4 { font-size: 15px; letter-spacing: .02em; font-weight: 400; font-family: var(--sans); text-transform: uppercase; }
p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 20px; color: var(--ink); line-height: 1.6; font-weight: 300; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 22px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 20px; height: 1px; background: var(--gold-line);
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--light::before { background: var(--gold); }

.section__head { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.section__head .eyebrow { padding-left: 0; }
.section__head .eyebrow::before { display: none; }
.section__head h2 { letter-spacing: -.025em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  border: 1px solid transparent;
  text-align: center;
  border-radius: var(--radius);
}
.btn--primary {
  background: var(--gold);
  color: var(--green-900);
}
.btn--primary:hover { background: var(--gold-hover); color: var(--green-900); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: #fff; color: var(--green-900); border-color: #fff; }
.btn--lg { padding: 18px 40px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 243, 234, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 40px;
  padding: 22px 32px; max-width: var(--container); margin: 0 auto;
}
.nav__logo {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--serif);
  color: var(--green-900);
}
.nav__logo-name { font-size: 22px; font-weight: 400; }
.nav__logo-sub {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  color: var(--muted); letter-spacing: .25em; text-transform: uppercase;
  margin-top: 4px;
}
.nav__menu { margin-left: auto; display: flex; gap: 36px; }
.nav__menu a {
  color: var(--ink); font-size: 13px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__menu a:hover { color: var(--green-900); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta { padding: 12px 24px; font-size: 12px; }

.nav__toggle {
  display: none; margin-left: auto;
  width: 40px; height: 40px; background: none; border: 0;
  flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav__toggle span { display: block; height: 1.5px; width: 22px; background: var(--green-900); transition: .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__mobile a {
  padding: 14px 0; color: var(--ink); font-size: 15px;
  border-bottom: 1px solid var(--line);
  letter-spacing: .05em;
}
.nav__mobile[aria-hidden="false"] { display: flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0a120c;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease;
}
.hero__bg--loading {
  opacity: 0;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,0) 80%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 860px; padding: 120px 32px;
  margin: 0 auto; text-align: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 12px; font-weight: 400;
  margin: 0 0 36px;
  display: inline-flex; align-items: center; gap: 16px;
}
.hero__eyebrow::before {
  content: ""; display: inline-block;
  width: 48px; height: 1px; background: var(--gold);
}
.hero__title {
  color: #fff;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.02;
  margin-bottom: 32px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero__subtitle {
  font-size: 20px; color: rgba(255,255,255,.85);
  margin: 0 auto 48px; max-width: 680px; font-weight: 400;
  line-height: 1.55;
  font-family: var(--serif);
  font-style: normal;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 40px;
  transform: translateX(-50%);
  z-index: 2; width: 30px; height: 60px;
  display: flex; justify-content: center;
}
.hero__scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,.4);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -60px; left: 0;
  width: 100%; height: 60px; background: #fff;
  animation: scrollDown 2.4s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: -60px; }
  60%, 100% { top: 60px; }
}

/* ---- Numbers strip ---- */
.numbers {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.numbers__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.num { padding: 20px; border-right: 1px solid var(--line); }
.num:last-child { border-right: 0; }
.num__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  color: var(--green-900);
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: oldstyle-nums;
}
.num__label {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
  font-weight: 400;
}

/* ---- Sections ---- */
.section { padding: 140px 0; }
.section--muted { background: var(--cream-2); }
.section--about { padding-top: 140px; }
.section--dark {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Впадение_Шавлы_в_Нижнее_Шавлинское_озеро.jpg') center/cover no-repeat;
  color: rgba(255,255,255,.85);
  position: relative;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.75); }
.section--dark .lead { color: rgba(255,255,255,.92); }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.grid-2--center { align-items: center; }
.grid-2--wide { gap: 120px; }

.ticks { list-style: none; padding: 0; margin: 28px 0 0; }
.ticks li {
  padding: 14px 0 14px 28px; position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: 15px;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--green-500);
}
.ticks--light li { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.92); }
.ticks--light li::before { background: var(--gold); }

.about__image img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.img-arch {
  border-radius: 500px 500px 16px 16px !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1) !important;
}
.img-leaf {
  border-radius: 200px 16px 200px 16px !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1) !important;
}
.rounded { border-radius: var(--radius-lg); }

/* ---- Features ---- */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .3s var(--ease);
}
.feature:hover { background: rgba(255,255,255,.5); }
.feature__num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
  margin-bottom: 18px;
  font-weight: 400;
}
.feature h3 { margin-bottom: 10px; color: var(--green-900); }
.feature p { font-size: 14px; margin: 0; line-height: 1.6; color: var(--muted); }

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 10px;
}
.gallery__item {
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--line);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.94);
  transition: filter .6s var(--ease), transform 1.2s var(--ease);
}
.gallery__item:hover img { filter: brightness(1); transform: scale(1.03); }

/* ---- Places ---- */
.places { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 800px; margin: 0 auto; }
.place {
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.place img { width: 240px; height: 180px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.place h3 { font-size: 26px; margin-bottom: 8px; }
.place p { margin: 0; font-size: 16px; color: var(--muted); line-height: 1.6; }

.map__embed {
  width: 100%; height: 100%; min-height: 480px;
  background: var(--green-800) url('../images/nature-2.jpg') center/cover;
  position: relative;
  border-radius: var(--radius-lg);
  filter: grayscale(.3);
}
.map__embed::after {
  content: "Яндекс.Карты подключаются при публикации";
  position: absolute; left: 24px; bottom: 24px;
  color: #fff; background: rgba(22, 42, 26, .85);
  padding: 10px 18px; font-size: 11px;
  text-transform: uppercase; letter-spacing: .15em;
  font-weight: 400;
}
.map__hint {
  font-size: 13px; color: var(--muted);
  margin-top: 14px; text-align: center;
}

/* ---- Audience ---- */
.audience {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.aud {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.aud:last-child { border-right: 0; }
.aud__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  display: block;
  margin: 0 auto 24px;
}
.aud h3 { margin-bottom: 12px; font-size: 22px; }
.aud p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---- Prices ---- */
.prices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin: 60px 0 30px;
}
.price {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.price--premium {
  border: 1px solid var(--line-strong); 
  border-radius: 8px; 
  padding: 60px 40px;
}
.price--premium .price__value {
  font-size: clamp(32px, 10vw, 3.5rem);
  white-space: nowrap;
}
.price:last-child { border-right: 0; }
.price__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 24px;
}
.price--premium .price__label {
  font-size: 1.2rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 10px;
}
.price--premium .price__discount {
  margin-top: 20px; 
  font-weight: 400; 
  color: var(--gold);
}
.price--premium .price__note_small {
  font-size: 0.9rem; 
  color: var(--muted); 
  margin-top: 10px;
}
.price__value {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  color: var(--green-900);
  font-weight: 400;
  font-variant-numeric: oldstyle-nums;
  letter-spacing: -.02em;
  line-height: 1;
}
.price__unit {
  font-size: 13px; color: var(--muted);
  margin-top: 14px;
  letter-spacing: .02em;
}
.price ul { list-style: none; padding: 32px 0 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.price ul li {
  padding: 10px 0; font-size: 14px;
  color: var(--ink-2);
}
.price__note {
  text-align: center; font-size: 14px;
  color: var(--muted); max-width: 700px; margin: 20px auto 0;
  font-style: italic; line-height: 1.7;
}

/* ---- Reviews ---- */
.reviews-rating {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.reviews-rating__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-rating__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews-rating__score {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
}
.reviews-rating__label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 400;
}
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.review {
  margin: 0;
  padding: 0;
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--green-900);
  line-height: 1.55;
  margin-bottom: 24px;
  font-weight: 400;
}
.review p::before { content: "«"; color: var(--gold); margin-right: 2px; }
.review p::after { content: "»"; color: var(--gold); margin-left: 2px; }
.review cite {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2em;
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review__source {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  background: rgba(191,155,48,.1);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.review__source--yandex {
  color: #fc3f1d;
  background: rgba(252,63,29,.08);
}
.reviews-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.reviews-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green-900);
  border: 2px solid var(--green-900);
  padding: 14px 28px;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.reviews-link:hover {
  background: var(--green-900);
  color: #fff;
}

/* ---- Footer ---- */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding-top: 100px;
  margin-top: 0;
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding: 0 32px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer__logo {
  font-family: var(--serif);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
}
.footer__logo span { font-size: 32px; font-weight: 400; display: block; }
.footer__logo small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 400;
}
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 11px; letter-spacing: .2em; }
.footer p, .footer a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer a:hover { color: var(--gold); }
.share { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.share a {
  background: transparent; border: 0;
  font-family: var(--sans); font-size: 13px;
  color: rgba(255,255,255,.7); cursor: pointer;
  padding: 6px 0; text-align: left; text-decoration: none;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.share a:hover { color: var(--gold); transform: translateX(3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0; font-size: 12px;
}
.footer__bottom .container {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.5); }

/* ---- Lightbox / Gallery slider ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 18, 12, .96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  position: relative;
  max-width: 92vw; max-height: 86vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox__img.is-loaded { opacity: 1; }
.lightbox__btn {
  position: absolute; z-index: 2;
  background: transparent; border: 1px solid rgba(255,255,255,.3);
  color: #fff; cursor: pointer;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px; line-height: 1;
  transition: all .25s var(--ease);
  border-radius: 50%;
}
.lightbox__btn:hover { background: var(--gold); color: var(--green-900); border-color: var(--gold); }
.lightbox__close { top: 32px; right: 32px; font-size: 24px; }
.lightbox__prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-family: var(--serif); font-variant-numeric: oldstyle-nums;
  font-size: 16px; letter-spacing: .1em;
}
.lightbox__caption {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .lightbox__btn { width: 44px; height: 44px; }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__counter { bottom: 16px; }
  .lightbox__caption { bottom: 50px; font-size: 11px; }
}
body.is-locked { overflow: hidden; }

.gallery__item { cursor: zoom-in; }

/* ---- Contact modal ---- */
.contact-modal {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.contact-modal.is-open { display: flex; }
.contact-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(22, 42, 26, .72);
  backdrop-filter: blur(4px);
  animation: cmFade .2s ease;
}
.contact-modal__card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 30px 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  animation: cmPop .28s var(--ease);
}
.contact-modal__close {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px;
  border: 0; background: transparent; cursor: pointer;
  color: var(--muted); font-size: 28px; line-height: 1;
}
.contact-modal__close:hover { color: var(--ink); }
.contact-modal__card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--green-900);
}
.contact-modal__card p {
  margin: 0 0 22px;
  color: var(--ink-2);
}
.contact-form__field { margin-bottom: 16px; }
.contact-form__field label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form__field input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
}
.contact-form__field input:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form__agree {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; line-height: 1.5;
  color: var(--muted);
  margin: 4px 0 18px;
}
.contact-form__agree input {
  margin-top: 2px;
  accent-color: var(--green-800);
}

.contact-toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 10000;
  transform: translateX(-50%) translateY(12px);
  background: var(--green-900);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .03em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.contact-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@keyframes cmFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes cmPop { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: none } }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; transform: none; opacity: 1; transition: none; }
  .hero__bg { display: none; }
  .hero { background: #0a120c; }
  * { scroll-behavior: auto; }
}

/* ---- Print / PDF — сохранить вид как на сайте ---- */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  html, body { background: var(--cream); }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__bg { animation: none !important; transform: none !important; }
  .lightbox, .skip-link, .hero__scroll, .nav__toggle, .nav__mobile { display: none !important; }
  .nav { position: static !important; backdrop-filter: none; }
  .hero { min-height: auto; padding: 90px 0 110px; }
  .section { page-break-inside: auto; }
  h1, h2, h3 { page-break-after: avoid; }
  .feature, .aud, .price, .review, .place, .gallery__item { page-break-inside: avoid; }
  .footer { page-break-inside: avoid; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root { --container: 960px; }
  .section { padding: 110px 0; }
  .grid-2, .grid-2--wide { gap: 60px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 768px) {
  :root { --container: 100%; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .grid-2, .grid-2--wide { grid-template-columns: 1fr; gap: 50px; }
  .numbers { padding: 50px 0; }
  .numbers__inner { grid-template-columns: repeat(2, 1fr); }
  .num { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px; }
  .num:nth-child(odd) { border-right: 1px solid var(--line); }
  .num:nth-last-child(-n+2) { border-bottom: 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .aud { border-right: 0; }
  .prices { grid-template-columns: 1fr; }
  .price { border-right: 0; border-bottom: 1px solid var(--line); }
  .price:last-child { border-bottom: 0; }
  .reviews { grid-template-columns: 1fr; gap: 50px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { padding: 100px 24px; }
  .hero__subtitle { font-size: 18px; }
  .section__head { margin-bottom: 50px; }
  .place { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .place img { width: 100%; height: auto; max-width: 400px; margin: 0 auto; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .contact-modal__card { padding: 30px 22px 22px; }
  .contact-modal__card h3 { font-size: 30px; }
  .footer__bottom .container { flex-direction: column; gap: 10px; }
  .price--premium { padding: 40px 20px; }
}
