@font-face {
  font-family: Manrope;
  src: url("fonts/manrope.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
:root {
  /* "only light": the design is light-only; stops Chrome Auto Dark and
     Safari from repainting it (forced dark hid the service-area map labels). */
  color-scheme: only light;
  --ink: #203f30;
  --forest: #214d37;
  --forest-dark: #183d2b;
  --green: #567849;
  --lime: #d5e4b9;
  --paper: #f8f8f2;
  --white: #fff;
  --muted: #646e62;
  --line: #dce1d5;
  --sage: #e9eee2;
  --sky: #bad8df;
  --water: #5f9fbc;
  --water-ink: #102a34;
  --water-dark: #2c6681;
  --water-soft: #e6f0f5;
  --water-light: #c3e2ef;
  --brand-water: var(--water);
  --error: #a12e24;
  --font: "DM Sans", Arial, sans-serif;
  --display: Manrope, Arial, sans-serif;
  --gutter: clamp(24px, 4.5vw, 80px);
  --container: 1280px;
  --header-height: 96px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
select,
textarea {
  font-family: var(--font);
}
button,
input,
textarea,
select {
  font-size: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
button {
  color: inherit;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(48px, 5.8vw, 84px);
}
h2 {
  font-size: clamp(36px, 4.05vw, 58px);
}
h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  color: var(--green);
}
p {
  color: var(--muted);
}
strong {
  font-weight: 600;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--lime);
  color: var(--forest-dark);
}
:focus-visible {
  outline: 3px solid var(--water-dark);
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.icon {
  width: 24px;
  height: 24px;
  flex: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 22px;
}
.eyebrow > span:empty {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
}
.small {
  font-size: 13px;
  line-height: 1.65;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px 25px;
  border: 1px solid var(--water);
  background: var(--water);
  color: var(--water-ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 57px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0;
}
.button .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.button:hover {
  background: #80b5cc;
  border-color: #80b5cc;
  box-shadow: 0 5px 20px #25577320;
  transform: translateY(-2px);
}
.button:hover .icon {
  transform: translateX(3px);
}
.button-small {
  padding: 14px 20px;
  min-height: 48px;
  gap: 22px;
  font-size: 13px;
}
.button-light {
  background: var(--water-light);
  border-color: var(--water-light);
  color: var(--water-ink);
}
.button-light:hover {
  background: #e0f0f7;
  border-color: #e0f0f7;
}
.text-link {
  color: var(--water-dark);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 7px;
  background: none;
  line-height: 1.5;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 26px;
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 15px;
  transform: translateY(-200%);
  padding: 14px 22px;
  background: var(--forest);
  color: #fff;
}
.skip-link:focus {
  transform: translateY(0);
}
.announcement {
  background: var(--forest-dark);
  color: #e7eddf;
  font-size: 11px;
  letter-spacing: 0.025em;
}
.announcement .container {
  min-height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announcement span,
.announcement a {
  display: flex;
  align-items: center;
  gap: 9px;
}
.announcement .icon {
  height: 13px;
  width: 13px;
}
.announcement a {
  padding: 7px 0;
}
.announcement a:hover {
  text-decoration: underline;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 248, 242, 0.97);
  border-bottom: 1px solid #e0e4d8;
  transition: box-shadow 0.2s;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 25px #183d2b09;
}
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  flex: none;
  color: var(--forest);
}
.brand-grass {
  display: block;
  height: 54px;
  width: auto;
  margin: -4px 0;
}
.brand-type {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.08em;
}
.brand-type > span {
  display: block;
  font-family: var(--font);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.31em;
  margin: 7px 0 0 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}
.main-nav > a {
  font-size: 13px;
  white-space: nowrap;
  position: relative;
  padding: 12px 0;
  font-weight: 500;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav > a:hover::after,
.main-nav > a[aria-current]::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.phone-link .icon {
  width: 16px;
  height: 16px;
}
.phone-link:hover {
  text-decoration: underline;
}
.menu-toggle,
.mobile-contact-link,
.mobile-actions {
  display: none !important;
}
.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 700px;
}
.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 66px 44px 57px var(--gutter);
}
.hero-copy-inner {
  max-width: 544px;
  width: 100%;
}
.hero .eyebrow {
  margin-bottom: 29px;
  font-size: 10px;
}
.hero h1 {
  font-size: clamp(72px, 7.25vw, 112px);
  font-weight: 500;
  line-height: 1.005;
  letter-spacing: -0.065em;
}
.hero h1 em {
  font-size: 1.17em;
  line-height: 0.93;
  color: #4e7040;
  letter-spacing: -0.065em;
}
.hero-copy > div > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 28px;
  color: #566451;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-service-link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  padding-block: 12px;
}
.hero-service-link:hover {
  text-decoration: underline;
}
.hero-service-link .icon {
  height: 17px;
  width: 17px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.01em;
  color: #647260;
  margin-top: 36px;
}
.hero-location .icon {
  width: 14px;
  height: 14px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  animation: photo-in 1.2s ease-out both;
}
.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0f27197a, transparent 35%);
}
.hero-seal {
  position: absolute;
  right: 36px;
  top: 30px;
  width: 119px;
  height: 119px;
  border-radius: 50%;
  background: #f8f8f0f5;
  color: var(--forest);
  box-shadow: 0 2px 15px #0000000d;
}
.hero-seal > svg:first-child {
  width: 100%;
  height: 100%;
}
.hero-seal text {
  fill: var(--forest);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
}
.hero-seal > .seal-grass {
  position: absolute;
  width: 52px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
}
.hero-photo-caption {
  position: absolute;
  bottom: 38px;
  left: 42px;
  right: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}
.hero-photo-caption > span {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.25;
}
.hero-photo-caption > a {
  border: 1px solid #ffffff75;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  transform: rotate(90deg);
  transition: background 0.2s;
}
.hero-photo-caption > a:hover {
  background: #ffffff30;
}
.trust-strip {
  background: #e9eee3;
  border-bottom: 1px solid #dbe2d4;
}
.trust-strip .container {
  min-height: 87px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}
.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
}
.trust-strip span + span {
  border-left: 1px solid #cdd7c6;
}
.trust-strip .icon {
  width: 23px;
  height: 23px;
  stroke-width: 1.3;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: flex-end;
  margin-bottom: 45px;
}
.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.75;
  max-width: 435px;
}
.section-heading > div > .text-link {
  margin-top: 20px;
}
.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.featured-service {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--forest);
  color: #fff;
  isolation: isolate;
}
.featured-service > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.6s;
  object-position: 70% center;
}
.featured-service:hover > img {
  transform: scale(1.035);
}
.featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #071e272b, transparent 40%, #102c24bf);
}
.featured-top {
  position: absolute;
  top: 25px;
  left: 28px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-top > span:first-child {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.circle-arrow {
  height: 41px;
  width: 41px;
  border: 1px solid #ffffff8a;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.featured-service:hover .circle-arrow {
  background: #fff;
  color: var(--forest);
}
.featured-copy {
  position: absolute;
  bottom: 32px;
  left: 34px;
}
.featured-copy h3 {
  font-size: 42px;
  letter-spacing: -0.055em;
  line-height: 1.1;
}
.featured-copy p {
  font-size: 13px;
  color: #e4ecdf;
  margin-top: 15px;
}
.service-rows {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.service-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.25s,
    background 0.25s;
}
.service-row:hover {
  padding-left: 10px;
}
.service-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 50px;
  height: 50px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 11px;
}
.service-number {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #63755b;
}
.service-row h3 {
  font-size: 25px;
  margin-top: 8px;
}
.service-row p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 9px;
  max-width: 340px;
}
.service-arrow {
  margin-left: auto;
  align-self: center;
  width: 22px;
  height: 22px;
}
.philosophy-section {
  background: #ecf0e6;
}
.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.philosophy-image {
  position: relative;
  align-self: stretch;
  min-height: 570px;
  padding: 0 26px 25px 0;
}
.philosophy-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  max-width: calc(100% - 26px);
  max-height: calc(100% - 25px);
  border-radius: 3px;
  object-position: 38% center;
}
.image-note {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--forest);
  color: #fff;
  padding: 27px 31px;
  display: flex;
  align-items: center;
  gap: 21px;
  border-radius: 3px;
}
.image-note .note-grass {
  width: 52px;
  height: auto;
  flex: none;
}
.image-note span {
  font-size: 18px;
  font-family: var(--display);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.philosophy-copy h2 {
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.14;
}
.philosophy-copy .lead {
  margin: 25px 0 16px;
  font-size: 18px;
  max-width: 415px;
}
.philosophy-copy > p:not(.lead):not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  max-width: 460px;
}
.promise-points {
  display: grid;
  gap: 10px;
  margin: 23px 0 29px;
  font-size: 13px;
}
.promise-points span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.promise-points .icon {
  width: 16px;
  height: 16px;
}
.seasonal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.season-art {
  position: relative;
  min-height: 465px;
  max-width: 490px;
  display: grid;
  place-items: center;
  color: var(--forest);
  isolation: isolate;
}
.season-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #dbe2ce;
}
.orbit-outer {
  width: 370px;
  height: 370px;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  border-style: dashed;
}
.orbit-inner {
  width: 280px;
  height: 280px;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  border-color: #d3dcc7;
}
.season-center {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: #e8eedf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: -42px;
  box-shadow: 0 0 0 19px #f1f4e9;
}
.season-center .center-grass {
  width: 66px;
  height: auto;
}
.season-center span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.19em;
  line-height: 1.7;
  font-weight: 500;
}
.orbit-icon {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px var(--paper);
}
.orbit-icon .icon {
  height: 28px;
  width: 28px;
  stroke-width: 1.3;
}
.orbit-sun {
  top: 20px;
  left: calc(50% - 32px);
  background: #f2e7be;
  color: #66552b;
}
.orbit-drop {
  top: 275px;
  left: calc(50% - 192px);
  background: var(--water);
  color: var(--water-ink);
}
.orbit-leaf {
  top: 275px;
  left: calc(50% + 128px);
  background: #e2e7d1;
  color: #5e744c;
}
.season-art > p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #748064;
}
.season-copy h2 {
  font-size: clamp(36px, 3.9vw, 56px);
}
.season-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-top: 29px;
  gap: 26px;
}
.season-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  padding: 14px 1px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: -1px;
  transition: color 0.2s;
}
.season-tabs button[aria-selected="true"] {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.season-tabs button .icon {
  width: 16px;
  height: 16px;
}
.season-panel {
  padding-top: 23px;
  min-height: 205px;
}
.season-panel h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
}
.season-panel p {
  font-size: 14px;
  line-height: 1.8;
  margin: 12px 0 22px;
  max-width: 470px;
}
.testimonials {
  background: #eef0e6;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  padding: 26px 29px 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e7dc;
  border-radius: 3px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
  color: #738a5b;
  height: 52px;
}
.review blockquote {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.025em;
  margin: 7px 0 27px;
  color: var(--ink);
  flex: 1;
}
.review-attribution {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review-avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #e3e9d8;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  flex: none;
}
.review-attribution strong {
  display: block;
  font-size: 12px;
}
.review-attribution span > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.review-source {
  font-size: 9px;
  color: #64705b;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 20px;
}
.review-source .icon {
  width: 12px;
  height: 12px;
}
.review-source:hover {
  text-decoration: underline;
}
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.area-layout > div > p:not(.eyebrow) {
  margin-top: 23px;
  max-width: 455px;
  font-size: 15px;
  line-height: 1.8;
}
.area-layout > div > p.small {
  font-size: 12px;
  max-width: 405px;
  margin: 22px 0;
}
.area-chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  max-width: 430px;
  margin-top: 25px;
}
.area-chips > span {
  border: 1px solid #d7decd;
  padding: 8px 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.area-chips .icon {
  width: 13px;
  height: 13px;
}
.region-map {
  position: relative;
  background: #edf1e7;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e7da;
}
.region-map > svg {
  width: 100%;
  height: auto;
}
.map-note {
  display: block;
  text-align: center;
  font-size: 9px;
  color: #59664f;
  padding: 8px 10px 13px;
  background: var(--sage);
}
.contact-section {
  background: #e9eee3;
  border-top: 1px solid #dce4d4;
}
/* minmax(0, …) and min-width: 0 stop wide embedded widgets (Google's address
   box, the Turnstile check) from stretching the columns past a small phone's
   screen - that pushed the whole page sideways at 360px. */
.contact-layout > * {
  min-width: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.contact-copy {
  padding-top: 19px;
}
.contact-copy h2,
.contact-copy h1 {
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.15;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 23px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.8;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid #ccd7c4;
  border-bottom: 1px solid #ccd7c4;
  max-width: 400px;
}
.phone-disc {
  width: 46px;
  height: 46px;
  background: var(--water-soft);
  color: var(--water-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.phone-disc .icon {
  width: 20px;
  height: 20px;
}
.contact-phone > span > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-phone strong {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.3;
}
.contact-phone > .icon {
  margin-left: auto;
  width: 21px;
  height: 21px;
}
.contact-phone:hover strong {
  text-decoration: underline;
}
.contact-benefits {
  margin-top: 23px;
}
.contact-benefits p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #486241;
  margin-top: 9px;
}
.contact-benefits .icon {
  width: 16px;
  height: 16px;
}
.contact-small-photo {
  position: relative;
  width: 100%;
  max-width: 405px;
  height: 175px;
  margin-top: 36px;
  overflow: hidden;
  border-radius: 3px;
}
.contact-small-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #133521b5, #13352116);
}
.contact-small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.contact-small-photo span {
  position: absolute;
  z-index: 1;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.045em;
}
.form-shell {
  background: #fff;
  border: 1px solid #e1e6d9;
  border-radius: 5px;
  padding: 36px 36px 32px;
  box-shadow: 0 12px 40px #203b2110;
}
.form-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
}
.form-heading h2 {
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.form-heading > p {
  font-size: 13px;
  margin-top: 9px;
}
.form-preview-note {
  font-size: 10px;
  color: #666f5f;
  border-bottom: 1px solid var(--line);
  padding: 14px 0 17px;
  margin-bottom: 22px;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.inquiry-form legend,
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.inquiry-form legend {
  width: 100%;
  margin-bottom: 11px;
}
.field-status {
  float: right;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.service-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.service-option {
  position: relative;
  cursor: pointer;
}
.service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  left: 18px;
  top: 50%;
  margin: 0;
}
.service-option > span {
  padding: 12px 11px;
  border: 1px solid #d8e0d0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  min-height: 45px;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.service-option > span > .icon {
  width: 16px;
  height: 16px;
  stroke-width: 1.3;
}
.service-option input:checked + span {
  background: var(--water-soft);
  border-color: var(--water-dark);
  color: var(--water-ink);
  box-shadow: 0 0 0 0.4px var(--water-dark);
}
.service-option input:focus-visible + span {
  outline: 3px solid var(--water-dark);
  outline-offset: 3px;
}
.service-option:hover > span {
  border-color: var(--water);
}
.service-option > span > .option-check {
  margin-left: auto;
  width: 13px;
  height: 13px;
  opacity: 0;
}
.service-option input:checked + span > .option-check {
  opacity: 1;
}
.service-option-wide {
  grid-column: 1/-1;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 15px;
  margin-top: 23px;
  margin-bottom: 17px;
}
.field label {
  display: block;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #d6dfd0;
  border-radius: 3px;
  padding: 10px 12px;
  min-height: 43px;
  outline-offset: 2px;
  color: var(--ink);
  font-size: 14px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field textarea {
  resize: vertical;
  min-height: 94px;
  max-height: 300px;
  line-height: 1.6;
}
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #92a186;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--water-dark);
  outline-offset: 1px;
}
.field input[aria-invalid="true"] {
  border-color: var(--error);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7c8276;
  font-size: 12px;
  opacity: 1;
}
.optional {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 7px;
}
.field-error {
  color: var(--error);
  font-size: 11px;
  line-height: 1.5;
  margin-top: 5px;
}
.form-error-summary {
  padding: 12px 14px;
  border-left: 3px solid var(--error);
  background: #fcf0ed;
  color: var(--error);
  font-size: 12px;
  margin-bottom: 20px;
}
.form-error-summary p {
  color: inherit;
}
.contact-preference {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-preference legend {
  margin-bottom: 7px;
}
.contact-preference label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  cursor: pointer;
}
.contact-preference input {
  accent-color: var(--forest);
  width: 15px;
  height: 15px;
  margin: 0;
}
.form-submit {
  margin-top: 22px;
}
.form-submit .button {
  width: 100%;
  font-size: 13px;
  min-height: 53px;
  padding: 15px 19px;
}
.form-submit p {
  font-size: 9px;
  text-align: center;
  margin-top: 13px;
  line-height: 1.8;
}
.form-submit p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-submit p > span:first-of-type {
  margin: 0 4px;
}
.form-success {
  padding: 16px 0;
  scroll-margin-top: 125px;
}
.form-success:focus {
  outline: none;
}
.success-icon {
  height: 60px;
  width: 60px;
  background: var(--water-soft);
  color: var(--water-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
}
.success-icon .icon {
  width: 29px;
  height: 29px;
}
.form-success h2 {
  font-size: 42px;
  margin-bottom: 25px;
}
.form-success > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}
.form-success > p.small {
  font-size: 11px;
}
.form-success p a {
  text-decoration: underline;
}
.form-success dl {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 105px 1fr;
  font-size: 12px;
  row-gap: 10px;
  border-block: 1px solid var(--line);
  padding: 20px 0;
}
.form-success dt {
  color: var(--muted);
}
.form-success dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.success-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}
.success-actions .button {
  font-size: 12px;
  padding: 15px;
  gap: 18px;
}
.success-actions .text-link {
  font-size: 12px;
}
.no-script-note {
  font-size: 13px;
  margin-top: 20px;
}
.cta-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding-block: 83px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-inner h2 {
  font-size: clamp(40px, 4.5vw, 65px);
  font-weight: 400;
  line-height: 1.12;
}
.cta-inner .eyebrow {
  color: #d8e5c5;
}
.cta-inner p:not(.eyebrow) {
  color: #d1dccb;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 23px;
  flex: none;
}
.cta-phone {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cta-phone .icon {
  width: 19px;
  height: 19px;
}
.cta-phone:hover {
  text-decoration: underline;
}
.cta-actions > span {
  font-size: 10px;
  color: #c7d7bd;
}
.cta-leaf {
  position: absolute;
  left: 54%;
  top: 5%;
  z-index: -1;
  opacity: 0.06;
  transform: rotate(-18deg);
  pointer-events: none;
}
.cta-leaf .icon {
  width: 410px;
  height: 410px;
  stroke-width: 0.7;
}
.site-footer {
  background: #173627;
  color: #e9efdf;
  padding: 66px 0 23px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.1fr;
  gap: 45px;
}
.site-footer .brand {
  color: #e9efdf;
  --brand-water: var(--water);
}
.site-footer .brand-type {
  font-size: 30px;
}
.footer-intro > p {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.035em;
  margin-top: 26px;
  color: #e0e7d9;
}
.footer-phone {
  display: inline-flex;
  gap: 23px;
  align-items: center;
  font-size: 16px;
  color: #d9e5cb;
  margin-top: 22px;
}
.footer-phone .icon {
  height: 18px;
  width: 18px;
}
.footer-top h2 {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 10px 0 23px;
}
.footer-top ul {
  margin: 0;
  display: grid;
  gap: 11px;
}
.footer-top li,
.footer-top > div > p:not(.footer-intro > p) {
  font-size: 12px;
  color: #bbcbb4;
  line-height: 1.9;
}
.footer-top a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-top .mailing {
  font-size: 10px !important;
  margin-top: 16px;
}
.footer-top .text-link {
  font-size: 11px;
  color: #d6e1ca;
  margin-top: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #ffffff20;
  margin-top: 55px;
  padding-top: 22px;
  font-size: 9px;
  color: #b3c5ac;
}
.footer-bottom > div {
  display: flex;
  gap: 30px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.page-intro {
  padding: 82px 0 70px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.09;
  max-width: 1000px;
}
.page-intro p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  margin-top: 25px;
}
.service-catalog {
  padding-top: 66px;
}
.catalog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  margin-bottom: 65px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
}
.catalog-row:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.catalog-row:nth-child(even) .catalog-image {
  order: 2;
}
.catalog-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 4px;
}
.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.catalog-image:hover img {
  transform: scale(1.025);
}
.catalog-copy .eyebrow {
  font-size: 9px;
}
.catalog-copy h2 {
  font-size: 42px;
}
.catalog-copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 21px;
}
.catalog-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 27px;
}
.catalog-actions .button {
  font-size: 12px;
  gap: 20px;
  padding: 16px 20px;
}
.catalog-actions .text-link {
  font-size: 12px;
  gap: 12px;
}
.brand-band {
  background: var(--sage);
  padding-block: 34px;
}
.brand-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.brand-band p {
  font-size: 12px;
  line-height: 1.7;
}
.brand-band p:first-child {
  color: var(--ink);
  font-weight: 500;
}
.brand-band .container > div {
  display: flex;
  align-items: center;
  gap: 50px;
}
.equipment-brand {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.2;
}
.equipment-brand.rainbird {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: -0.08em;
  position: relative;
}
.rainbird > span {
  font-family: var(--font);
  font-size: 9px;
  position: absolute;
  right: -10px;
  top: 1px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
}
.faq-layout > div > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  margin: 22px 0 28px;
  max-width: 340px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  padding: 23px 0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.faq-item[open] summary .icon {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--green);
}
.faq-item > div {
  padding: 0 35px 24px 0;
}
.faq-item p {
  font-size: 14px;
  line-height: 1.8;
}
.service-hero {
  padding: 62px 0 76px;
}
.service-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.breadcrumb {
  display: inline-block;
  font-size: 11px;
  margin-bottom: 33px;
}
.breadcrumb > span {
  color: var(--muted);
  margin-left: 8px;
}
.breadcrumb:hover {
  text-decoration: underline;
}
.service-hero .eyebrow {
  font-size: 10px;
}
.service-hero h1 {
  font-size: clamp(43px, 4.5vw, 65px);
  line-height: 1.1;
}
.service-hero p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0 28px;
}
.service-hero .button {
  font-size: 13px;
}
.service-call {
  font-size: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 17px;
  width: fit-content;
}
.service-call:hover {
  text-decoration: underline;
}
.service-call .icon {
  width: 14px;
  height: 14px;
}
.service-hero-image {
  position: relative;
  min-height: 530px;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.service-hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}
.detail-section {
  background: var(--sage);
}
.detail-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
  margin-bottom: 60px;
}
.detail-intro h2 {
  font-size: 43px;
}
.detail-intro p {
  font-size: 15px;
  line-height: 1.9;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.feature {
  border-top: 1px solid #c8d2bf;
  padding-top: 20px;
}
.feature-number {
  font-size: 11px;
  color: #526743;
}
.feature h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 23px 0 14px;
}
.feature p {
  font-size: 13px;
  line-height: 1.8;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 0;
}
.process-steps li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.process-steps li > span {
  display: grid;
  place-items: center;
  border: 1px solid #cbd5c2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 12px;
  margin-bottom: 23px;
}
.process-steps h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.process-steps p {
  font-size: 14px;
  line-height: 1.8;
}
.process-section + .faq-section {
  padding-top: 0;
}
.related-services {
  background: var(--sage);
  padding: 42px 0;
}
.related-services h2 {
  font-size: 24px;
  margin-bottom: 22px;
}
.related-services .container > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.related-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  padding: 16px 0;
  border-top: 1px solid #cbd7c1;
}
.related-services a .icon:first-child {
  width: 20px;
  height: 20px;
}
.related-services a .icon:last-child {
  margin-left: auto;
  width: 19px;
  height: 19px;
}
.related-services a:hover {
  text-decoration: underline;
}
.about-intro {
  border: 0;
  padding-bottom: 60px;
}
.about-intro .container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  column-gap: 100px;
}
.about-intro .eyebrow {
  grid-column: 1/-1;
}
.about-intro h1 {
  font-size: clamp(45px, 5.6vw, 80px);
}
.about-intro p:not(.eyebrow) {
  align-self: end;
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 8px;
}
.about-panorama {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 3px;
}
.about-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}
.about-panorama:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #152b2769, transparent 70%);
}
.about-panorama > div {
  position: absolute;
  bottom: 38px;
  left: 42px;
  z-index: 1;
  color: #fff;
}
.about-panorama > div > span {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.about-panorama p {
  font-family: var(--display);
  font-size: 39px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: 16px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.story-copy p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 23px;
}
.story-copy p.lead {
  font-size: 23px;
  line-height: 1.7;
  margin-bottom: 27px;
}
.story-copy .text-link {
  margin-top: 8px;
}
.values-section {
  background: var(--forest);
  color: #fff;
}
.values-section .eyebrow {
  color: var(--lime);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
}
.values-grid article {
  border-top: 1px solid #ffffff30;
  padding-top: 28px;
}
.values-grid .icon {
  width: 34px;
  height: 34px;
  color: var(--lime);
  margin-bottom: 30px;
  stroke-width: 1.2;
}
.values-grid h3 {
  font-size: 27px;
  margin-bottom: 18px;
}
.values-grid p {
  font-size: 14px;
  line-height: 1.85;
  color: #d0ddc8;
}
.contact-details {
  padding: 53px 0;
  border-bottom: 1px solid var(--line);
}
.contact-details .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.contact-details .container > div {
  display: flex;
  gap: 19px;
}
.contact-details .container > div > .icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.3;
  margin-top: 2px;
}
.contact-details h2 {
  font-size: 19px;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.contact-details p {
  font-size: 13px;
  line-height: 1.8;
}
.contact-details .text-link {
  margin-top: 18px;
  font-size: 11px;
  gap: 13px;
}
.page-contact-us .contact-section {
  padding-top: 69px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.resource-grid article {
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 3px;
}
.resource-grid .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
  margin-bottom: 22px;
}
.resource-grid h3 {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 17px;
}
.resource-grid p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}
.resource-grid .text-link {
  font-size: 13px;
}
.resource-grid .text-link .icon {
  height: 18px;
  width: 18px;
  margin: 0;
}

.resource-section + .faq-section {
  padding-top: 0;
}
.prose {
  max-width: 770px;
}
.prose h2 {
  font-size: 29px;
  margin: 40px 0 20px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  font-size: 16px;
  line-height: 1.9;
}
.prose p a {
  text-decoration: underline;
}
.prose > .text-link {
  margin-top: 42px;
}
.not-found {
  text-align: center;
  padding: 95px 0 120px;
}
.not-found .container > .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  stroke-width: 1;
}
.not-found .eyebrow {
  justify-content: center;
}
.not-found h1 {
  font-size: clamp(44px, 5.6vw, 76px);
}
.not-found p:not(.eyebrow) {
  margin: 27px 0;
}
.not-found .container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
@keyframes photo-in {
  from {
    transform: scale(1.025);
    opacity: 0.75;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-left: max(var(--gutter), calc((100vw - 1280px) / 2));
  }
  .hero-copy-inner {
    max-width: none;
  }
  .hero {
    min-height: 760px;
  }
  .hero-photo-caption {
    left: 58px;
    bottom: 50px;
  }
  .hero-seal {
    right: 60px;
    top: 40px;
  }
}
@media (max-width: 1200px) {
  :root {
    --gutter: 36px;
    --header-height: 84px;
  }
  .header-inner {
    gap: 26px;
  }
  .brand-type {
    font-size: 27px;
  }
  .brand-grass {
    height: 48px;
  }
  .main-nav {
    gap: 20px;
  }
  .header-actions {
    gap: 20px;
  }
  .header-actions .phone-link span {
    display: none;
  }
  .header-actions .phone-link {
    padding: 12px 0;
  }
  .main-nav > a {
    font-size: 12px;
  }
  .hero {
    min-height: 645px;
  }
  .hero-copy {
    padding-right: 28px;
  }
  .hero h1 {
    font-size: clamp(66px, 7.45vw, 94px);
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hero-copy > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions > .button {
    padding: 17px 19px;
    font-size: 12px;
    gap: 19px;
  }
  .hero-service-link {
    font-size: 12px;
  }
  .hero-location {
    font-size: 9px;
  }
  .section {
    padding-block: 83px;
  }
  .service-showcase {
    gap: 36px;
  }
  .service-row {
    gap: 16px;
  }
  .service-icon {
    width: 41px;
    height: 41px;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-number {
    font-size: 8px;
  }
  .featured-service {
    min-height: 457px;
  }
  .philosophy-layout,
  .seasonal-layout {
    gap: 55px;
  }
  .philosophy-image {
    min-height: 550px;
  }
  .contact-layout {
    gap: 45px;
  }
  .form-shell {
    padding: 30px 27px;
  }
  .footer-top {
    gap: 30px;
  }
  .review {
    padding: 25px;
  }
  .review blockquote {
    font-size: 16px;
  }
  .area-layout {
    gap: 45px;
  }
  .catalog-row {
    gap: 45px;
  }
  .catalog-copy h2 {
    font-size: 35px;
  }
  .catalog-actions {
    gap: 20px;
  }
  .service-hero-layout {
    gap: 42px;
  }
  .service-hero-image {
    min-height: 520px;
  }
  .detail-intro {
    gap: 60px;
  }
  .detail-intro h2 {
    font-size: 38px;
  }
  .feature-grid {
    gap: 26px;
  }
  .faq-layout {
    gap: 65px;
  }
  .about-intro .container {
    column-gap: 50px;
  }
  .contact-details .container {
    gap: 28px;
  }
  .contact-details .container > div {
    gap: 13px;
  }
  .resource-grid {
    gap: 22px;
  }
}
@media (max-width: 960px) {
  .header-inner {
    gap: 20px;
  }
  .main-nav {
    gap: 17px;
  }
  .main-nav > a {
    font-size: 11px;
  }
  .header-actions .phone-link {
    display: none;
  }
  .hero {
    grid-template-columns: 48% 52%;
    min-height: 600px;
  }
  .hero-copy {
    padding-block: 48px;
  }
  .hero h1 {
    font-size: 73px;
  }
  .hero-copy > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 7px;
    letter-spacing: 0.08em;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
  }
  .hero-location {
    font-size: 8px;
    margin-top: 22px;
  }
  .hero-seal {
    width: 99px;
    height: 99px;
    right: 22px;
    top: 24px;
  }
  .hero-seal > .seal-grass {
    width: 43px;
  }
  .hero-photo-caption {
    left: 27px;
    right: 25px;
    bottom: 29px;
  }
  .hero-photo-caption > span {
    font-size: 24px;
  }
  .trust-strip span {
    font-size: 11px;
    gap: 10px;
  }
  .trust-strip .container {
    gap: 17px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > div > p:not(.eyebrow),
  .section-heading > p {
    font-size: 13px;
  }
  .service-row {
    gap: 13px;
    padding-block: 23px;
  }
  .service-row h3 {
    font-size: 21px;
  }
  .service-row p {
    font-size: 12px;
  }
  .service-number {
    font-size: 7px;
  }
  .service-icon {
    width: 33px;
    height: 33px;
  }
  .service-icon .icon {
    width: 18px;
    height: 18px;
  }
  .featured-copy h3 {
    font-size: 36px;
  }
  .featured-service {
    min-height: 434px;
  }
  .philosophy-layout {
    gap: 39px;
  }
  .philosophy-image {
    min-height: 550px;
  }
  .philosophy-copy h2 {
    font-size: 36px;
  }
  .philosophy-copy .lead {
    font-size: 17px;
  }
  .philosophy-copy > p:not(.lead):not(.eyebrow) {
    font-size: 13px;
  }
  .philosophy-copy .eyebrow {
    font-size: 9px;
  }
  .image-note {
    padding: 22px;
    gap: 16px;
  }
  .image-note span {
    font-size: 16px;
  }
  .seasonal-layout {
    gap: 36px;
  }
  .season-art {
    transform: scale(0.83);
    margin-inline: -35px;
  }
  .season-copy h2 {
    font-size: 37px;
  }
  .season-copy .eyebrow {
    font-size: 9px;
  }
  .season-tabs {
    gap: 23px;
  }
  .season-tabs button {
    font-size: 12px;
  }
  .review-grid {
    gap: 15px;
  }
  .review {
    padding: 22px 20px;
  }
  .review blockquote {
    font-size: 14px;
  }
  .review-source {
    font-size: 8px;
  }
  .area-layout {
    gap: 35px;
  }
  .area-layout h2 {
    font-size: 35px;
  }
  .area-layout .eyebrow {
    font-size: 9px;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 32px;
  }
  .contact-copy h2,
  .contact-copy h1 {
    font-size: 42px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-copy .eyebrow {
    font-size: 9px;
  }
  .contact-phone strong {
    font-size: 21px;
  }
  .contact-phone {
    gap: 10px;
  }
  .contact-phone > .icon {
    width: 17px;
  }
  .phone-disc {
    width: 36px;
    height: 36px;
  }
  .form-shell {
    padding: 26px 23px;
  }
  .service-option > span {
    font-size: 10px;
    padding: 11px 9px;
    gap: 6px;
  }
  .service-option > span > .icon {
    width: 14px;
    height: 14px;
  }
  .contact-small-photo {
    height: 190px;
  }
  .contact-small-photo span {
    font-size: 23px;
  }
  .footer-top {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:last-child {
    grid-column: 2/4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .footer-top > div:last-child h2 {
    grid-column: 1/-1;
    margin: 0 0 12px;
  }
  .footer-top .mailing {
    margin: 0;
  }
  .footer-top > div:last-child .text-link {
    justify-self: start;
  }
  .footer-top .brand-type {
    font-size: 25px;
  }
  .footer-intro {
    grid-row: span 2;
  }
  .footer-bottom {
    font-size: 8px;
  }
  .service-hero h1 {
    font-size: 45px;
  }
  .service-hero-image {
    min-height: 520px;
  }
  .service-hero .button {
    font-size: 12px;
    padding: 16px;
    gap: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .feature h3 {
    margin-top: 17px;
  }
  .detail-intro {
    gap: 40px;
  }
  .detail-intro h2 {
    font-size: 34px;
  }
  .process-steps {
    gap: 35px;
  }
  .process-steps h3 {
    font-size: 21px;
  }
  .related-services .container > div {
    gap: 25px;
  }
  .related-services a {
    font-size: 12px;
  }
  .brand-band .container {
    flex-wrap: wrap;
  }
  .brand-band p:last-child {
    font-size: 11px;
  }
  .brand-band .container > div {
    gap: 35px;
  }
  .catalog-copy .eyebrow {
    font-size: 8px;
  }
  .catalog-copy h2 {
    font-size: 33px;
  }
  .catalog-copy p:not(.eyebrow) {
    font-size: 14px;
  }
  .catalog-image {
    height: 370px;
  }
  .faq-layout {
    gap: 40px;
  }
  .faq-item summary {
    font-size: 14px;
  }
  .about-intro p:not(.eyebrow) {
    font-size: 16px;
  }
  .story-layout {
    gap: 50px;
  }
  .values-grid {
    gap: 35px;
  }
  .values-grid h3 {
    font-size: 23px;
  }
  .contact-details .container {
    gap: 24px;
  }
  .contact-details .container > div {
    display: block;
  }
  .contact-details .container > div > .icon {
    margin-bottom: 15px;
  }
  .contact-details h2 {
    font-size: 17px;
  }
  .resource-grid article {
    padding: 24px;
  }
  .resource-grid h3 {
    font-size: 22px;
  }
  .resource-grid p {
    font-size: 13px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
    --header-height: 77px;
  }
  html {
    scroll-padding-top: 97px;
  }
  .announcement .container {
    justify-content: center;
    min-height: 29px;
  }
  .announcement {
    font-size: 9px;
  }
  .announcement a {
    display: none;
  }
  .announcement .icon {
    width: 11px;
    height: 11px;
  }
  .header-inner {
    gap: 15px;
  }
  .brand-grass {
    height: 45px;
  }
  .brand-type {
    font-size: 26px;
  }
  .brand-type > span {
    font-size: 7px;
    margin-top: 5px;
    letter-spacing: 0.29em;
  }
  .header-actions {
    margin-left: auto;
    gap: 0;
  }
  .header-actions .button {
    font-size: 11px;
    padding: 12px 15px;
    gap: 12px;
    min-height: 42px;
  }
  .header-actions .button > .icon {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 43px;
    border: 0;
    background: none;
    padding: 10px;
    order: 3;
    position: relative;
  }
  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .menu-lines,
  .menu-lines:before,
  .menu-lines:after {
    height: 1.5px;
    width: 21px;
    background: var(--forest);
    position: absolute;
    display: block;
    content: "";
    transition:
      transform 0.2s,
      opacity 0.2s;
  }
  .menu-lines:before {
    top: -6px;
  }
  .menu-lines:after {
    top: 6px;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:before {
    top: 0;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 14px var(--gutter) 25px;
    background: var(--paper);
    box-shadow: 0 16px 20px #17362718;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .main-nav > a {
    font-size: 17px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav > a::after {
    display: none;
  }
  .main-nav > a[aria-current] {
    color: var(--green);
  }
  .mobile-contact-link {
    display: block !important;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 47px var(--gutter) 37px;
    justify-content: flex-start;
  }
  .hero-copy-inner {
    max-width: none;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(65px, 14vw, 95px);
    line-height: 0.99;
  }
  .hero h1 em {
    padding-left: 0;
  }
  .hero-copy > div > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 21px;
    margin-top: 25px;
  }
  .hero-actions > .button {
    font-size: 12px;
    min-height: 52px;
  }
  .hero-service-link {
    font-size: 12px;
  }
  .hero-location {
    font-size: 9px;
    gap: 6px;
    margin-top: 24px;
  }
  .hero-photo {
    height: 400px;
    min-height: 0;
  }
  .hero-image {
    object-position: center 64%;
  }
  .hero-seal {
    top: 22px;
    right: 24px;
    width: 100px;
    height: 100px;
  }
  .hero-photo-caption {
    left: 26px;
    right: 26px;
    bottom: 25px;
  }
  .hero-photo-caption > span {
    font-size: 25px;
  }
  .hero-photo-caption > a {
    width: 43px;
    height: 43px;
  }
  .trust-strip .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    min-height: 75px;
  }
  .trust-strip span {
    font-size: 10px;
    line-height: 1.5;
    flex: 1;
    gap: 8px;
    justify-content: flex-start;
  }
  .trust-strip .icon {
    height: 19px;
    width: 19px;
  }
  .trust-strip span + span {
    padding-left: 15px;
  }
  .trust-strip span:last-child {
    display: none;
  }
  .section {
    padding-block: 65px;
  }
  h2 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
    margin-bottom: 19px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p,
  .section-heading > div > p:not(.eyebrow) {
    margin-top: 21px;
    max-width: 420px;
    font-size: 14px;
  }
  .section-heading > div > .text-link {
    margin-top: 16px;
  }
  .service-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .featured-service {
    min-height: 375px;
  }
  .featured-copy {
    left: 27px;
    bottom: 28px;
  }
  .featured-copy h3 {
    font-size: 40px;
  }
  .featured-top {
    left: 26px;
    right: 25px;
  }
  .featured-top > span:first-child {
    font-size: 9px;
  }
  .service-row {
    padding: 23px 0;
    gap: 18px;
  }
  .service-row:hover {
    padding-left: 0;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-number {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .service-row p {
    font-size: 13px;
    max-width: none;
  }
  .service-icon {
    width: 43px;
    height: 43px;
  }
  .service-icon .icon {
    width: 23px;
    height: 23px;
  }
  .service-arrow {
    width: 21px;
    height: 21px;
  }
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .philosophy-image {
    min-height: 400px;
    margin-right: 0;
    padding-right: 18px;
    padding-bottom: 20px;
  }
  .philosophy-image > img {
    max-width: calc(100% - 18px);
    max-height: calc(100% - 20px);
    object-position: center 53%;
  }
  .image-note {
    padding: 21px 27px;
    gap: 20px;
  }
  .image-note span {
    font-size: 17px;
  }
  .philosophy-copy h2 {
    font-size: 39px;
  }
  .philosophy-copy .eyebrow {
    font-size: 9px;
  }
  .philosophy-copy .lead {
    font-size: 18px;
    max-width: none;
    margin-top: 24px;
  }
  .philosophy-copy > p:not(.lead):not(.eyebrow) {
    font-size: 14px;
    max-width: none;
  }
  .promise-points {
    font-size: 13px;
    margin: 22px 0 26px;
  }
  .seasonal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .season-art {
    min-height: 395px;
    max-width: 490px;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.85);
    transform-origin: center center;
    margin-top: -28px;
    margin-bottom: -28px;
  }
  .season-art > p {
    bottom: -24px;
  }
  .season-center {
    margin-top: 28px;
  }
  .season-copy h2 {
    font-size: 38px;
  }
  .season-tabs {
    gap: 30px;
    margin-top: 25px;
  }
  .season-tabs button {
    font-size: 13px;
    padding-block: 14px;
  }
  .season-panel {
    min-height: 198px;
    padding-top: 24px;
  }
  .season-panel h3 {
    font-size: 22px;
  }
  .season-panel p {
    max-width: none;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review {
    padding: 24px 28px;
  }
  .review blockquote {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 23px;
  }
  .quote-mark {
    font-size: 67px;
    height: 48px;
  }
  .review-attribution strong {
    font-size: 13px;
  }
  .review-attribution span > span {
    font-size: 11px;
  }
  .review-source {
    font-size: 9px;
  }
  .area-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .area-layout h2 {
    font-size: 37px;
  }
  .area-layout > div > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 14px;
    max-width: 480px;
  }
  .area-layout > div > p.small {
    font-size: 12px;
  }
  .area-chips {
    gap: 8px;
    margin-top: 22px;
  }
  .area-chips > span {
    font-size: 11px;
    padding: 8px 11px;
  }
  .region-map {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-copy h2,
  .contact-copy h1 {
    font-size: 44px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 460px;
  }
  .contact-phone {
    max-width: none;
    margin-top: 26px;
    padding: 20px 0;
  }
  .phone-disc {
    width: 45px;
    height: 45px;
  }
  .contact-phone > span > span {
    font-size: 11px;
  }
  .contact-phone strong {
    font-size: 25px;
  }
  .contact-phone > .icon {
    width: 21px;
  }
  .contact-benefits {
    display: grid;
    gap: 0;
    margin-top: 19px;
  }
  .contact-benefits p {
    font-size: 12px;
  }
  .contact-small-photo {
    display: none;
  }
  .form-shell {
    padding: 28px 24px;
  }
  .form-heading h2 {
    font-size: 29px;
  }
  .form-heading > p {
    font-size: 13px;
  }
  .service-option > span {
    font-size: 11px;
    padding: 12px 11px;
    min-height: 47px;
    gap: 8px;
  }
  .service-option > span > .icon {
    width: 16px;
    height: 16px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
    min-height: 47px;
  }
  .field textarea {
    min-height: 100px;
  }
  .form-grid {
    gap: 17px 12px;
  }
  .form-success h2 {
    font-size: 40px;
  }
  .cta-section {
    padding: 64px 0;
  }
  .cta-inner {
    display: block;
  }
  .cta-inner h2 {
    font-size: 44px;
  }
  .cta-inner p:not(.eyebrow) {
    font-size: 14px;
  }
  .cta-actions {
    align-items: flex-start;
    gap: 21px;
    margin-top: 30px;
  }
  .cta-phone {
    font-size: 22px;
  }
  .cta-leaf {
    left: 36%;
    top: 35%;
    transform: rotate(-10deg);
  }
  .site-footer {
    padding: 50px 0 96px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 33px 27px;
  }
  .footer-intro {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .footer-intro > p {
    font-size: 24px;
    margin-top: 22px;
  }
  .footer-intro .brand-type {
    font-size: 29px;
  }
  .footer-phone {
    font-size: 18px;
    margin-top: 19px;
  }
  .footer-top h2 {
    font-size: 11px;
    margin-top: 0;
    margin-bottom: 18px;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
    column-gap: 27px;
    padding-top: 4px;
  }
  .footer-top li,
  .footer-top > div > p:not(.footer-intro > p) {
    font-size: 12px;
  }
  .footer-top > div:last-child .text-link {
    margin-top: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 9px;
    gap: 12px;
    margin-top: 38px;
  }
  .footer-bottom > div {
    gap: 24px;
  }
  .mobile-actions {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    box-shadow: 0 -3px 20px #183d2b10;
    background: #fff;
    padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
    gap: 12px;
    border-top: 1px solid var(--line);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
    flex: 1;
    min-height: 42px;
    border: 1px solid var(--forest);
    border-radius: 3px;
    line-height: 1.4;
  }
  .mobile-actions a:last-child {
    background: var(--water);
    border-color: var(--water);
    color: var(--water-ink);
  }
  .mobile-actions .icon {
    width: 16px;
    height: 16px;
  }
  .page-intro {
    padding: 51px 0 46px;
  }
  .page-intro h1 {
    font-size: clamp(42px, 9vw, 64px);
    line-height: 1.12;
  }
  .page-intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .catalog-row {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .catalog-row:nth-child(even) .catalog-image {
    order: 0;
  }
  .catalog-image {
    height: 285px;
  }
  .catalog-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 14px;
  }
  .catalog-copy h2 {
    font-size: 36px;
  }
  .catalog-copy p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 18px;
  }
  .catalog-actions {
    gap: 22px;
    margin-top: 23px;
  }
  .catalog-actions .button {
    font-size: 11px;
    gap: 17px;
    padding: 16px;
  }
  .catalog-actions .text-link {
    font-size: 12px;
  }
  .brand-band .container {
    gap: 23px;
    align-items: center;
  }
  .brand-band .container > div {
    gap: 34px;
  }
  .brand-band p:first-child {
    font-size: 12px;
  }
  .brand-band p:last-child {
    font-size: 11px;
    width: 100%;
  }
  .equipment-brand {
    font-size: 22px;
  }
  .equipment-brand.rainbird {
    font-size: 27px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-layout h2 {
    font-size: 36px;
  }
  .faq-layout > div > p:not(.eyebrow) {
    font-size: 14px;
    margin: 20px 0;
  }
  .faq-item summary {
    padding: 20px 0;
    font-size: 14px;
    gap: 19px;
  }
  .faq-item p {
    font-size: 13px;
  }
  .service-hero {
    padding: 28px 0 53px;
  }
  .service-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .service-hero .breadcrumb {
    font-size: 10px;
    margin-bottom: 28px;
  }
  .service-hero .eyebrow {
    font-size: 9px;
  }
  .service-hero h1 {
    font-size: clamp(42px, 9vw, 60px);
    max-width: 560px;
  }
  .service-hero p:not(.eyebrow) {
    font-size: 15px;
    margin: 22px 0 25px;
  }
  .service-hero .button {
    font-size: 12px;
    padding: 17px 20px;
  }
  .service-call {
    margin-top: 17px;
    font-size: 12px;
  }
  .service-hero-image {
    min-height: 360px;
  }
  .detail-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }
  .detail-intro h2 {
    font-size: 35px;
    max-width: 520px;
  }
  .detail-intro p {
    font-size: 14px;
    line-height: 1.9;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .feature h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-top: 18px;
  }
  .feature p {
    font-size: 13px;
    line-height: 1.8;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .process-steps li {
    position: relative;
    padding: 23px 0 0 61px;
    min-height: 100px;
  }
  .process-steps li > span {
    position: absolute;
    left: 0;
    top: 23px;
    margin: 0;
    width: 37px;
    height: 37px;
    font-size: 11px;
  }
  .process-steps h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .process-steps p {
    font-size: 14px;
  }
  .related-services {
    padding: 36px 0;
  }
  .related-services h2 {
    font-size: 24px;
  }
  .related-services .container > div {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .related-services a {
    font-size: 14px;
    padding-block: 18px;
  }
  .about-intro .container {
    display: block;
  }
  .about-intro h1 {
    font-size: clamp(42px, 9.5vw, 64px);
  }
  .about-intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 25px;
    max-width: 510px;
  }
  .about-panorama {
    height: 330px;
  }
  .about-panorama img {
    object-position: 58% center;
  }
  .about-panorama > div {
    left: 25px;
    bottom: 28px;
  }
  .about-panorama > div > span {
    font-size: 8px;
  }
  .about-panorama p {
    font-size: 32px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .story-layout h2 {
    font-size: 40px;
  }
  .story-copy p {
    font-size: 15px;
    line-height: 1.9;
  }
  .story-copy p.lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .values-grid article {
    padding-top: 24px;
  }
  .values-grid .icon {
    margin-bottom: 22px;
  }
  .values-grid h3 {
    font-size: 27px;
  }
  .values-grid p {
    font-size: 14px;
    max-width: 500px;
  }
  .contact-details {
    padding: 43px 0;
  }
  .contact-details .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-details .container > div {
    display: flex;
    gap: 20px;
  }
  .contact-details .container > div > .icon {
    width: 28px;
    height: 28px;
  }
  .contact-details h2 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .contact-details p {
    font-size: 14px;
  }
  .contact-details .text-link {
    font-size: 12px;
    margin-top: 13px;
  }
  .page-contact-us .contact-section {
    padding-top: 42px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .resource-grid article {
    padding: 28px;
  }
  .resource-grid h3 {
    font-size: 25px;
  }
  .resource-grid p {
    font-size: 14px;
  }
  .not-found {
    padding: 60px 0 75px;
  }
  .not-found h1 {
    font-size: 43px;
  }
  .not-found p:not(.eyebrow) {
    font-size: 14px;
  }
  .not-found .container > div {
    gap: 25px;
  }
  .not-found .button {
    font-size: 12px;
    padding: 16px 19px;
    gap: 20px;
  }
}
@media (max-width: 390px) {
  :root {
    --gutter: 20px;
  }
  .brand {
    gap: 6px;
  }
  .brand-grass {
    height: 40px;
  }
  .brand-type {
    font-size: 23px;
  }
  .brand-type > span {
    font-size: 6px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-actions .button {
    font-size: 10px;
    padding: 12px;
    gap: 9px;
  }
  .header-actions .button .icon {
    width: 13px;
  }
  .menu-toggle {
    width: 33px;
    padding: 7px;
  }
  .hero-copy {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions > .button {
    font-size: 11px;
    padding: 15px 16px;
    gap: 12px;
  }
  .hero-service-link {
    font-size: 11px;
    gap: 8px;
  }
  .hero-location {
    font-size: 8px;
  }
  .hero-photo {
    height: 320px;
  }
  .hero-seal {
    width: 86px;
    height: 86px;
    right: 18px;
    top: 18px;
  }
  .hero-seal > .seal-grass {
    width: 38px;
  }
  .hero-photo-caption > span {
    font-size: 23px;
  }
  .trust-strip span {
    font-size: 9px;
  }
  .service-row {
    gap: 13px;
  }
  .service-icon {
    width: 36px;
    height: 36px;
  }
  .service-row p {
    font-size: 12px;
  }
  .service-number {
    font-size: 7px;
  }
  .service-row h3 {
    font-size: 21px;
  }
  .featured-service {
    min-height: 340px;
  }
  .philosophy-copy h2 {
    font-size: 35px;
  }
  .season-art {
    transform: scale(0.75);
    margin-block: -40px;
  }
  .season-copy h2 {
    font-size: 35px;
  }
  .contact-copy h2,
  .contact-copy h1 {
    font-size: 40px;
  }
  .form-shell {
    padding: 24px 18px;
  }
  .form-heading h2 {
    font-size: 27px;
  }
  .service-option > span {
    font-size: 10px;
    padding: 11px 8px;
    gap: 6px;
  }
  .service-option > span > .icon {
    width: 14px;
    height: 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-submit .button {
    font-size: 11px;
    padding: 15px 13px;
    gap: 12px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .brand-band .container > div {
    gap: 25px;
  }
  .equipment-brand {
    font-size: 20px;
  }
  .equipment-brand.rainbird {
    font-size: 24px;
  }
  .catalog-actions {
    gap: 18px;
  }
  .catalog-actions .button {
    font-size: 10px;
    padding: 15px;
    gap: 10px;
  }
  .catalog-actions .text-link {
    font-size: 11px;
  }
  .page-intro h1 {
    font-size: 41px;
  }
  .about-intro h1 {
    font-size: 42px;
  }
  .cta-inner h2 {
    font-size: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
  .featured-service:hover > img,
  .catalog-image:hover img {
    transform: none;
  }
}
@media print {
  .site-header,
  .announcement,
  .site-footer,
  .mobile-actions,
  .menu-toggle,
  .hero-seal,
  .cta-section {
    display: none !important;
  }
  body {
    font-size: 12pt;
    background: #fff;
    color: #000;
  }
  .section {
    padding-block: 20px;
  }
  .container {
    width: 100%;
  }
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 20px;
  }
  .hero h1 {
    font-size: 42pt;
  }
  .hero-photo {
    min-height: 300px;
  }
  a {
    text-decoration: underline;
  }
  .form-shell {
    box-shadow: none;
  }
  .contact-layout {
    display: block;
  }
  .contact-copy {
    margin-bottom: 25px;
  }
  .contact-small-photo {
    display: none;
  }
}

/* A contrasting seasonal chapter gives the page a clear visual rhythm. */
.seasonal-section {
  background: #1d4432;
  color: #f4f5e9;
}
.seasonal-section .eyebrow {
  color: #d2e1be;
}
.seasonal-section .season-orbit {
  border-color: #b3c8a633;
}
.seasonal-section .orbit-inner {
  border-color: #b3c8a649;
}
.seasonal-section .season-center {
  background: #315a3d;
  box-shadow: 0 0 0 19px #274e37;
  color: #e2ebcb;
}
.seasonal-section .orbit-icon {
  box-shadow: 0 0 0 10px #1d4432;
}
.seasonal-section .season-art > p {
  color: #c6d4b7;
}
.seasonal-section .season-tabs {
  border-color: #cbd9be40;
}
.seasonal-section .season-tabs button {
  color: #c2d0b9;
}
.seasonal-section .season-tabs button[aria-selected="true"] {
  color: #f1f3dc;
  border-color: #d5e4b9;
}
.seasonal-section .season-panel p {
  color: #cbd8c1;
}
.seasonal-section .text-link {
  color: #e2eccf;
}

.form-shell {
  scroll-margin-top: 115px;
}
@media (max-width: 760px) {
  body:has(.inquiry-form input:focus, .inquiry-form textarea:focus)
    .mobile-actions {
    display: none !important;
  }
}

/* Water accents carry the blue of the logo through the green identity. */
.eyebrow > span:empty {
  background: var(--water);
}
.seasonal-section .eyebrow > span:empty,
.cta-section .eyebrow > span:empty,
.values-section .eyebrow > span:empty {
  background: var(--water-light);
}
.phone-link .icon,
.trust-strip .icon,
.service-icon .icon {
  color: var(--water-dark);
}
.hero-service-link {
  color: var(--water-dark);
}
.main-nav > a::after {
  background: var(--water);
}
.form-shell {
  border-top: 3px solid var(--water);
}
.form-heading > p.form-requirements {
  font-size: 11px;
  color: var(--water-dark);
  margin-top: 10px;
}
.field select {
  padding-right: 28px;
  line-height: 1.5;
}
.field-hint {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 7px;
}
.installation-details {
  margin: 23px 0;
  border: 1px solid #b6d1df;
  border-radius: 4px;
  background: #f1f7fa;
}
.installation-details > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--water-ink);
}
.installation-details > summary::-webkit-details-marker {
  display: none;
}
.installation-details > summary > .icon:first-child {
  color: var(--water-dark);
  width: 23px;
  height: 23px;
}
.installation-details > summary > .icon:last-child {
  margin-left: auto;
  height: 18px;
  width: 18px;
  transition: transform 0.2s;
}
.installation-details[open] > summary > .icon:last-child {
  transform: rotate(45deg);
}
.installation-details > summary strong {
  display: block;
  font-size: 13px;
  line-height: 1.5;
}
.installation-details > summary small {
  display: block;
  font-size: 10px;
  margin-top: 3px;
  color: #526c79;
}
.installation-details-body {
  padding: 0 18px 20px;
}
.installation-details-body > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.installation-details-body > p {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 17px;
}
.installation-details .form-grid {
  margin-top: 16px;
  margin-bottom: 0;
}
.installation-details label {
  font-size: 11px;
}
.installation-details .optional {
  font-size: 9px;
}
.installation-group + .installation-group {
  margin-top: 27px;
}
.installation-group-title {
  margin: 0 0 17px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cbdfe8;
  color: var(--water-dark);
  font-size: 13px;
  font-weight: 600;
}
.installation-question {
  margin: 21px 0 0;
}
.installation-question legend {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.65;
}
.installation-question > .field-hint {
  margin: -4px 0 11px;
}
.quote-choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quote-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.quote-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #c9d9e0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  color: var(--water-ink);
  line-height: 1.45;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.quote-option input {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--water-dark);
}
.quote-option:hover,
.quote-option:has(input:checked) {
  border-color: var(--water-dark);
}
.quote-option:has(input:checked) {
  background: var(--water-soft);
}
.quote-option:has(input:focus-visible) {
  outline: 2px solid var(--water-dark);
  outline-offset: 2px;
}
.quote-option input:focus-visible {
  outline: none;
}
.referral-sources {
  margin: 0 0 18px;
}
@media (max-width: 760px) {
  body:has(.inquiry-form select:focus) .mobile-actions {
    display: none !important;
  }
}
@media (max-width: 440px) {
  .installation-details .form-grid {
    grid-template-columns: 1fr;
  }
  .installation-details > summary {
    padding: 16px;
    gap: 9px;
  }
  .installation-details-body {
    padding: 0 16px 17px;
  }
  .quote-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-source-grid .quote-option {
    gap: 7px;
    padding-inline: 8px;
  }
  .quote-option span {
    overflow-wrap: anywhere;
  }
}

.field {
  min-width: 0;
}
.contact-preference .field-hint {
  flex-basis: 100%;
  margin-top: 0;
}
@media (max-width: 350px) {
  .quote-source-grid {
    grid-template-columns: 1fr;
  }
}

/* A scrollable collection of real customer reviews. */
.testimonials {
  scroll-margin-top: 110px;
}
.testimonials .section-heading {
  align-items: flex-end;
}
.review-rating {
  display: grid;
  gap: 6px;
  padding: 20px 25px;
  border: 1px solid #d6dfd0;
  border-radius: 4px;
  background: var(--paper);
  min-width: 255px;
}
.review-platform {
  font-size: 12px;
  font-weight: 600;
  color: var(--water-dark);
}
.review-rating > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.review-rating strong {
  font-family: var(--display);
  font-size: 37px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.review-rating strong > span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}
.review-rating > span:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
}
.review-rating > span:last-child .icon {
  height: 14px;
  width: 14px;
  color: var(--water-dark);
}
.review-rating:hover {
  border-color: var(--water-dark);
}
.review-stars {
  display: inline-flex;
  gap: 3px;
  color: #9c7028;
}
.review-stars .icon {
  width: 16px;
  height: 16px;
  stroke-width: 1;
}
.review-stars .star-filled {
  fill: currentColor;
}
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 5px 0 14px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #8ea999 #dbe3d4;
}
.review-track:focus-visible {
  outline-offset: 5px;
}
.review-track > .review {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 23px;
}
.review-card-top > span:last-child {
  color: var(--muted);
  font-size: 11px;
}
.review-track .review blockquote {
  margin: 0 0 26px;
  min-height: 126px;
}
.review-track .review blockquote p {
  font: inherit;
  color: inherit;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review-person:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-track .review-avatar {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.review-track .review-source {
  font-size: 11px;
  color: var(--water-dark);
  line-height: 1.6;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
}
.review-footer > p {
  font-size: 11px;
  line-height: 1.7;
}
.review-controls {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.review-position {
  font-size: 11px;
  color: var(--muted);
  margin-right: 11px;
  font-variant-numeric: tabular-nums;
  min-width: 56px;
  text-align: right;
}
.review-nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--water-dark);
  border-radius: 50%;
  background: var(--paper);
  color: var(--water-dark);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.review-nav .icon {
  width: 19px;
  height: 19px;
}
.review-previous .icon {
  transform: rotate(180deg);
}
.review-nav:hover:enabled {
  background: var(--water);
  color: var(--water-ink);
  border-color: var(--water);
}
.review-nav:disabled {
  border-color: #becbbb;
  color: #899782;
  cursor: default;
}
.season-visual {
  min-width: 0;
  width: 100%;
  max-width: 490px;
}
/* One shared orbit keeps the three circles equally spaced. The circles
   counter-rotate so their symbols stay upright as they travel. */
.season-visual {
  --care-orbit-duration: 60s;
  --care-play-state: paused;
}
#rooted-in-good-care {
  scroll-margin-top: 100px;
}
.season-visual .orbit-outer {
  width: 340px;
  height: 340px;
  top: 42px;
}
.season-satellites {
  position: absolute;
  top: 42px;
  left: calc(50% - 170px);
  width: 340px;
  height: 340px;
  z-index: 2;
  --care-animation: care-revolve var(--care-orbit-duration) linear infinite;
  animation: var(--care-animation) var(--care-play-state);
}
.season-satellites .orbit-icon {
  --care-animation: care-counter-revolve var(--care-orbit-duration) linear
    infinite;
  animation: var(--care-animation) var(--care-play-state);
}
.season-satellites .orbit-sun {
  top: -32px;
  left: 138px;
}
.season-satellites .orbit-drop {
  top: 223px;
  left: -9.224px;
}
.season-satellites .orbit-leaf {
  top: 223px;
  left: 285.224px;
}
.season-visual .season-center {
  position: absolute;
  top: 119.5px;
  left: calc(50% - 92.5px);
  margin: 0;
  --care-animation: care-center-pulse 6s ease-in-out infinite;
  animation: var(--care-animation) var(--care-play-state);
}
.season-center::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px solid #d3e8bb66;
  border-radius: 50%;
  pointer-events: none;
}
.season-visual.is-moving {
  --care-play-state: running;
}
/* The requested automatic illustration keeps moving with device motion
   reduction enabled. Other page animations retain their reduced-motion rules. */
@media (prefers-reduced-motion: reduce) {
  .season-visual :is(.season-satellites, .orbit-icon, .season-center) {
    animation: var(--care-animation) var(--care-play-state) !important;
  }
}
@keyframes care-revolve {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes care-counter-revolve {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes care-center-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 360px) {
  .season-art {
    transform: scale(0.7);
  }
}
@media (max-width: 1100px) {
  .review-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}
@media (max-width: 760px) {
  .testimonials .section-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .review-rating {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 17px 20px;
  }
  .review-track {
    grid-auto-columns: 88%;
    gap: 16px;
  }
  .review-track .review {
    padding: 24px;
  }
  .review-track .review blockquote {
    font-size: 17px;
    min-height: 145px;
  }
  .review-footer {
    flex-wrap: wrap;
    gap: 17px;
  }
  .review-controls {
    margin-left: auto;
  }
}

/* Small introductions for the existing seal and service-region illustration. */
@media (prefers-reduced-motion: no-preference) {
  .hero-seal.graphic-moving > svg:first-child {
    animation: seal-introduction 4s ease-out 1;
  }
  .hero-seal.graphic-moving > .icon {
    animation: sprout-introduction 3.5s ease-out 1;
    transform-origin: 50% 90%;
  }
  .region-map.graphic-moving .map-ripple {
    animation: map-introduction 4.5s ease-out 1;
    transform-box: fill-box;
    transform-origin: center;
  }
  .region-map.graphic-moving .map-reach {
    animation: region-introduction 4s ease-out 1;
  }
}
@keyframes seal-introduction {
  from {
    transform: rotate(-24deg);
  }
  to {
    transform: rotate(0);
  }
}
@keyframes sprout-introduction {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes map-introduction {
  0% {
    transform: scale(0.7);
    opacity: 0.1;
  }
  35%,
  75% {
    transform: scale(1.8);
    opacity: 0.6;
  }
  55%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes region-introduction {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.review-autoplay {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid #becbbb;
  border-radius: 24px;
  background: transparent;
  color: var(--water-dark);
  font-size: 11px;
  cursor: pointer;
}
.review-autoplay .icon {
  width: 12px;
  height: 12px;
}
.review-autoplay:hover {
  background: var(--paper);
  border-color: var(--water-dark);
}
.address-fields {
  margin: 3px 0 25px;
}
.address-fields > .field {
  margin-bottom: 20px;
}
.address-search {
  margin-bottom: 19px;
}
.address-search > label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
}
#google-address-widget {
  min-height: 49px;
}
#google-address-widget gmp-place-autocomplete {
  display: block;
  width: 100%;
  color-scheme: light;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit .button {
  white-space: normal;
  line-height: 1.5;
}
.form-submit .button .icon {
  flex: none;
}
.inquiry-network-status {
  margin: 12px 0;
  padding: 14px;
  border-left: 3px solid var(--water-dark);
  background: var(--water-soft);
  font-size: 13px;
  line-height: 1.65;
}
.inquiry-network-status.is-error {
  border-color: #963d25;
  background: #f9e9e0;
  color: #713423;
}
.review-feed-note {
  font-size: 11px;
  color: var(--muted);
}
@media (max-width: 440px) {
  .review-controls {
    flex-wrap: wrap;
    gap: 7px;
  }
  .review-autoplay {
    margin-right: auto;
  }
  .review-position {
    margin-right: 0;
  }
}
.operations-page {
  padding: 60px 0;
}
.operations-page h1 {
  font-size: clamp(32px, 5vw, 62px);
  max-width: 900px;
  margin: 20px 0;
}
.operations-page main > p {
  margin: 20px 0;
  max-width: 850px;
}
#ops-login {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 35px 0;
}
#ops-login input {
  padding: 13px;
  border: 1px solid var(--line);
  background: #fff;
}
#ops-status {
  color: #203c30;
  padding: 16px;
  border-left: 3px solid var(--forest);
  background: #e8eedf;
}
#ops-status.needs-attention {
  border-color: #913c25;
  background: #f9e9e0;
  color: #713423;
}
.operations-table {
  overflow: auto;
}
.operations-table table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.operations-table caption {
  text-align: left;
  margin-bottom: 12px;
}
.operations-table th,
.operations-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.operations-table button {
  padding: 10px;
  border: 1px solid var(--water-dark);
  border-radius: 3px;
  color: var(--water-dark);
  background: #fff;
  cursor: pointer;
}
#ops-detail {
  margin-top: 35px;
  padding: 25px;
  border: 1px solid var(--line);
}
#ops-detail h2,
#ops-detail h3 {
  margin: 20px 0;
}
#ops-detail dt {
  font-weight: 600;
  margin-top: 14px;
}
#ops-detail dd {
  margin: 3px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#ops-detail h2 {
  font-size: clamp(20px, 3vw, 32px);
  overflow-wrap: anywhere;
}

/* Water and mist share the still photo's crop and hover transform, sit
   below the existing shades/captions, and pass pointer events through. */
.water-spray {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 3px;
}
.hero-photo > .water-spray {
  border-radius: 0;
  animation: photo-in 1.2s ease-out both;
}
.featured-service > .water-spray {
  transition: transform 0.6s;
}
.featured-service:hover > .water-spray {
  transform: scale(1.035);
}
@media (prefers-reduced-motion: reduce) {
  .featured-service:hover > .water-spray {
    transform: none;
  }
}
@media print {
  .water-spray {
    display: none;
  }
}

/* Every photo has its own motion layer, including the service catalog. */
.catalog-image {
  aspect-ratio: 3 / 2;
  height: auto;
  align-self: center;
}
.service-hero-image[data-sprinkler="autumn-detail"] {
  aspect-ratio: 3 / 2;
  min-height: 0;
  height: auto;
  align-self: center;
}
.catalog-image > .water-spray {
  transition: transform 0.5s;
}
.catalog-image:hover > .water-spray {
  transform: scale(1.025);
}
[data-sprinkler="daylight-rotor"] > img {
  object-position: 66% 55%;
}
[data-sprinkler="night-detail"] > img {
  object-position: 43% 52%;
}
[data-sprinkler="night-lawn"] > img {
  object-position: 75% 68%;
}
/* Keep captions clear of the photographed nozzles and water. */
@media (prefers-reduced-motion: reduce) {
  .catalog-image:hover > .water-spray {
    transform: none;
  }
}
[data-sprinkler="evening-border"] > span {
  top: 14px;
  transform: none;
  font-size: 20px;
  line-height: 1.25;
}
@media (max-width: 760px) {
  [data-sprinkler="night-lawn"] > img {
    object-position: 75% 55%;
  }
}

/* Temporary photo references for owner review; no change to the images. */
[data-sprinkler] > .photo-review-label {
  position: absolute;
  inset: 12px auto auto 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 10px;
  margin: 0;
  border: 1px solid var(--water-light);
  border-radius: 5px;
  background: var(--forest-dark);
  color: #fff;
  box-shadow: 0 2px 8px #0003;
  font: 700 14px / 1 var(--font);
  letter-spacing: 0;
  transform: none;
  pointer-events: none;
}
/* Use the lower corner where a caption already occupies the top. */
[data-sprinkler="daylight-rotor"] > .photo-review-label,
[data-sprinkler="spring-lawn"] > .photo-review-label,
[data-sprinkler="autumn-detail"] > .photo-review-label,
[data-sprinkler="evening-border"] > .photo-review-label {
  top: auto;
  bottom: 12px;
}

/* The current review uses company and owner photographs only. */
.featured-service[data-sprinkler="driveway"] > img {
  object-position: 10% center;
}
.featured-service > .photo-review-label {
  inset: auto 12px 12px auto;
}
.service-season-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 460px;
  padding: 48px;
  border-radius: 5px;
  background: var(--forest-dark);
  color: var(--paper);
  text-align: center;
}
.service-season-symbol {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid #c3e2ef55;
  border-radius: 50%;
  color: var(--water-light);
  box-shadow: 0 0 0 18px #c3e2ef08;
}
.service-season-symbol > .icon {
  width: 82px;
  height: 82px;
  stroke-width: 1;
}
.service-season-title {
  font: 500 29px / 1.25 var(--display);
  letter-spacing: -0.03em;
}
.service-season-card > p:not(.eyebrow) {
  max-width: 340px;
  margin: 0;
  color: #dce8d6;
}
@media (max-width: 760px) {
  .service-season-card {
    min-height: 350px;
    padding: 36px 26px;
  }
  .service-season-symbol {
    width: 128px;
    height: 128px;
  }
  .service-season-symbol > .icon {
    width: 64px;
    height: 64px;
  }
}

/* One sitewide pause/play control for the photo water and the orbit. It
   floats in the lower left, clear of captions and of the mobile contact bar. */
.motion-toggle {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #becbbb;
  border-radius: 50%;
  background: rgba(248, 248, 242, 0.92);
  color: var(--water-dark);
  box-shadow: 0 3px 14px #183d2b1f;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.motion-toggle .icon {
  width: 16px;
  height: 16px;
}
.motion-toggle:hover {
  background: var(--paper);
  border-color: var(--water-dark);
}
.motion-toggle:focus-visible {
  outline: 2px solid var(--water-dark);
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .motion-toggle {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}
@media print {
  .motion-toggle {
    display: none;
  }
}

/* Owner replies from the live Google feed, kept visually secondary. */
.review-reply {
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.review-reply strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

/* Manual-entry link under the Google address search. */
.address-manual-toggle {
  margin-top: 8px;
  padding: 4px 0;
  border: 0;
  background: none;
  font-size: 13px;
  cursor: pointer;
}

/* Careers: requirements list and application status. */
.careers-requirements {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}
.careers-requirements h3 {
  margin: 0 0 12px;
}
.careers-requirements ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.application-status {
  margin: 0 0 16px;
  font-size: 13px;
}
.application-status.is-error {
  color: var(--error);
}

/* Resources library: grouped outbound links to manufacturer documentation. */
.resource-group {
  scroll-margin-top: 110px;
}
.resource-group + .resource-group {
  margin-top: 56px;
}
.resource-group-heading {
  margin-bottom: 20px;
}
.resource-group-heading h2 {
  margin: 0 0 6px;
}
.resource-group-heading p {
  margin: 0;
  color: var(--muted);
}
.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.resource-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s;
}
.resource-links a:hover,
.resource-links a:focus-visible {
  border-color: var(--water-dark);
}
.resource-links span {
  display: grid;
  gap: 4px;
}
.resource-links small {
  color: var(--muted);
  font-size: 13px;
}
.resource-links .icon {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--water-dark);
}

/* Cookie consent banner (shown only when Google Ads measurement is configured). */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 40px #183d2b26;
}
.cookie-banner p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner strong {
  display: block;
  color: var(--ink);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-banner .button-outline {
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
}
@media (max-width: 760px) {
  .cookie-banner {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}
@media print {
  .cookie-banner {
    display: none;
  }
}
/* Operations monitor summary */
.ops-summary {
  margin: 36px 0 48px;
}
.ops-summary h2 {
  font-size: 22px;
  margin: 32px 0 14px;
}
.ops-summary-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.ops-summary-head h2 {
  margin: 0 auto 0 0;
}
.ops-summary-head select {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}
.ops-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ops-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}
.ops-card span {
  font-size: 13px;
  color: var(--muted);
}
.ops-card strong {
  font-size: 24px;
  color: var(--ink);
}
.ops-card.needs-attention {
  border-color: #913c25;
  background: #f9e9e0;
}
.ops-card.needs-attention span,
.ops-card.needs-attention strong {
  color: #713423;
}
.ops-chart {
  margin: 24px 0 0;
}
.ops-chart figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 10px;
}
.ops-key i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px 0 12px;
  vertical-align: -1px;
}
.ops-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 140px;
  border-bottom: 1px solid var(--line);
}
.ops-bar {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}
.ops-bar i {
  display: block;
  min-height: 2px;
}
.is-inquiry {
  background: var(--water-dark);
}
.is-application {
  background: var(--green);
}
.is-rejected {
  background: #c0613f;
}
.ops-problems {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}
.ops-problems li {
  margin-bottom: 8px;
}
.ops-problems span {
  color: #713423;
}
.ops-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 24px 32px;
  margin-top: 28px;
}

/* Green header (2026 logo): the borderless grass reads best on the footer's
   green, so the sticky header takes that background and light text. The
   announcement bar goes a shade darker so the two bars still separate. */
.announcement {
  background: #0f2a1d;
}
.site-header {
  background: rgba(23, 54, 39, 0.97);
  border-bottom-color: #0f2a1d;
  color: #e9efdf;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 25px #0b1f1580;
}
.site-header .brand,
.site-header .main-nav > a,
.site-header .phone-link {
  color: #e9efdf;
}
.site-header .phone-link .icon {
  color: #9fcde0;
}
.site-header .menu-lines,
.site-header .menu-lines:before,
.site-header .menu-lines:after {
  background: #e9efdf;
}
@media (max-width: 760px) {
  .site-header .main-nav {
    background: #173627;
    border-bottom-color: #0f2a1d;
  }
  .site-header .main-nav > a {
    border-bottom-color: #e9efdf24;
  }
  .site-header .main-nav > a[aria-current] {
    color: var(--lime);
  }
}

/* Existing-system questions (service, spring startup, winterization). */
.service-details {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: grid;
  gap: 18px;
}
.service-details[hidden] {
  display: none;
}
.service-details > legend {
  padding: 0;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ink);
}
.service-details .field input[type="number"] {
  max-width: 140px;
}
