:root {
  --bg: #fbfaf7;
  --text: #17202a;
  --muted: #65717e;
  --card: #ffffff;
  --accent: #2f6f4e;
  --accent-dark: #25583e;
  --border: #e7e1d8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(20, 36, 28, .58), rgba(20, 36, 28, .58)),
    radial-gradient(circle at 25% 30%, #8cc6a1, transparent 35%),
    linear-gradient(135deg, #2f6f4e, #d9c7a3);
  color: white;
  display: flex;
  flex-direction: column;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  opacity: .95;
  font-weight: 600;
}

.hero-content {
  width: min(920px, calc(100% - 32px));
  margin: auto;
  padding: 80px 0 120px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero .eyebrow { color: #d9ffd8; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 { font-size: clamp(1.8rem, 3vw, 3rem); }

.lead {
  max-width: 680px;
  font-size: 1.2rem;
  opacity: .95;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover { background: var(--accent-dark); }

.btn.secondary {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.45);
  color: white;
}

.section { padding: 78px 0; }

.muted { background: #f1ede5; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.card, .map-box, .price-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(23, 32, 42, .06);
}

.price-table {
  display: grid;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  padding: 0;
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.price-table div:last-child { border-bottom: 0; }

.price-table span { color: var(--accent-dark); font-weight: 800; }

.note { color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.photo {
  min-height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
    linear-gradient(135deg, #abc7a5, #d7c09a);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.map-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  padding: 24px 16px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .two-columns, .cards, .gallery, .contact-grid { grid-template-columns: 1fr; }
  .price-table div { flex-direction: column; gap: 4px; }
}
