:root {
  --forest: #4f7143;
  --deep: #3f6337;
  --sage: #8ba77b;
  --soft-sage: #b7c6a5;
  --cream: #f7f4ed;
  --warm: #fcfaf6;
  --gold: #e9b949;
  --ink: #1e1e1e;
  --muted: #5f5f5f;
  --line: rgba(79, 113, 67, 0.18);
  --shadow: 0 18px 45px rgba(63, 99, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 104px;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(252, 250, 246, 0.94);
  border-bottom: 1px solid rgba(79, 113, 67, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 62px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 22px;
  width: 4px;
  height: 45px;
  background: var(--sage);
  border-radius: 999px;
  transform: rotate(13deg);
  transform-origin: bottom;
}

.brand-mark::after {
  left: 18px;
  height: 35px;
  background: var(--soft-sage);
  transform: rotate(-28deg);
}

.brand-mark span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f2c75c;
}

.brand-mark span:nth-child(1) { left: 14px; top: 15px; }
.brand-mark span:nth-child(2) { left: 25px; top: 5px; }
.brand-mark span:nth-child(3) { left: 32px; top: 25px; }
.brand-mark span:nth-child(4) { left: 5px; top: 31px; }

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-copy em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.22em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link {
  padding: 0 22px;
  color: var(--deep);
  border: 1px solid var(--forest);
}

.button {
  padding: 0 30px;
  border: 1px solid transparent;
}

.button-solid {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 10px 22px rgba(63, 99, 55, 0.16);
}

.button-outline {
  color: var(--deep);
  background: rgba(252, 250, 246, 0.82);
  border-color: var(--sage);
}

.button-light {
  color: var(--deep);
  background: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr);
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--warm) 0%, rgba(252, 250, 246, 0.95) 38%, rgba(252, 250, 246, 0) 56%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(44px, 7vw, 84px) clamp(24px, 5.5vw, 72px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.hero-lede {
  max-width: 505px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  max-width: 560px;
}

.trust-row div {
  position: relative;
  padding-left: 28px;
}

.trust-row div::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 0.92rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(24px, 5vw, 70px);
  display: grid;
  place-items: center;
  width: clamp(136px, 13vw, 178px);
  height: clamp(136px, 13vw, 178px);
  padding: 22px;
  color: #fff;
  background: #e9b949;
  border-radius: 50%;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 900;
  line-height: 1.16;
  box-shadow: 0 18px 36px rgba(83, 58, 12, 0.18);
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
}

.section-shell,
.feature-strip,
.split-section,
.forest-section,
.gallery-section,
.testimonial-section,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.approach-section {
  position: relative;
  margin-top: 24px;
  padding: 42px clamp(22px, 4vw, 48px) 38px;
  background: rgba(247, 244, 237, 0.96);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.visit-card h2,
.pathways h2,
.forest-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

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

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.approach-grid article {
  min-height: 162px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.approach-grid article:last-child {
  border-right: 0;
}

.approach-grid h3,
.feature-strip h3,
.pathway-grid h3 {
  margin: 14px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.approach-grid p,
.feature-strip p,
.pathway-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--forest);
}

.icon::before {
  font-size: 2.1rem;
}

.leaf::before { content: "⌁"; }
.sprout::before { content: "⌞"; }
.heart::before { content: "♥"; }
.tree::before { content: "♣"; }
.people::before { content: "●●"; font-size: 1.5rem; letter-spacing: -0.22em; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
  padding: 30px 34px;
  background: rgba(247, 244, 237, 0.78);
  border-radius: 22px;
}

.feature-strip article {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: #fff;
  border: 1px solid rgba(233, 185, 73, 0.45);
  border-radius: 50%;
  font-size: 1.8rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.15fr) minmax(270px, 0.8fr);
  gap: 18px;
  margin-top: 22px;
}

.about-copy,
.video-card,
.visit-card,
.pathways,
.forest-section,
.testimonial-section {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-copy {
  padding: 34px 36px;
  background: var(--warm);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 26px;
}

.video-card {
  margin: 0;
  padding: 18px;
  background: var(--warm);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.video-card {
  position: relative;
}

.video-card button {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #fff;
  background: rgba(30, 30, 30, 0.52);
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.video-card figcaption {
  margin-top: 16px;
  color: #7b552a;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  text-align: center;
}

.visit-card {
  padding: 34px 36px;
  color: #fff;
  background:
    radial-gradient(circle at 115% 70%, rgba(255, 255, 255, 0.16), transparent 32%),
    var(--forest);
}

.visit-card .eyebrow {
  color: #edf6e8;
}

.visit-card p {
  color: rgba(255, 255, 255, 0.9);
}

.visit-card .button {
  margin: 16px 0 22px;
}

.visit-phone {
  display: block;
  font-weight: 800;
}

.pathways {
  margin-top: 34px;
  padding: 42px clamp(22px, 4vw, 46px);
  background: var(--cream);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pathway-grid article {
  padding: 24px;
  background: rgba(252, 250, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.pathway-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 38px;
  padding: 0 12px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-weight: 900;
}

.forest-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(63, 99, 55, 0.96), rgba(79, 113, 67, 0.78)),
    url("assets/forest-wide-group.png") center / cover;
}

.forest-section .eyebrow,
.forest-section p {
  color: rgba(255, 255, 255, 0.86);
}

.forest-section ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forest-section li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-weight: 800;
}

.gallery-section {
  margin-top: 34px;
  padding: 42px clamp(18px, 4vw, 46px);
  background: var(--warm);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.testimonial-section {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr minmax(160px, 300px);
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 32px clamp(24px, 6vw, 86px);
  background: var(--cream);
}

.quote-mark {
  align-self: start;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.8;
}

blockquote {
  margin: 0;
}

blockquote p {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

cite {
  font-style: normal;
  color: var(--muted);
}

.testimonial-section img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 28px;
  margin-bottom: 28px;
  padding: 34px 0 20px;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  min-width: 0;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.site-footer p,
.site-footer a:not(.button) {
  display: block;
  color: var(--muted);
}

.site-footer .button {
  width: fit-content;
  min-height: 44px;
  margin-top: 12px;
  padding-inline: 20px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .primary-nav {
    order: 3;
  }

  .header-actions {
    justify-content: center;
    order: 4;
  }

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

  .hero-media {
    min-height: 460px;
  }

  .hero {
    background: var(--cream);
  }

  .approach-grid,
  .feature-strip,
  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid article:nth-child(2n) {
    border-right: 0;
  }

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

  .visit-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 80px;
    gap: 16px;
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 52px;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .brand-copy small,
  .brand-copy em {
    max-width: 170px;
    white-space: normal;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: var(--deep);
    border: 0;
    border-radius: 50%;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .primary-nav,
  .site-header.nav-open .header-actions {
    display: grid;
    justify-content: stretch;
  }

  .primary-nav {
    gap: 4px;
    padding-top: 10px;
  }

  .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    gap: 10px;
  }

  .phone-link,
  .button {
    width: 100%;
  }

  .hero-copy {
    padding: 36px 24px 42px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-buttons,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-shell,
  .feature-strip,
  .split-section,
  .forest-section,
  .gallery-section,
  .testimonial-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .approach-section {
    margin-top: 16px;
    border-radius: 22px;
  }

  .approach-grid,
  .feature-strip,
  .split-section,
  .pathway-grid,
  .forest-section,
  .gallery-grid,
  .testimonial-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .approach-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 8px;
  }

  .approach-grid article:last-child {
    border-bottom: 0;
  }

  .feature-strip {
    padding: 24px;
  }

  .testimonial-section {
    text-align: left;
  }

  .testimonial-section img {
    max-width: 220px;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
