* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #223326;
  background: #f7f3e8;
  line-height: 1.6;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7%;
  background: transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 43, 23, 0.5), rgba(18, 43, 23, 0));
  z-index: -1;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

nav a:hover {
  color: #d7c48c;
}

.hero {
  position: relative;
  height: 20vh;
  min-height: 180px;
  padding: 0 7%;
  color: white;
  background:
    linear-gradient(rgba(18, 43, 23, 0.25), rgba(18, 43, 23, 0.25)),
    url("../images/Live Oak arch .jpg");
  background-size: cover;
  background-position: center 85%;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #d7c48c;
}

.eyebrow.dark {
  color: #7d6a2e;
}

h1,
h2,
h3 {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 800;
}

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

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

h3 {
  font-size: 1.25rem;
  color: #1f3b24;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

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

.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.button.primary {
  background: #d7c48c;
  color: #1f3b24;
}

.button.secondary {
  border: 2px solid white;
  color: white;
}

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

.section {
  padding: 80px 7%;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 12px;
}

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

.card {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31, 59, 36, 0.12);
  border: 1px solid rgba(31, 59, 36, 0.08);
}

.card span {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

.alt {
  background: #e7eadc;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 0;
  background: white;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31, 59, 36, 0.1);
}

.checklist li {
  margin-bottom: 16px;
  padding-left: 34px;
  position: relative;
  font-weight: 800;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background: #1f3b24;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
}

.cta-banner {
  margin: 20px 4% 40px;
  padding: 56px;
  border-radius: 24px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #1f3b24, #375f3a);
}

.cta-banner p {
  margin-bottom: 26px;
}

.cta-banner h2 {
  color: white;
}

.contact {
  text-align: center;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  display: inline-block;
  margin-top: 28px;
  padding: 32px 44px;
  background: white;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(31, 59, 36, 0.12);
}

.contact-box p {
  margin: 10px 0;
}

footer {
  padding: 28px 7%;
  background: #1f3b24;
  color: white;
  text-align: center;
}

.nursery-intro {
  padding: 64px 7% 70px;
  text-align: center;
  background: #f7f3e8;
}

.nursery-intro h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #1f3b24;
}

.nursery-intro p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.nursery-intro .hero-buttons {
  margin-top: 28px;
}

.dark-button {
  border: 2px solid #1f3b24;
  color: #1f3b24;
}

/*Contact Page */
.contact-hero {
  min-height: 65vh;
  display: flex;
  background:
    linear-gradient(rgba(18, 43, 23, 0.22), rgba(18, 43, 23, 0.22)),
    url("../images/Live\ Oak\ and\ Flowers.jpg");
  background-size: cover;
  background-position: center;
}

.contact-form {
  max-width: 620px;
  margin: 34px auto 0;
  padding: 32px;
  background: white;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(31, 59, 36, 0.12);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #1f3b24;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(31, 59, 36, 0.25);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #1f3b24;
}

/* About Page */
.hero.why-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 7% 70px;
  background:
    linear-gradient(rgba(18, 43, 23, 0.22), rgba(18, 43, 23, 0.22)),
    url("../images/Live\ Oak.jpg");
  background-size: cover;
  background-position: center;
}

.about-photo-cta {
  margin: 20px 7% 90px;
  position: relative;
}

.about-photo-cta img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 25px rgba(31, 59, 36, 0.12);
  filter: brightness(0.85) saturate(0.95);
}

.about-cta-card {
  max-width: 520px;
  margin: -90px auto 0;
  position: relative;
  padding: 34px;
  background: #fffaf0;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(31, 59, 36, 0.18);
}

.about-cta-card h2 {
  margin-bottom: 10px;
}

.about-cta-card p {
  margin-bottom: 22px;
}

.about-intro {
  text-align: center;
  padding: 70px 7%;
}

.about-intro h1 {
  margin: 10px 0 26px;
  color: #1f3b24;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.22rem;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .site-header {
    padding: 18px 5%;
    gap: 10px;
  }

  .logo {
    font-size: 1.4rem;
  }

  nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
  }

  .hero {
    height: 28vh;
    min-height: 220px;
    padding: 0 6%;
    background-position: center;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero p {
    max-width: 340px;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: auto;
    max-width: none;
    padding: 12px 18px;
    font-size: 0.9rem;
    text-align: center;
  }

  .section {
    padding: 56px 7%;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .cards {
    gap: 18px;
  }

  .card,
  .checklist,
  .contact-form,
  .contact-box {
    padding: 24px;
  }
}
