:root {
  --bg: #f3ebde;
  --panel: #fffaf2;
  --panel-strong: #ead9c1;
  --ink: #33281f;
  --muted: #6d5c4d;
  --line: rgba(98, 74, 49, 0.16);
  --olive: #7c8654;
  --olive-deep: #4f5d39;
  --terracotta: #b06442;
  --terracotta-deep: #8c4b31;
  --sun: #d5ad67;
  --stone: #c7b193;
  --sky-haze: #d8c8b6;
  --cream-glow: rgba(255, 249, 241, 0.78);
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --shadow: 0 22px 60px rgba(58, 40, 21, 0.14);
  --shadow-strong: 0 28px 80px rgba(58, 40, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 173, 103, 0.28), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(216, 200, 182, 0.36), transparent 23%),
    radial-gradient(circle at top right, rgba(124, 134, 84, 0.16), transparent 24%),
    linear-gradient(180deg, #faf3e8 0%, #f3ebde 48%, #ede0cf 100%);
  font: 16px/1.65 var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 20% 15%, rgba(255, 244, 223, 0.5), transparent 18%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
}

.page-shell {
  min-height: 100vh;
  padding-bottom: 28px;
}

.hero,
.section,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 20;
  padding: 18px 22px;
  margin-top: 18px;
  border-radius: 28px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 18px 40px rgba(88, 61, 36, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--terracotta-deep), #c77a52);
  color: #fff9f2;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(176, 100, 66, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font: 700 1.05rem/1.1 var(--display);
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-links a {
  color: var(--olive-deep);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
  background: rgba(79, 93, 57, 0.08);
  color: var(--terracotta-deep);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 56px 0 62px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.intro-strip,
.split-section,
.contact-card,
.timeline-section,
.section {
  position: relative;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.68);
  border: 1px solid rgba(176, 100, 66, 0.14);
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 10.5ch;
  font: 600 clamp(3rem, 6vw, 5.7rem)/0.94 var(--display);
  letter-spacing: -0.045em;
}

.lede {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.86);
  border: 1px solid rgba(98, 74, 49, 0.12);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(74, 52, 29, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button-primary {
  background: var(--olive-deep);
  color: #fffdf6;
  box-shadow: 0 18px 32px rgba(79, 93, 57, 0.28);
}

.button-secondary {
  border: 1px solid rgba(79, 93, 57, 0.24);
  color: var(--olive-deep);
  background: rgba(255, 250, 242, 0.7);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li::before {
  content: "•";
  color: var(--terracotta);
  margin-right: 10px;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -28px;
  top: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 173, 103, 0.3), transparent 68%);
  filter: blur(6px);
  z-index: 0;
}

.hero-card,
.plant-card,
.quote-panel,
.contact-card,
.intro-strip,
.timeline,
.approach-grid article {
  background: rgba(255, 249, 241, 0.84);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card,
.plant-card,
.service-list article,
.approach-grid article,
.timeline article,
.contact-details div {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-card:hover,
.plant-card:hover,
.service-list article:hover,
.approach-grid article:hover,
.timeline article:hover,
.contact-details div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(176, 100, 66, 0.22);
}

.hero-card {
  margin: 0;
  overflow: hidden;
}

.hero-card-main {
  border-radius: 28px 28px 90px 28px;
  position: relative;
  z-index: 1;
}

.hero-card-accent {
  width: 58%;
  justify-self: end;
  border-radius: 22px;
  margin-top: -72px;
  margin-right: 18px;
  position: relative;
  z-index: 2;
}

.hero-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-card figcaption {
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 0.94rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.36), rgba(255, 250, 242, 0.92));
}

.hero-note {
  display: grid;
  gap: 8px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(98, 74, 49, 0.12);
  box-shadow: var(--shadow);
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.hero-note strong {
  font: 700 0.96rem/1.2 var(--sans);
  color: var(--terracotta-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 76px 0 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  border-radius: 34px;
  padding: 34px;
}

.intro-strip h2,
.section-heading h2,
.split-copy h2,
.contact-card h2 {
  margin: 0;
  font: 600 clamp(2.05rem, 3.4vw, 3.25rem)/1 var(--display);
  letter-spacing: -0.03em;
}

.intro-stats {
  display: grid;
  gap: 16px;
}

.intro-stats article {
  padding: 14px 0 14px 18px;
  border-left: 3px solid rgba(176, 100, 66, 0.34);
}

.intro-stats strong,
.service-list h3,
.approach-grid h3,
.timeline h3,
.plant-card h3 {
  display: block;
  margin-bottom: 6px;
  font: 600 1.12rem/1.2 var(--display);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p:last-child,
.split-copy > p:not(.section-kicker),
.contact-card p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-button {
  appearance: none;
  border: 1px solid rgba(79, 93, 57, 0.18);
  background: rgba(255, 250, 242, 0.78);
  color: var(--olive-deep);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.filter-button.is-active {
  background: var(--olive-deep);
  color: #fffef7;
  box-shadow: 0 16px 28px rgba(79, 93, 57, 0.22);
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
}

.plant-count {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plant-card {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
}

.plant-card[hidden] {
  display: none;
}

.plant-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.plant-card:hover img {
  transform: scale(1.04);
}

.plant-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.plant-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(176, 100, 66, 0.13);
  color: var(--terracotta);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plant-botanical {
  color: var(--muted);
  font-size: 0.94rem;
  font-style: italic;
}

.plant-card p {
  margin: 0;
}

.plant-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plant-traits span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 93, 57, 0.08);
  color: var(--olive-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

.plant-grid-status {
  margin: 0;
  color: var(--muted);
}

.plant-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.plant-card-link::after {
  content: "→";
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 28px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.service-list article,
.approach-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 249, 241, 0.72);
  border: 1px solid rgba(98, 74, 49, 0.12);
  box-shadow: var(--shadow);
}

.quote-panel {
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(176, 100, 66, 0.15), rgba(124, 134, 84, 0.12)),
    rgba(255, 249, 241, 0.84);
}

.quote-panel p {
  margin: 0;
  font: 600 1.42rem/1.28 var(--display);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.timeline article {
  padding: 24px;
  background: rgba(255, 249, 241, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(98, 74, 49, 0.12);
  box-shadow: var(--shadow);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--terracotta);
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.newsletter-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 249, 241, 0.84);
  border: 1px solid rgba(98, 74, 49, 0.12);
  box-shadow: var(--shadow);
}

.newsletter-kicker {
  margin: 0;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.newsletter-panel h3 {
  margin: 0;
  font: 600 1.4rem/1.1 var(--display);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.newsletter-field {
  display: grid;
  gap: 8px;
}

.newsletter-field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--olive-deep);
}

.newsletter-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(79, 93, 57, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.newsletter-field input:focus {
  outline: 2px solid rgba(79, 93, 57, 0.22);
  outline-offset: 2px;
}

.newsletter-note,
.newsletter-feedback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter-feedback {
  color: var(--terracotta-deep);
  font-weight: 700;
}

.contact-details div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(234, 217, 193, 0.65);
  border: 1px solid rgba(79, 93, 57, 0.08);
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
}

.footer {
  padding: 48px 0 58px;
  color: var(--muted);
}

.footer p {
  margin: 0 0 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-shell.is-ready .hero-copy > *,
.page-shell.is-ready .hero-visual > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 620ms ease forwards;
}

.page-shell.is-ready .hero-copy > *:nth-child(1) { animation-delay: 40ms; }
.page-shell.is-ready .hero-copy > *:nth-child(2) { animation-delay: 110ms; }
.page-shell.is-ready .hero-copy > *:nth-child(3) { animation-delay: 180ms; }
.page-shell.is-ready .hero-copy > *:nth-child(4) { animation-delay: 250ms; }
.page-shell.is-ready .hero-copy > *:nth-child(5) { animation-delay: 320ms; }
.page-shell.is-ready .hero-copy > *:nth-child(6) { animation-delay: 390ms; }
.page-shell.is-ready .hero-visual > *:nth-child(1) { animation-delay: 180ms; }
.page-shell.is-ready .hero-visual > *:nth-child(2) { animation-delay: 280ms; }
.page-shell.is-ready .hero-visual > *:nth-child(3) { animation-delay: 380ms; }

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-strip,
  .section-heading,
  .split-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .plant-grid,
  .service-list,
  .approach-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-accent {
    width: 42%;
    margin-top: -42px;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 20px, 1160px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .topbar-links {
    gap: 6px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-note {
    margin-left: 0;
  }

  .plant-grid,
  .service-list,
  .approach-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .hero-card-accent {
    width: 58%;
    margin-top: -24px;
    margin-right: 0;
  }

  .quote-panel p {
    font-size: 1.14rem;
  }
}