:root {
  --bg: #f7fbf3;
  --bg-soft: #eff7ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(73, 112, 71, 0.16);
  --line-strong: rgba(73, 112, 71, 0.28);
  --text: #203126;
  --muted: #5d6d62;
  --primary: #76c25f;
  --primary-strong: #5aa843;
  --primary-deep: #3f7a3b;
  --primary-soft: #dff0d6;
  --accent: #b8e1a5;
  --shadow: 0 24px 80px rgba(43, 76, 44, 0.14);
  --shadow-soft: 0 16px 44px rgba(43, 76, 44, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(118, 194, 95, 0.18), transparent 26rem),
    radial-gradient(circle at left center, rgba(171, 221, 147, 0.16), transparent 24rem),
    linear-gradient(180deg, #fbfdf8 0%, #f2f8ee 48%, #f7fbf3 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(106, 191, 89, 0.04) 0 0),
    linear-gradient(90deg, rgba(106, 191, 89, 0.04) 0 0);
  background-repeat: repeat;
  background-size: 96px 96px;
  mask-image:
    radial-gradient(circle at center, black 6px, transparent 7px),
    linear-gradient(black, black);
  mask-size: 96px 96px, 100% 100%;
  mask-position: center;
  opacity: 0.18;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  padding: 12px 16px;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 999px;
  z-index: 100;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(118, 194, 95, 0.14);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  font-size: 1.15rem;
  color: #425244;
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button--solid {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  box-shadow: 0 18px 36px rgba(90, 168, 67, 0.22);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow: 0 22px 42px rgba(90, 168, 67, 0.28);
}

.button--outline {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(63, 122, 59, 0.22);
  color: var(--text);
}

.button--ghost {
  background: transparent;
  border-color: rgba(63, 122, 59, 0.22);
  color: var(--primary-deep);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 243, 0.72);
  border-bottom: 1px solid rgba(73, 112, 71, 0.08);
}

.topbar {
  font-size: 0.9rem;
  color: #436047;
  border-bottom: 1px solid rgba(73, 112, 71, 0.08);
}

.topbar-inner,
.nav-shell,
.footer-grid,
.hero-controls,
.hero-highlights,
.stats-grid,
.cards-grid,
.cta-panel,
.split-grid,
.services-grid,
.details-grid,
.location-grid,
.contact-grid,
.footer-meta,
.mini-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.topbar-inner {
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  padding: 12px 0;
}

.topbar a:hover {
  color: var(--primary-deep);
}

.nav-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--primary-deep);
}

.brand img {
  width: min(320px, 52vw);
  height: auto;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #304333;
  transition: background-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: rgba(118, 194, 95, 0.16);
  color: var(--primary-deep);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(63, 122, 59, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-deep);
}

.hero {
  position: relative;
  padding: 0 0 44px;
  overflow: hidden;
}

.hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-slider {
  position: relative;
  min-height: clamp(720px, 92vh, 980px);
  border-radius: 0 0 44px 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(106deg, rgba(16, 26, 20, 0.68) 0%, rgba(16, 26, 20, 0.4) 38%, rgba(16, 26, 20, 0.16) 72%, rgba(16, 26, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(118, 194, 95, 0.12), rgba(118, 194, 95, 0.02) 46%, rgba(10, 18, 12, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  min-height: inherit;
  padding: clamp(36px, 5vw, 62px) 0 68px;
}

.hero-copy {
  max-width: 610px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(9px);
  box-shadow: 0 10px 24px rgba(43, 76, 44, 0.08);
}

.hero-copy p,
.hero-copy li {
  color: #546659;
}

.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(77, 122, 70, 0.14);
  color: var(--primary-deep);
}

.hero-copy .eyebrow::before {
  box-shadow: 0 0 0 6px rgba(118, 194, 95, 0.14);
}

.hero-panel,
.glass-card,
.card,
.detail-card,
.info-card,
.faq-card,
.process-card,
.cta-card,
.contact-card,
.contact-form,
.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 24px;
  color: #fff;
  align-self: end;
}

.hero-panel strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-highlights {
  margin-top: 20px;
}

.hero-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hero-highlight span:first-child,
.icon-badge,
.number-badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.hero-highlight p {
  margin: 2px 0 0;
}

.hero-controls {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 18px;
  position: relative;
  z-index: 5;
  padding: 20px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(63, 122, 59, 0.1);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  position: relative;
  width: 62px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(63, 122, 59, 0.14);
  overflow: hidden;
}

.hero-dot.is-active {
  background: rgba(63, 122, 59, 0.16);
}

.hero-note {
  color: #486049;
  font-size: 0.92rem;
}

.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-strong), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.is-active::after {
  animation: heroProgress 6.5s linear forwards;
}

.hero-slide-shell {
  position: relative;
  min-height: inherit;
  overflow: hidden;
}

.hero-slide-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.14), transparent 14rem),
    radial-gradient(circle at 78% 80%, rgba(118, 194, 95, 0.16), transparent 17rem);
  z-index: 0;
}

.hero-slide-shell::after {
  display: none;
}

.hero-slide-shell--pets,
.hero-slide-shell--farm,
.hero-slide-shell--pharmacy {
  background: #dcebd8;
}

.hero-content--showcase {
  position: relative;
}

.hero-content--showcase h1,
.hero-content--showcase h2,
.hero-display {
  color: #1e3524;
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-content--showcase h2,
.hero-display {
  font-size: clamp(2.25rem, 3.7vw, 3.95rem);
}

.hero-display {
  margin: 0 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.hero-content--showcase .lead {
  font-size: 1rem;
  max-width: 540px;
  color: #45584a;
}

.hero-content--showcase .hero-copy {
  max-width: 690px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-pill,
.hero-list-card,
.hero-float-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(63, 122, 59, 0.1);
  box-shadow: 0 8px 18px rgba(43, 76, 44, 0.07);
}

.hero-pill {
  min-width: 150px;
  max-width: 200px;
  padding: 11px 13px;
  border-radius: 20px;
}

.hero-pill strong {
  display: block;
  margin-bottom: 4px;
  color: #1f3523;
  font-size: 0.92rem;
}

.hero-pill small {
  display: block;
  color: #5a6d60;
  font-size: 0.8rem;
  line-height: 1.45;
}

.hero-list-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  max-width: 390px;
}

.hero-list-card strong {
  display: block;
  margin-bottom: 12px;
  color: #203126;
  font-size: 1.05rem;
}

.hero-frame,
.hero-float-card,
.hero-pill,
.hero-list-card {
  opacity: 0;
}

.hero-frame {
  display: none;
}

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

.hero-frame--main {
  inset: 40px 34px 96px 120px;
  border-radius: 38px 128px 38px 38px;
  transform: rotate(-4deg) translateY(24px);
}

.hero-frame--support {
  left: 24px;
  bottom: 92px;
  width: 250px;
  height: 250px;
  border-radius: 34px;
  transform: rotate(8deg) translateY(24px);
}

.hero-float-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 24px;
}

.hero-float-card strong {
  display: block;
  margin-bottom: 4px;
  color: #203126;
  font-size: 1rem;
}

.hero-float-card p {
  margin: 0;
  color: #5a6c60;
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-float-card--top {
  top: auto;
  left: auto;
  max-width: none;
  transform: translateY(-22px);
}

.hero-float-card--bottom {
  right: auto;
  bottom: auto;
  max-width: none;
  transform: translateY(22px);
}

.hero-card-badge,
.hero-card-score {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(118, 194, 95, 0.24), rgba(118, 194, 95, 0.12));
  color: var(--primary-deep);
  font-weight: 800;
}

.hero-card-score {
  min-width: 62px;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.72;
}

.hero-shape--circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.hero-shape--ring {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  border: 2px solid rgba(118, 194, 95, 0.32);
}

.hero-shape--plus {
  width: 52px;
  height: 52px;
}

.hero-shape--plus::before,
.hero-shape--plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(118, 194, 95, 0.22);
  border-radius: 999px;
}

.hero-shape--plus::before {
  width: 52px;
  height: 14px;
}

.hero-shape--plus::after {
  width: 14px;
  height: 52px;
}

.hero-shape--one {
  left: 7%;
  top: 11%;
}

.hero-shape--two {
  left: 34%;
  top: 10%;
}

.hero-shape--four {
  left: 10%;
  top: 18%;
}

.hero-shape--six {
  left: 48%;
  bottom: 22%;
}

.hero-shape--seven {
  left: 12%;
  bottom: 18%;
}

.hero-shape--nine {
  left: 52%;
  top: 12%;
}

.hero-slide.is-active .hero-frame,
.hero-slide.is-active .hero-float-card,
.hero-slide.is-active .hero-pill,
.hero-slide.is-active .hero-list-card {
  opacity: 1;
}

.hero-slide.is-active .hero-frame--main {
  transform: rotate(-4deg) translateY(0);
  transition: transform 700ms ease 120ms, opacity 700ms ease 120ms;
}

.hero-slide.is-active .hero-frame--support {
  transform: rotate(8deg) translateY(0);
  transition: transform 700ms ease 220ms, opacity 700ms ease 220ms;
}

.hero-slide.is-active .hero-float-card--top {
  transform: translateY(0);
  transition: transform 700ms ease 260ms, opacity 700ms ease 260ms;
}

.hero-slide.is-active .hero-float-card--bottom {
  transform: translateY(0);
  transition: transform 700ms ease 340ms, opacity 700ms ease 340ms;
}

.hero-slide.is-active .hero-pill,
.hero-slide.is-active .hero-list-card {
  transition: opacity 700ms ease 300ms, transform 700ms ease 300ms;
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.stats-section {
  margin-top: -12px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.detail-card,
.info-card,
.faq-card,
.process-card,
.cta-card,
.contact-card,
.contact-form,
.quote-panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(63, 122, 59, 0.1);
  box-shadow: var(--shadow-soft);
}

.card,
.detail-card,
.info-card,
.faq-card,
.process-card,
.cta-card,
.contact-card {
  padding: 28px;
}

.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(63, 122, 59, 0.12);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-deep);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
}

.muted-label {
  font-size: 0.86rem;
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

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

.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon-badge,
.number-badge {
  background: linear-gradient(135deg, rgba(118, 194, 95, 0.18), rgba(118, 194, 95, 0.08));
  border: 1px solid rgba(118, 194, 95, 0.24);
  color: var(--primary-deep);
}

.card h3,
.detail-card h3,
.contact-card h3 {
  margin-top: 18px;
}

.card ul,
.detail-card ul,
.service-list,
.checklist,
.contact-list,
.location-meta,
.mini-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.checklist li,
.contact-list li,
.location-meta li,
.mini-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--muted);
}

.service-list li::before,
.checklist li::before,
.contact-list li::before,
.location-meta li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(118, 194, 95, 0.13);
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  position: absolute;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-stack img:first-child {
  inset: 0 90px 90px 0;
  width: auto;
  height: calc(100% - 90px);
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 44%;
  border: 10px solid rgba(255, 255, 255, 0.96);
}

.quote-panel {
  padding: 32px;
}

.quote-panel blockquote {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.25;
}

.quote-panel .signature {
  color: var(--primary-deep);
  font-weight: 800;
}

.services-grid,
.details-grid,
.process-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.details-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.location-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 8px);
  padding: clamp(34px, 5vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--primary-deep), #213b24);
  color: #fff;
  box-shadow: var(--shadow);
}

.banner::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.banner p,
.banner li {
  color: rgba(255, 255, 255, 0.8);
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.page-hero {
  padding: 0 0 24px;
  overflow: hidden;
}

.page-hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-hero-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 56vh, 560px);
  border-radius: 0 0 42px 42px;
  box-shadow: var(--shadow);
}

.page-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.18), transparent 13rem),
    radial-gradient(circle at 16% 12%, rgba(118, 194, 95, 0.16), transparent 16rem);
  z-index: 0;
}

.page-hero-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(19, 32, 25, 0.68) 0%, rgba(19, 32, 25, 0.34) 46%, rgba(19, 32, 25, 0.14) 100%),
    linear-gradient(180deg, rgba(118, 194, 95, 0.16), transparent 54%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(42px, 5vw, 68px) 0 clamp(52px, 7vw, 78px);
  color: #fff;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-content .lead {
  font-size: 1rem;
  max-width: 540px;
}

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

.process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-form {
  padding: 32px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: #39533e;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(63, 122, 59, 0.16);
  border-radius: 16px;
  background: rgba(247, 251, 243, 0.9);
  padding: 14px 16px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(90, 168, 67, 0.48);
  box-shadow: 0 0 0 4px rgba(118, 194, 95, 0.14);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  margin: 18px 0 0;
}

.form-status {
  margin-top: 18px;
  color: var(--primary-deep);
  font-weight: 700;
}

.faq-card p:last-child,
.card p:last-child,
.detail-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 84px;
  padding: 68px 0 32px;
  background:
    radial-gradient(circle at left top, rgba(118, 194, 95, 0.16), transparent 18rem),
    linear-gradient(180deg, #f0f7ea 0%, #e8f2e2 100%);
  border-top: 1px solid rgba(63, 122, 59, 0.1);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
}

.footer-brand img {
  width: min(360px, 100%);
  height: auto;
  aspect-ratio: 940 / 194;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-title {
  display: block;
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-list li {
  margin-bottom: 12px;
  color: #425244;
}

.footer-links a:hover {
  color: var(--primary-deep);
}

.footer-meta {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(63, 122, 59, 0.12);
  color: #546558;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1100px) {
  .topbar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .hero-content,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cards-grid--four,
  .stats-grid,
  .details-grid,
  .process-grid,
  .faq-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 420px;
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-frame--main {
    inset: 24px 10px 84px 84px;
  }

  .hero-frame--support {
    width: 210px;
    height: 210px;
    left: 0;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .js-ready .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    padding-top: 8px;
  }

  .js-ready .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(63, 122, 59, 0.12);
    box-shadow: var(--shadow-soft);
  }

  .main-nav a {
    justify-content: center;
  }

  .hero-slider {
    min-height: 940px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-controls {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 18px 20px;
  }

  .hero-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero-content {
    padding: 28px 0 112px;
  }

  .cards-grid,
  .cards-grid--two,
  .cards-grid--four,
  .details-grid,
  .services-grid,
  .process-grid,
  .faq-grid,
  .location-grid,
  .mini-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 440px;
  }

  .image-stack img:first-child {
    inset: 0 50px 80px 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 78px 0;
  }

  .topbar {
    display: none;
  }

  .brand img {
    width: min(250px, 62vw);
  }

  .hero {
    padding-top: 16px;
  }

  .hero-slider {
    min-height: 880px;
    border-radius: 0 0 28px 28px;
  }

  .hero-content,
  .page-hero-content,
  .banner,
  .contact-form {
    padding: 28px;
  }

  .hero-content {
    padding: 12px 0 104px;
  }

  .hero-content--showcase h1,
  .hero-content--showcase h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .hero-pills {
    gap: 12px;
  }

  .hero-pill,
  .hero-list-card {
    max-width: none;
    width: 100%;
  }

  .page-hero-shell {
    min-height: 340px;
    border-radius: 0 0 28px 28px;
  }

  .page-hero-content {
    padding-top: 34px;
    padding-bottom: 68px;
  }

  .image-stack {
    min-height: 380px;
  }

  .image-stack img:first-child {
    inset: 0 28px 60px 0;
  }

  .image-stack img:last-child {
    width: 58%;
    height: 42%;
  }

  .form-grid,
  .details-grid--two {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (min-width: 861px) {
  .hero-slider,
  .page-hero-shell {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
