:root {
  --bg: #07170f;
  --bg-deep: #04100a;
  --surface: #10251a;
  --surface-soft: #173923;
  --surface-quiet: #0c1e14;
  --text: #edf5e8;
  --muted: #a7b9a6;
  --line: rgba(185, 214, 177, 0.18);
  --leaf: #58a05f;
  --leaf-dark: #0f2d1c;
  --meadow: #9abd68;
  --sun: #d6a64b;
  --clay: #c48b5c;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(88, 160, 95, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(7, 23, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, #274d2f, var(--leaf));
  color: #f8ffe9;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(4, 16, 10, 0.4);
}

.brand-copy {
  display: grid;
}

.brand strong,
.brand small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  border-radius: 8px;
  color: #c0d0bd;
  padding: 9px 11px;
  font-size: 15px;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(88, 160, 95, 0.18);
  color: #f3ffe8;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(86px, 13vw, 156px) clamp(18px, 4vw, 58px) clamp(44px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(4, 16, 10, 0.9), rgba(13, 48, 28, 0.65) 54%, rgba(7, 23, 15, 0.18)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1900&q=82") center/cover;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(7, 23, 15, 0), var(--bg));
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7c978;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #edf5e8;
  color: #10251a;
  box-shadow: 0 14px 34px rgba(17, 44, 25, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(8, 28, 17, 0.58);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.hero-panel div {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-panel strong {
  font-size: 18px;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.section > p,
.feature-card p,
.notice p,
.photo-card p,
.contacts p,
.payments p,
.documents p {
  color: var(--muted);
}

.intro {
  background:
    radial-gradient(circle at 92% 6%, rgba(214, 166, 75, 0.15), transparent 28%),
    var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.notice,
.contact-grid article,
.payment-box,
.document-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  min-width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: #dceccd;
  font-weight: 700;
}

.life-section,
.payments {
  background:
    linear-gradient(180deg, rgba(23, 57, 35, 0.9), rgba(12, 30, 20, 0.92)),
    var(--surface-soft);
}

.life-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  grid-auto-rows: minmax(320px, 36vw);
  gap: 18px;
}

.photo-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 10, 0.08), rgba(4, 16, 10, 0.84));
}

.photo-card:hover::before {
  transform: scale(1.03);
}

.photo-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.photo-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.photo-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.photo-card.roads {
  grid-row: span 2;
}

.photo-card.roads::before {
  background-image: url("https://images.unsplash.com/photo-1444492417251-9c84a5fa18e0?auto=format&fit=crop&w=1200&q=80");
}

.photo-card.garden::before {
  background-image: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1200&q=80");
}

.photo-card.houses::before {
  background-image: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=80");
}

.announcements {
  background:
    linear-gradient(180deg, rgba(214, 166, 75, 0.11), rgba(214, 166, 75, 0)),
    var(--bg);
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice {
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr;
  gap: 18px;
  padding: 19px 22px;
}

.notice.highlight {
  border-color: rgba(214, 166, 75, 0.55);
  background: linear-gradient(90deg, rgba(214, 166, 75, 0.17), var(--surface));
}

.notice p {
  margin-bottom: 0;
}

.documents {
  background: var(--bg);
}

.document-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.document-list a {
  display: flex;
  min-height: 104px;
  align-items: center;
  padding: 18px;
  color: #edf5e8;
  font-weight: 700;
}

.document-list a::before {
  content: "";
  width: 10px;
  height: 46px;
  margin-right: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--meadow), var(--sun));
  flex: 0 0 auto;
}

.split,
.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: start;
}

.payment-box {
  padding: 24px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 700;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(88, 160, 95, 0.12), rgba(214, 166, 75, 0.1)),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: start;
  padding: 20px;
}

.contact-grid span {
  color: var(--muted);
  font-size: 14px;
}

.contact-grid a,
.contact-grid strong {
  color: #edf5e8;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: #030b07;
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1060px) {
  .site-header {
    gap: 14px;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 14px;
  }

  .life-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .feature-grid,
  .document-list,
  .split,
  .contacts,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .life-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(300px, auto);
  }

  .photo-card.roads {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .notice,
  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
