:root {
  --ink: #20302a;
  --muted: #67756f;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --sage: #dce9df;
  --sage-2: #eef5ef;
  --peach: #f8d8bf;
  --gold: #f2c86e;
  --green: #2f6d57;
  --green-dark: #245342;
  --line: #e5ebe7;
  --shadow: 0 18px 50px rgba(39, 68, 55, .11);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,235,231,.8);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
}

.brand-text {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}

.main-nav a:not(.btn):hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--sage-2);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .85rem 1.3rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: .65rem 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid #b8c9bf;
}

.btn-ghost:hover {
  color: #fff;
}

.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(242,200,110,.26), transparent 28%),
    linear-gradient(135deg, #fbf8f1 0%, #f5f9f5 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  letter-spacing: -.05em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.035em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.8rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-note span::before {
  content: "•";
  color: var(--green);
  margin-right: .45rem;
}

.hero-art {
  position: relative;
  min-height: 470px;
  border-radius: 40px;
  background: #dfeee4;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sun {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  top: 48px;
  right: 60px;
}

.cloud {
  position: absolute;
  width: 90px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  width: 34px;
  height: 34px;
  left: 17px;
  top: -14px;
}

.cloud::after {
  width: 44px;
  height: 44px;
  right: 14px;
  top: -22px;
}

.cloud-a { top: 110px; left: 48px; }
.cloud-b { top: 165px; right: 28px; transform: scale(.75); }

.hill {
  position: absolute;
  left: -15%;
  width: 130%;
  border-radius: 50% 50% 0 0;
}

.hill-a {
  height: 180px;
  bottom: -55px;
  background: #84b698;
  transform: rotate(-4deg);
}

.hill-b {
  height: 145px;
  bottom: -85px;
  background: #5d9678;
  transform: rotate(4deg);
}

.house {
  position: absolute;
  width: 190px;
  height: 165px;
  left: 50%;
  bottom: 95px;
  transform: translateX(-50%);
  background: #fff8ed;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 14px 30px rgba(61,89,75,.14);
}

.roof {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #ef9e78;
  transform: rotate(45deg);
  left: 20px;
  top: -72px;
  border-radius: 20px 4px 10px 4px;
}

.window {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #b9d7e6;
  left: 34px;
  top: 58px;
}

.door {
  position: absolute;
  width: 48px;
  height: 74px;
  background: #7b5847;
  right: 33px;
  bottom: 0;
  border-radius: 18px 18px 0 0;
}

.flower {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f6b7bd;
  box-shadow:
    15px 0 0 #f6b7bd,
    7px -12px 0 #f6b7bd,
    7px 12px 0 #f6b7bd;
}

.flower::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 42px;
  background: #3e775d;
  top: 10px;
  left: 13px;
}

.flower-a { left: 60px; bottom: 88px; }
.flower-b { right: 65px; bottom: 82px; transform: scale(.8); }

.art-card {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(39,68,55,.12);
}

.art-card strong {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
}

.art-card span {
  color: var(--muted);
  font-size: .8rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.soft-bg {
  background: var(--sage-2);
}

.two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:first-child {
  margin-top: .1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading p {
  color: var(--muted);
}

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

.card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(40,66,55,.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

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

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

.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-number {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  color: var(--green);
}

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

.cta-section {
  padding-top: 1rem;
}

.cta-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-card .eyebrow {
  color: #cfe6da;
}

.cta-card p {
  margin-bottom: 0;
  color: #dbeae1;
}

.btn-light {
  flex: 0 0 auto;
  background: white;
  color: var(--green);
}

.btn-light:hover {
  background: #f4f4f4;
  color: var(--green-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-grid > div:first-child p {
  color: var(--muted);
  max-width: 560px;
}

.contact-card {
  display: grid;
  gap: .45rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.contact-card span {
  margin-top: .4rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-card a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-card small {
  margin-top: 1rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .9rem;
}

.footer-wrap > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-wrap strong {
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

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

  .main-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: .8rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: .8rem;
    border-radius: 12px;
  }

  .main-nav .btn {
    margin-top: .4rem;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 390px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero {
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-art {
    min-height: 330px;
    border-radius: 28px;
  }

  .house {
    transform: translateX(-50%) scale(.8);
    bottom: 70px;
  }

  .sun {
    width: 68px;
    height: 68px;
    top: 34px;
    right: 36px;
  }

  .cards,
  .features {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

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

  *, *::before, *::after {
    transition: none !important;
  }
}
