:root {
  --green: #128a4a;
  --green-dark: #0b5c32;
  --green-deep: #073c22;
  --mint: #e7f7ee;
  --lime: #d6f26a;
  --sun: #ffe566;
  --teal: #14b8a6;
  --ink: #143024;
  --muted: #3f5a4a;
  --line: #d7eadf;
  --white: #fff;
  --display: "Sora", "Segoe UI", sans-serif;
  --body: "Nunito", "Segoe UI", sans-serif;
  --wrap: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.5rem 0.8rem;
  background: var(--green-dark);
  color: var(--white);
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 4vw;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--green-dark);
}

.nav a.btn {
  color: var(--white);
}

.nav a.btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 1rem;
}

.btn-light {
  background: var(--lime);
  color: var(--green-deep);
}

.btn-light:hover {
  background: var(--sun);
  color: var(--green-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgb(255 255 255 / 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 0.12);
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 85% 10%, #ffe566 0 8%, transparent 9%),
    linear-gradient(135deg, #0b5c32 0%, #128a4a 55%, #1db56a 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: 34rem;
  padding-block: 3.5rem 3rem;
}

.pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  font-weight: 800;
  font-size: 0.86rem;
}

.hero h1,
.section h2,
.place h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  max-width: 14ch;
}

.lead,
.intro,
.prose p,
.place p {
  color: inherit;
}

.lead {
  max-width: 38rem;
  margin: 1rem 0 1.5rem;
  font-size: 1.15rem;
  color: #e7f7ee;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-art {
  display: grid;
  place-items: center;
}

.greenhouse {
  width: min(100%, 26rem);
  filter: drop-shadow(0 18px 30px rgb(7 60 34 / 0.28));
}

.section {
  padding-block: 4.2rem;
}

.section-alt {
  background: var(--mint);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow.light {
  color: var(--lime);
}

.section h2,
.place h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.intro {
  max-width: 42rem;
  margin: 0.8rem 0 1.8rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgb(11 92 50 / 0.06);
}

.card h3 {
  margin: 0.4rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-size: 1.35rem;
}

.card-green .icon {
  background: #d8f5e3;
}

.card-teal .icon {
  background: #d7f6f3;
}

.card-sun .icon {
  background: #fff4c4;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.place {
  padding-block: 4rem;
  background: linear-gradient(120deg, #0b5c32, #128a4a 60%, #0f766e);
  color: var(--white);
}

.place-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.place p {
  max-width: 38rem;
  margin: 0.8rem 0 0;
  color: #dff6e8;
}

.place-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: var(--white);
  color: var(--ink);
}

.place-card p {
  margin: 0;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.place-card strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.mail-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.5rem;
  background: var(--lime);
  color: var(--green-deep);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
}

.mail-card span {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mail-card:hover {
  background: var(--sun);
}

.footer {
  background: var(--green-deep);
  color: #c9ead6;
  padding: 1.3rem 0;
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .split,
  .place-grid,
  .contact,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 2.4rem;
  }

  .header {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
