:root {
  --ink: #17201b;
  --muted: #5b655f;
  --leaf: #296b45;
  --leaf-dark: #18442c;
  --fresh: #d8f2b2;
  --gold: #e4ad3f;
  --cream: #f7f3e8;
  --snow: #f7fbfb;
  --line: rgba(23, 32, 27, 0.14);
  --shadow: 0 24px 70px rgba(17, 37, 26, 0.16);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--snow);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 251, 251, 0.94);
  box-shadow: 0 12px 40px rgba(18, 34, 25, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  transition: transform 180ms var(--ease);
}

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

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.76;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark circle {
  fill: #17201b;
  stroke: #d8f2b2;
  stroke-width: 8;
}

.logo-leaf {
  fill: #4e9d61;
}

.logo-stripe {
  fill: none;
  stroke-linecap: round;
}

.logo-stripe-main {
  stroke: #d8f2b2;
  stroke-width: 6;
}

.logo-stripe-gold {
  stroke: #e4ad3f;
  stroke-width: 5;
  opacity: 0.94;
}

.logo-sprout {
  fill: #d8f2b2;
}

.brand-mark.large {
  width: 86px;
  height: 86px;
  margin-bottom: 16px;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 12px 24px rgba(216, 242, 178, 0.22));
  transform: rotate(-5deg) scale(1.04);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-call {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 16, 0.84) 0%, rgba(9, 24, 16, 0.58) 42%, rgba(9, 24, 16, 0.08) 80%),
    linear-gradient(0deg, rgba(9, 24, 16, 0.44), rgba(9, 24, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 100px);
  padding-top: 68px;
  color: #ffffff;
}

.hero-content > * {
  animation: heroRise 760ms var(--ease) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 100ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 190ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 280ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 360ms;
}

.hero-content > :nth-child(6) {
  animation-delay: 430ms;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 28px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: -40% auto -40% -75%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 520ms var(--ease);
}

.button:hover::after {
  left: 130%;
}

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

.button.primary {
  color: var(--leaf-dark);
  background: var(--fresh);
  box-shadow: 0 12px 34px rgba(216, 242, 178, 0.28);
}

.button.primary:hover {
  box-shadow: 0 18px 44px rgba(216, 242, 178, 0.42);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: #ffffff;
  transition: background 180ms ease;
}

.quick-strip div:hover {
  background: #fbfff5;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.quick-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
}

.intro > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 790px;
}

.promise {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  padding-top: 0;
}

.promise-panel {
  border-radius: 8px;
  padding: clamp(30px, 5vw, 58px);
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 242, 178, 0.18), transparent 32%),
    linear-gradient(135deg, var(--leaf-dark), #275c38);
  box-shadow: var(--shadow);
}

.promise-panel h2 {
  max-width: 790px;
}

.promise-panel p:not(.eyebrow) {
  max-width: 740px;
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.metric-stack {
  display: grid;
  gap: 18px;
}

.metric-card {
  display: grid;
  min-height: 142px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(31, 48, 38, 0.07);
}

.metric-card strong {
  color: var(--leaf-dark);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.9;
}

.metric-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

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

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-card,
.review-card,
.metric-card,
.process-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(31, 48, 38, 0.07);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.service-card::before,
.review-card::before,
.metric-card::before,
.process-step::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fresh), var(--gold), var(--leaf));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.service-card:hover::before,
.review-card:hover::before,
.metric-card:hover::before,
.process-step:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card:hover,
.review-card:hover,
.metric-card:hover,
.process-step:hover {
  border-color: rgba(41, 107, 69, 0.32);
  box-shadow: 0 24px 58px rgba(31, 48, 38, 0.13);
  transform: translateY(-6px);
}

.service-card {
  min-height: 260px;
  padding: 26px;
}

.service-icon {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.review-card p,
.process-step p {
  color: var(--muted);
  line-height: 1.65;
}

.process-band {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 7vw, 100px);
  background:
    linear-gradient(180deg, rgba(216, 242, 178, 0.34), rgba(247, 251, 251, 0)),
    #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.process-step {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.process-step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: var(--fresh);
  font-weight: 900;
}

.seasonal-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(64px, 8vw, 108px) clamp(18px, 7vw, 100px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf-dark), #1d5e4d);
}

.seasonal-band h2 {
  max-width: 620px;
}

.season-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.season-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.season-list span:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  min-height: 250px;
  padding: 28px;
}

.featured-review {
  background: var(--cream);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.review-top span {
  color: var(--gold);
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(72px, 9vw, 124px) clamp(18px, 7vw, 100px);
  background: var(--cream);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(54px, 8vw, 92px) clamp(18px, 7vw, 100px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 20%, rgba(216, 242, 178, 0.18), transparent 24%),
    linear-gradient(135deg, #17201b, #18442c 52%, #296b45);
}

.logo-card {
  width: min(100%, 280px);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.logo-card strong,
.logo-card > span:not(.brand-mark) {
  display: block;
}

.logo-card strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.logo-card > span:not(.brand-mark) {
  margin-top: 8px;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 780px;
}

.contact-copy p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.75;
}

.phone-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--leaf-dark);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease);
}

.contact-form:hover {
  transform: translateY(-4px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 27, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(41, 107, 69, 0.18);
}

.form-submit {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: flex;
  max-width: min(430px, calc(100% - 44px));
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  color: #ffffff;
  background: rgba(23, 32, 27, 0.88);
  box-shadow: 0 20px 60px rgba(13, 24, 17, 0.28);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.sticky-quote.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-quote strong,
.sticky-quote span {
  display: block;
}

.sticky-quote span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.sticky-quote a {
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--leaf-dark);
  background: var(--fresh);
  font-weight: 900;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.review-grid .reveal:nth-child(2),
.process-steps .reveal:nth-child(2),
.season-list span:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.review-grid .reveal:nth-child(3),
.process-steps .reveal:nth-child(3),
.season-list span:nth-child(3) {
  transition-delay: 180ms;
}

.service-grid .reveal:nth-child(4),
.season-list span:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes stickyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-call {
    position: fixed;
    z-index: 30;
    top: 14px;
    right: 16px;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    padding: 0 18px;
    color: #ffffff;
    background: rgba(23, 32, 27, 0.56);
    font-weight: 900;
    backdrop-filter: blur(10px);
  }

  .nav-links,
  .header-call {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 24, 16, 0.86), rgba(9, 24, 16, 0.42)),
      linear-gradient(0deg, rgba(9, 24, 16, 0.34), rgba(9, 24, 16, 0));
  }

  .quick-strip,
  .intro,
  .promise,
  .final-cta,
  .seasonal-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metric-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .review-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-quote {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    display: block;
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
    padding-bottom: 52px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(2.8rem, 13.2vw, 3.45rem);
    line-height: 0.96;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
  }

  .hero-badges {
    display: none;
  }

  .button {
    flex: 1 1 100%;
    padding-inline: 16px;
  }

  .hero-proof {
    border-radius: 8px;
  }

  .quick-strip,
  .service-grid,
  .review-grid,
  .process-steps,
  .season-list,
  .metric-stack {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    padding: 22px 18px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

  .service-card,
  .review-card,
  .process-step {
    min-height: auto;
  }

  .service-icon,
  .process-step span {
    margin-bottom: 28px;
  }

  .contact-section {
    padding: 66px 16px 110px;
  }

  .phone-link {
    overflow-wrap: anywhere;
  }

  .sticky-quote {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px;
  }

  .sticky-quote span {
    display: none;
  }

  .final-cta {
    padding: 58px 16px 94px;
  }

  .logo-card {
    width: min(100%, 240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
