:root {
  --bg: #ffffff;
  --ink: #0f1720;
  --muted: #5c6b63;
  --brand: #0b5b2b;
  --brand-ink: #e8f5ee;
  --alt: #f4f7f5;
  --ring: rgba(11, 91, 43, .35);
  --radius: 14px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin-inline: auto;
  padding: clamp(16px, 3vw, 24px);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid #e7ece9;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 800
}

.brand-mark {
  font-size: 1.4rem
}

.brand-text {
  letter-spacing: .2px
}

.nav a {
  margin-left: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600
}

.nav a:hover {
  color: var(--brand)
}

/* .hero {
  background: linear-gradient(180deg, var(--brand-ink), #fff)
} */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center
}

.hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 8px 0 10px
}

.hero p {
  color: var(--muted);
  margin: 0 0 12px
}

.hero .subtle {
  font-size: .95rem
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.hero {
  position: relative;
  z-index: 1;
  background: transparent;
}

.section {
  padding: 52px 0
}

.section-alt {
  background: var(--brand)
}

h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0 0 18px
}

h3 {
  margin: 0 0 8px
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

}

.card {
  background: var(--muted);
  border: 10px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .03)
}

.card p {
  margin: 0;
  color: black;
  font-weight: 600
}

.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);

}

.gallery img {
  width: 100%;
  z-index: 1;
  opacity: 1;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--muted);
  border: 10px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .03)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.contact-form {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid #e7ece9;
  border-radius: var(--radius);
  padding: 18px
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d9e4dd;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow .15s ease, border-color .15s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring)
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform .05s ease, background .15s ease
}

.btn:hover {
  background: #0a4e25
}

.btn:active {
  transform: translateY(1px)
}

.btn-alt {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand)
}

.btn-small {
  padding: 8px 12px;
  font-size: .95rem
}

.site-footer {
  border-top: 1px solid #e7ece9;
  background: #fff
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.tiny {
  color: var(--muted);
  font-size: .9rem
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: 1fr 1fr
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr
  }
}

.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/grass.png") center center / cover no-repeat;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}