:root {
  --bg: #f7f4ed;
  --surface: #ffffff;
  --surface-soft: #eef5ec;
  --text: #16231b;
  --muted: #637066;
  --line: #dbe3d7;
  --accent: #2f7d4f;
  --accent-dark: #1f5c3a;
  --accent-soft: #dff0e6;
  --gold: #d8a748;
  --shadow: 0 24px 70px rgba(20, 45, 30, 0.14);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, 0.88);
  border-bottom: 1px solid rgba(219, 227, 215, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(47, 125, 79, 0.24);
}

.brand-text {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--accent-soft);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.nav-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.nav-disabled {
  text-decoration: none;
}

.main-nav a {
  color: var(--text);
}

.nav-active {
  padding: 10px 14px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
}

.nav-disabled {
  color: #9aa59b;
  cursor: not-allowed;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-dropdown-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  min-width: 300px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

a.nav-dropdown-item:hover,
a.nav-dropdown-item:focus-visible {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-dropdown-item.nav-disabled {
  color: #9aa59b;
  cursor: not-allowed;
}

.nav-dropdown-toggle {
  text-decoration: none;
}

.nav-dropdown.is-current .nav-dropdown-toggle.nav-active {
  pointer-events: auto;
}

@media (hover: hover) and (min-width: 1061px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent-soft);
  border-radius: 999px;
}

.header-phone .phone-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(8px);
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -120px;
  background: rgba(47, 125, 79, 0.12);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -160px;
  background: rgba(216, 167, 72, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lead,
.section-heading p,
.split-grid p,
.promo-card p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 18px 34px rgba(47, 125, 79, 0.26);
}

.btn-secondary {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stats-wide {
  max-width: none;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats-wide span {
  font-size: 13px;
  line-height: 1.35;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 22px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-gallery {
  position: relative;
  height: 100%;
  min-height: 528px;
}

.gallery-main {
  display: block;
  width: 100%;
  height: 528px;
  object-fit: cover;
  border-radius: 26px;
}

.gallery-thumbs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.is-active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(47, 125, 79, 0.55), 0 1px 4px rgba(0, 0, 0, 0.2);
}

.gallery-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--accent);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  top: 34px;
  right: 34px;
  max-width: 285px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.floating-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.floating-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.floating-list li + li {
  margin-top: 6px;
}

.floating-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--accent);
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-plans {
  padding-top: 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.plan-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.plan-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #f1efe8;
}

.plan-card figcaption {
  padding: 16px 20px 20px;
  color: var(--muted);
  font-weight: 700;
}

.plans-gallery {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.plans-gallery-main {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: min(72vw, 560px);
  object-fit: cover;
  border-radius: 22px;
}

.plans-gallery .gallery-thumbs {
  position: static;
  margin-top: 12px;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.plans-gallery .gallery-thumb {
  border-radius: 10px;
  border-width: 2px;
}

.location-blocks {
  display: grid;
  gap: 22px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
  aspect-ratio: 16 / 9;
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.media-split .plans-gallery {
  height: 100%;
}

.media-split .plans-gallery-main {
  aspect-ratio: 4 / 3;
  max-height: none;
}

.media-split-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.media-split-aside h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.media-split-aside p {
  margin: 0;
  color: var(--muted);
}

.media-split-aside .video-card {
  margin-top: 4px;
}

.media-split-aside .btn {
  margin-top: auto;
}

.media-split-tags .object-tags,
.media-split-tags .service-grid {
  margin-top: 8px;
  grid-template-columns: 1fr;
}

.media-split-tags .service-grid span {
  padding: 14px 16px;
}

.location-block h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--accent-dark);
}

.location-block p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid-wide {
  grid-template-columns: repeat(5, 1fr);
}

.feature-grid-about {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 900px) {
  .feature-grid-about {
    grid-template-columns: repeat(6, 1fr);
  }

  .feature-grid-about .feature-card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .feature-grid-about .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .feature-grid-about .feature-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.about-lead-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-lead-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.about-lead-list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.feature-list li + li {
  margin-top: 12px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--accent);
  font-weight: 800;
}

.feature-card,
.terms-card,
.route-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.feature-card {
  padding: 28px;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--accent-dark);
  font-size: 24px;
  background: var(--accent-soft);
  border-radius: 16px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 54px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.route-item {
  min-height: 160px;
  padding: 26px;
}

.route-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 38px;
  line-height: 1;
}

.route-item span {
  color: var(--muted);
}

.terms-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.terms-panel p {
  color: var(--muted);
  font-size: 18px;
}

.terms-card {
  padding: 30px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--accent);
  border-radius: 50%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-grid span {
  padding: 18px 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 227, 215, 0.9);
  border-radius: 18px;
}

.promo-section {
  padding-top: 0;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 34px;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(216, 167, 72, 0.35), transparent 30%),
    linear-gradient(135deg, #244b33, #173323);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.promo-card .eyebrow,
.promo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--text);
  background: #fff;
  border-radius: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--text);
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 125, 79, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.link-button {
  display: inline;
  padding: 0;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 34px 0;
  background: #111f16;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

.footer-links .link-button {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.62);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 34px;
  background: var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.modal-dialog-wide {
  width: min(760px, 100%);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  background: #f2f5f1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal-form {
  padding: 0;
}

.privacy-text {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.privacy-text p {
  margin-bottom: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  display: none;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 40px));
  padding: 16px 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #173323;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.toast.is-visible {
  display: block;
}

.commercial-hero {
  padding-top: 48px;
  padding-bottom: 64px;
}

.commercial-hero h1 {
  max-width: 820px;
}

.commercial-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.commercial-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.commercial-chip:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  border-color: rgba(47, 125, 79, 0.2);
}

.object-section {
  scroll-margin-top: 96px;
}

.object-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  align-items: start;
}

.object-grid-reverse .object-gallery-wrap,
.object-grid-reverse .placeholder-card {
  order: 2;
}

.object-grid-reverse .object-content {
  order: 1;
}

.object-gallery-wrap {
  position: relative;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.object-gallery {
  min-height: 0;
}

.object-gallery .gallery-main {
  height: clamp(280px, 38vw, 460px);
}

.object-gallery .gallery-thumbs {
  position: static;
  margin-top: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.gallery-thumbs-many {
  grid-template-columns: repeat(3, 1fr);
}

.object-content-wide {
  max-width: none;
}

.object-price {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.object-price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.object-address {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.object-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.object-extra {
  margin-top: 42px;
}

.object-features {
  margin-bottom: 24px;
}

.object-stats {
  margin-top: 42px;
}

.object-tags {
  margin-top: 36px;
}

.map-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  min-height: 320px;
  padding: 36px;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 167, 72, 0.18), transparent 34%),
    linear-gradient(145deg, #eef5ec, #fff);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.placeholder-card-accent {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 125, 79, 0.14), transparent 36%),
    linear-gradient(145deg, #fff, #eef5ec);
}

.placeholder-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--accent-dark);
  font-size: 26px;
  background: var(--accent-soft);
  border-radius: 18px;
}

.placeholder-card strong,
.placeholder-card span {
  display: block;
}

.placeholder-card span {
  color: var(--muted);
  font-weight: 600;
}

.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.lead-form select {
  min-height: 54px;
}

.lead-form textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.contact-hero-phone {
  margin-top: 8px;
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(20, 45, 30, 0.08);
}

.contact-card-primary {
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 167, 72, 0.16), transparent 34%),
    linear-gradient(145deg, #fff, var(--surface-soft));
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-link {
  color: var(--accent-dark);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.contact-panel-form p,
.contact-objects p {
  color: var(--muted);
}

.contact-object-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-object-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-object-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.contact-object-item strong a {
  color: var(--text);
  text-decoration: none;
}

.contact-object-item strong a:hover {
  color: var(--accent-dark);
}

.contact-object-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-object-meta {
  margin-top: 4px;
  color: var(--accent-dark) !important;
  font-weight: 600;
}

.contact-maps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.map-card-labeled h3 {
  margin: 0;
  padding: 18px 20px 0;
  font-size: 18px;
  color: var(--accent-dark);
}

.map-card-labeled iframe {
  margin-top: 12px;
}

@media (min-width: 1200px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav actions";
    align-items: center;
    column-gap: 24px;
    padding: 14px 0;
  }

  .header-bar {
    display: contents;
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
  }

  .main-nav {
    grid-area: nav;
    justify-content: center;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .main-nav {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .terms-panel,
  .promo-card,
  .plan-grid,
  .object-grid,
  .contact-panel,
  .contact-maps,
  .contact-grid,
  .media-split {
    grid-template-columns: 1fr;
  }

  .object-grid-reverse .object-gallery-wrap,
  .object-grid-reverse .placeholder-card,
  .object-grid-reverse .object-content {
    order: initial;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-gallery {
    min-height: 0;
  }

  .gallery-main {
    height: clamp(280px, 50vw, 440px);
  }

  .feature-grid,
  .feature-grid-wide,
  .feature-grid-about,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid-about .feature-card:nth-child(4),
  .feature-grid-about .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .about-lead-list li {
    font-size: 16px;
  }

  .hero-stats-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-item strong {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translateY(-8px);
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: translateY(0);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    padding: 8px 0;
  }

  .section {
    padding: 40px 0;
  }

  .section-plans {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading.compact {
    margin-bottom: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.08;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 5.8vw, 30px);
    line-height: 1.1;
  }

  h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .nav-burger {
    display: flex;
  }

  .header-phone {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }

  .header-phone-text {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(20, 45, 30, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-disabled,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    padding: 8px 12px;
    font-size: 13px;
  }

  .nav-active {
    border-radius: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: flex;
  }

  .nav-dropdown-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--surface-soft);
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 4px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-lead,
  .section-heading p,
  .split-grid p,
  .promo-card p,
  .terms-panel p,
  .location-block p,
  .about-lead-list li {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-lead {
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .hero-stats-wide {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-stats div {
    padding: 10px;
    border-radius: 14px;
  }

  .hero-stats strong {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .hero-stats span,
  .hero-stats-wide span {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-card {
    padding: 10px;
    border-radius: 20px;
  }

  .gallery-main {
    height: clamp(200px, 54vw, 280px);
    border-radius: 14px;
  }

  .gallery-thumbs {
    position: static;
    margin-top: 8px;
    padding: 6px;
    gap: 6px;
    border-radius: 14px;
  }

  .gallery-dots {
    bottom: 12px;
    gap: 7px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .plans-gallery .gallery-thumbs,
  .plans-gallery .gallery-thumbs-many {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 6px;
  }

  .plans-gallery .gallery-thumb {
    border-radius: 8px;
  }

  .gallery-thumb {
    border-radius: 10px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 8px;
    padding: 14px;
    box-shadow: none;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: 14px;
  }

  .floating-list li {
    font-size: 13px;
    line-height: 1.4;
  }

  .floating-list li + li {
    margin-top: 4px;
  }

  .plans-gallery {
    padding: 10px;
    border-radius: 20px;
  }

  .plans-gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: min(78vw, 420px);
    border-radius: 14px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-card {
    border-radius: 18px;
  }

  .media-split {
    gap: 14px;
  }

  .media-split-aside {
    padding: 14px;
    border-radius: 20px;
  }

  .media-split .plans-gallery-main {
    aspect-ratio: 1 / 1;
  }

  .about-lead-list {
    gap: 10px;
  }

  .about-lead-list li {
    padding-left: 20px;
  }

  .location-blocks {
    gap: 14px;
  }

  .location-block h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .split-grid {
    gap: 18px;
  }

  .route-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .route-item {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .route-item strong {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .route-item span {
    font-size: 13px;
    line-height: 1.35;
  }

  .feature-grid,
  .feature-grid-about {
    gap: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-card {
    padding: 14px;
    border-radius: 16px;
  }

  .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    font-size: 18px;
    border-radius: 11px;
  }

  .feature-list li + li {
    margin-top: 6px;
  }

  .terms-panel {
    gap: 20px;
  }

  .terms-card {
    padding: 16px;
    border-radius: 18px;
  }

  .check-list {
    gap: 10px;
    margin-bottom: 16px;
  }

  .check-list li {
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.45;
  }

  .check-list li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .service-grid span {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.35;
    border-radius: 12px;
  }

  .promo-card {
    gap: 18px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .lead-form {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 46px;
    border-radius: 12px;
  }

  .lead-form textarea {
    min-height: 88px;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .site-footer {
    padding: 24px 0;
  }

  .footer-inner p {
    font-size: 14px;
  }

  .modal {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-dialog {
    width: 100%;
    max-height: 90vh;
    padding: 22px 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    font-size: 13px;
    max-width: none;
    transform: none;
    border-radius: 14px;
  }

  .commercial-hero {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .commercial-quicknav {
    gap: 6px;
    margin-top: 12px;
  }

  .commercial-chip {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .object-section {
    scroll-margin-top: 72px;
  }

  .object-grid {
    gap: 16px;
  }

  .object-gallery-wrap {
    padding: 10px;
    border-radius: 20px;
  }

  .object-gallery .gallery-main {
    height: clamp(200px, 54vw, 280px);
    border-radius: 14px;
  }

  .object-price {
    margin-bottom: 12px;
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .object-price span {
    font-size: 13px;
  }

  .object-address {
    margin-top: 12px;
    font-size: 14px;
  }

  .object-actions {
    gap: 8px;
    margin-top: 16px;
    flex-direction: column;
  }

  .object-actions .btn {
    width: 100%;
  }

  .object-extra {
    margin-top: 24px;
  }

  .object-features {
    margin-bottom: 14px;
  }

  .object-stats {
    margin-top: 24px;
  }

  .object-tags {
    margin-top: 20px;
  }

  .map-card {
    border-radius: 18px;
  }

  .map-card iframe {
    height: 240px;
  }

  .map-card-labeled h3 {
    padding: 12px 14px 0;
    font-size: 16px;
  }

  .contact-grid {
    gap: 10px;
  }

  .contact-card {
    padding: 14px;
    border-radius: 16px;
  }

  .contact-card h2 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .contact-card .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    font-size: 18px;
    border-radius: 10px;
  }

  .contact-link {
    font-size: 18px;
  }

  .contact-hero-phone {
    width: 100%;
    min-height: 44px;
  }

  .contact-panel {
    gap: 18px;
  }

  .contact-object-list {
    gap: 8px;
    margin-top: 16px;
  }

  .contact-object-item {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .contact-object-item strong {
    font-size: 15px;
  }

  .contact-object-item span {
    font-size: 13px;
  }

  .contact-maps {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-inner {
    padding: 6px 0;
  }

  .section {
    padding: 28px 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 13px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 10px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(22px, 7vw, 28px);
  }

  h2 {
    margin-bottom: 8px;
    font-size: clamp(19px, 5.2vw, 24px);
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-stats,
  .hero-stats-wide {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .hero-stats div {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero-stats strong {
    font-size: 14px;
  }

  .hero-stats span,
  .hero-stats-wide span {
    font-size: 10px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .feature-card {
    padding: 12px;
    border-radius: 14px;
  }

  .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    font-size: 17px;
    border-radius: 10px;
  }

  .gallery-main,
  .object-gallery .gallery-main {
    height: clamp(170px, 48vw, 220px);
  }

  .plans-gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: min(82vw, 360px);
  }

  .gallery-thumbs-many {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-gallery .gallery-thumbs,
  .plans-gallery .gallery-thumbs-many {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 4px;
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .route-item {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .route-item strong {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .route-item span {
    font-size: 12px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .service-grid span {
    padding: 8px 8px;
    font-size: 11px;
    line-height: 1.3;
    border-radius: 10px;
    text-align: center;
  }

  .commercial-hero {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .commercial-quicknav {
    gap: 5px;
    margin-top: 10px;
  }

  .commercial-chip {
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
  }

  .object-extra,
  .object-stats {
    margin-top: 16px;
  }

  .object-tags {
    margin-top: 14px;
  }

  .contact-card {
    padding: 12px;
    border-radius: 14px;
  }

  .contact-card h2 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .contact-link {
    font-size: 16px;
  }

  .contact-panel {
    gap: 14px;
  }

  .map-card iframe {
    height: 180px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer {
    padding: 18px 0;
  }
}
