:root {
  --green: #009f6b;
  --green-dark: #006f4f;
  --ink: #17332b;
  --muted: #66766f;
  --surface: #ffffff;
  --soft: #f2f8f5;
  --blue-soft: #eef6fb;
  --line: #d7e7df;
  --shadow: 0 20px 50px rgba(23, 51, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 166px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 18px 0 46px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.hero-content p,
.section p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

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

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.details article {
  padding: 22px;
  background: var(--surface);
}

.details span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.details strong {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.about {
  border-top: 1px solid var(--line);
}

.nursery {
  align-items: center;
}

.section-copy {
  max-width: 640px;
}

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

.feature-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #cfe1eb;
  border-radius: 8px;
  background: var(--blue-soft);
  color: #24485b;
  font-weight: 800;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin: 64px 0 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p {
  margin-bottom: 0;
}

.contact-links {
  justify-content: flex-end;
  max-width: 330px;
  margin-top: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero {
    gap: 28px;
    min-height: 0;
    padding-top: 16px;
  }

  .details,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header,
  main,
  footer {
    width: min(100% - 22px, 1120px);
  }

  .brand img {
    width: 148px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    padding: 8px 6px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
  }

  .section {
    gap: 18px;
    padding: 44px 0;
  }

  .hero-actions,
  .contact-links,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact {
    margin-top: 44px;
    padding: 22px;
  }
}
