:root {
  --forest: #122719;
  --forest-2: #1d3b25;
  --forest-3: #29482f;
  --near-black: #101510;
  --charcoal: #1d221c;
  --olive: #788458;
  --bronze: #b77a43;
  --bronze-dark: #8b552e;
  --cream: #f4ecdc;
  --cream-2: #e6dac5;
  --sand: #eadcc5;
  --warm-stone: #dcc8a8;
  --light-section-bg:
    radial-gradient(circle at 50% 0%, rgba(255, 252, 240, 0.86) 0%, rgba(244, 236, 220, 0.82) 40%, rgba(220, 200, 168, 0.42) 100%),
    radial-gradient(circle at 88% 82%, rgba(183, 122, 67, 0.1), transparent 34%),
    linear-gradient(180deg, #f6eedf 0%, #eadcc5 100%);
  --white: #ffffff;
  --muted-light: rgba(244, 236, 220, 0.76);
  --muted-dark: #5f665c;
  --line-light: rgba(244, 236, 220, 0.18);
  --line-dark: rgba(29, 34, 28, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--forest);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--bronze);
  color: var(--white);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 236, 220, 0.98);
  border-bottom: 1px solid rgba(29, 34, 28, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.site-header:not(.is-scrolled) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  flex: 0 0 auto;
  display: block;
  width: clamp(145px, 14vw, 195px);
  height: auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
  aspect-ratio: 306 / 101;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a,
.mobile-menu a,
.footer-grid a {
  text-decoration: none;
}

.site-nav a {
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-header.is-scrolled .site-nav a {
  color: var(--charcoal);
  text-shadow: none;
}

.site-nav a:hover,
.footer-grid a:hover {
  color: var(--bronze);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-call,
.header-quote {
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.header-call span {
  color: rgba(244, 236, 220, 0.78);
  font-size: 0.9rem;
}

.header-call strong {
  font-size: 0.94rem;
}

.header-quote {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(183, 122, 67, 0.8);
  color: var(--white);
  background: var(--bronze);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.18s ease;
}

.site-header.show-quote .header-quote {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-scrolled .header-call {
  color: var(--forest);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
}

.site-header.is-scrolled .header-call span {
  color: var(--bronze-dark);
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  margin-left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 236, 220, 0.48);
  border-radius: var(--radius);
  background: rgba(16, 21, 16, 0.26);
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 999px;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-line::before {
  transform: translateY(-7px);
}

.menu-toggle-line::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::before {
  transform: translateY(0) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::after {
  opacity: 0;
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line-dark);
  background: var(--white);
}

.site-header.is-scrolled .menu-toggle-line,
.site-header.is-scrolled .menu-toggle-line::before,
.site-header.is-scrolled .menu-toggle-line::after {
  background: var(--forest);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 49;
  display: grid;
  gap: 2px;
  padding: 18px 20px 24px;
  background: rgba(16, 21, 16, 0.98);
  border-bottom: 1px solid var(--line-light);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  transform: translateY(-120%);
  transition: transform 0.22s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  padding: 13px 8px;
  color: var(--cream);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(16, 21, 16, 0.92), rgba(18, 39, 25, 0.74) 43%, rgba(18, 39, 25, 0.28)),
    url("../images/hero-outpour-irrigation.jpg") center / cover no-repeat,
    linear-gradient(135deg, var(--forest), var(--olive));
  animation: heroBreath 22s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(90deg, rgba(244, 236, 220, 0.04) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

@keyframes heroBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: calc(var(--header-height) + 58px) 0 106px;
}

.hero-copy {
  max-width: 650px;
  color: var(--cream);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
}

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

.hero-copy h1,
.section h2,
.seasonal-cta h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.03;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  text-transform: uppercase;
}

.hero-subheadline {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.hero-actions,
.contact-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--bronze);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #a96d39;
}

.btn-secondary {
  color: var(--cream);
  border-color: rgba(244, 236, 220, 0.36);
  background: rgba(18, 39, 25, 0.72);
}

.btn-light {
  color: var(--forest);
  background: var(--cream);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 236, 220, 0.5);
  border-radius: 50%;
  background: rgba(16, 21, 16, 0.36);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-scroll-cue:hover {
  background: rgba(16, 21, 16, 0.58);
  transform: translateX(-50%) translateY(2px);
}

.hero-scroll-cue span {
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--cream);
  border-bottom: 3px solid var(--cream);
  transform: translateY(-3px) rotate(45deg);
}

.quote-form {
  padding: 28px;
  border: 1px solid rgba(183, 122, 67, 0.55);
  border-radius: var(--radius);
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(244, 236, 220, 0.96), rgba(230, 218, 197, 0.92)),
    var(--cream);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 1.32rem;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 13px;
}

label span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

label em {
  color: var(--bronze-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(29, 34, 28, 0.22);
  border-radius: 6px;
  color: var(--charcoal);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.faq-item button:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.header-quote:focus-visible,
.mobile-menu-quote:focus-visible,
.quote-modal-close:focus-visible {
  outline: 3px solid rgba(183, 122, 67, 0.42);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
}

.form-turnstile {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0.85rem 0 1rem;
  overflow: hidden;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--forest);
  font-weight: 800;
}

.form-message.is-error {
  color: #8a2e1b;
}

.hero-quote-form .form-message {
  color: var(--cream);
}

.hero-quote-form .form-message.is-error {
  color: #ffbc9f;
}

.trust-strip {
  background:
    linear-gradient(180deg, rgba(244, 236, 220, 0.98), rgba(230, 218, 197, 0.98)),
    var(--cream);
  border-top: 1px solid rgba(244, 236, 220, 0.16);
  border-bottom: 1px solid rgba(29, 34, 28, 0.16);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 26px 0;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 92px;
  padding: 0 18px;
  border-right: 1px solid rgba(29, 34, 28, 0.18);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--forest);
  fill: currentColor;
  object-fit: contain;
}

.icon-home::before {
  width: 15px;
  height: 11px;
  border: 2px solid currentColor;
  border-top: 0;
  bottom: 9px;
}

.icon-home::after {
  width: 15px;
  height: 15px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  top: 9px;
}

.icon-shield::before {
  width: 15px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
}

.icon-diamond::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-tool::before {
  width: 18px;
  height: 3px;
  background: currentColor;
  transform: rotate(-42deg);
}

.icon-tool::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(6px, -6px);
}

.icon-dots::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -8px 0 0 currentColor, 8px 0 0 currentColor, -4px 8px 0 currentColor, 4px 8px 0 currentColor;
}

.section {
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(120, 132, 88, 0.13), transparent 28%),
    linear-gradient(180deg, #102217, #152d1d),
    var(--forest);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.climate-grid h2,
.split-grid h2,
.service-area-grid h2,
.faq-section h2,
.reviews-section h2,
.final-contact h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  text-transform: uppercase;
}

.section-heading p,
.climate-grid p,
.split-grid p,
.service-area-grid p,
.final-contact p {
  color: var(--muted-light);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.mini-card,
.process-step,
.contact-card,
.reviews-box {
  border: 1px solid rgba(244, 236, 220, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 236, 220, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 236, 220, 0.055), rgba(244, 236, 220, 0.03)),
    #102217;
}

.service-card::before,
.service-card::after {
  display: none !important;
  content: none !important;
}

.service-card .service-icon {
  display: none !important;
}

.service-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.service-image-button:disabled {
  cursor: default;
}

.service-card > img,
.service-image-button img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream-2), var(--olive));
}

.service-image-button:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: -3px;
}

.service-content {
  flex: 1;
  min-height: 170px;
  padding: 24px 22px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(18, 39, 25, 0.96), rgba(13, 31, 19, 0.98)),
    var(--forest);
}

.service-card h3,
.mini-card h3,
.process-step h3 {
  margin: 0 0 8px;
  color: var(--cream);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.service-card p,
.mini-card p,
.process-step p {
  margin: 0;
  color: var(--muted-light);
}

.climate-section {
  background: var(--light-section-bg), var(--cream);
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

.climate-grid,
.split-grid,
.service-area-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
}

.climate-grid h2,
.climate-grid p,
.climate-grid .eyebrow {
  color: var(--charcoal);
}

.climate-grid .eyebrow {
  color: var(--bronze-dark);
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 24px;
  border-color: rgba(183, 122, 67, 0.18);
  border-left: 5px solid var(--bronze);
  color: var(--charcoal);
  background: rgba(255, 252, 244, 0.56);
  box-shadow: 0 14px 38px rgba(29, 34, 28, 0.11);
}

.mini-card h3 {
  color: var(--forest);
}

.mini-card p {
  color: var(--muted-dark);
}

.split-section {
  background:
    linear-gradient(90deg, rgba(18, 39, 25, 0.96) 0 50%, rgba(244, 236, 220, 0.96) 50% 100%),
    var(--cream);
}

.split-section .split-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.split-section .split-copy {
  justify-self: end;
  width: min(520px, calc(100% - 56px));
  margin-right: clamp(44px, 6vw, 118px);
  padding: 32px 0;
}

.split-section h2,
.split-section p {
  color: var(--cream);
}

.split-section .eyebrow {
  color: var(--bronze);
}

.split-section .check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.split-section .check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  min-height: 28px;
  padding-left: 0;
  margin: 0;
  color: rgba(244, 236, 220, 0.92);
  font-weight: 800;
}

.split-section .check-list li::before {
  position: static;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  background: rgba(183, 122, 67, 0.92);
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1;
  content: "\2713";
}

.why-phone {
  margin: 16px 0 0;
  color: var(--bronze);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.why-phone a {
  color: inherit;
  text-decoration: none;
}

.image-panel {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 500px;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-card {
  position: relative;
  aspect-ratio: auto;
  justify-self: center;
  width: min(calc(100% - 72px), 950px);
  min-height: 0;
  border: 3px solid var(--bronze);
  background: var(--forest);
  box-shadow: 0 26px 66px rgba(29, 34, 28, 0.26);
}

.project-card::before {
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: calc(var(--radius) + 18px);
  background: radial-gradient(circle at 50% 42%, rgba(183, 122, 67, 0.18), transparent 64%);
  content: "";
}

.project-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  left: -3px;
  top: 20px;
  z-index: 1;
  min-width: 210px;
  padding: 12px 34px 12px 28px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  background: linear-gradient(180deg, #bd7d44, #9f612f);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(16, 21, 16, 0.24);
}

.project-caption {
  padding: clamp(22px, 3vw, 32px);
  border-top: 2px solid rgba(183, 122, 67, 0.85);
  background:
    radial-gradient(circle at 12% 12%, rgba(120, 132, 88, 0.2), transparent 30%),
    linear-gradient(180deg, #102217, #0b1b12);
}

.project-caption-copy {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.project-caption-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
}

.project-caption-icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(50%) sepia(35%) saturate(768%) hue-rotate(348deg) brightness(91%) contrast(88%);
  object-fit: contain;
}

.project-caption p {
  max-width: 610px;
  margin: 0;
  color: var(--cream);
  font-family: Montserrat, "Montserrat", "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.34rem);
  font-weight: 500;
  line-height: 1.35;
}

.project-caption > span {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(183, 122, 67, 0.46);
  color: var(--bronze);
  font-family: Montserrat, "Montserrat", "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.check-list,
.area-list,
.footer-grid ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li,
.area-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  color: var(--cream);
  font-weight: 800;
}

.check-list li::before,
.area-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  content: "";
}

#why-outpour.split-section {
  padding: clamp(44px, 4.8vw, 68px) 0;
  background:
    linear-gradient(90deg, rgba(244, 236, 220, 0.96) 0 50%, rgba(18, 39, 25, 0.96) 50% 100%),
    var(--cream);
}

#why-outpour .split-copy {
  order: 2;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  margin-right: 0;
  margin-left: 0;
  text-align: right;
}

#why-outpour .project-card {
  order: 1;
  grid-column: 1;
  grid-row: 1;
  width: min(calc(100% - 180px), 720px);
}

#why-outpour .check-list li {
  grid-template-columns: minmax(0, 1fr) 22px;
  text-align: right;
}

#why-outpour .check-list li::before {
  grid-column: 2;
  grid-row: 1;
}

.why-mobile-cta {
  display: none;
}

.process-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 122, 67, 0.16), transparent 26%),
    linear-gradient(180deg, #122719, #0f1e14),
    var(--forest);
}

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

.process-step {
  padding: 26px;
  position: relative;
}

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

.gallery-section {
  background:
    linear-gradient(180deg, #0f1e14, #14291b),
    var(--forest);
}

@media (min-width: 761px) {
  .gallery-section .section-heading {
    width: min(980px, 100%);
  }

  .gallery-section .section-heading h2 {
    white-space: nowrap;
  }
}

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 236, 220, 0.16);
  border-radius: var(--radius);
  background: rgba(244, 236, 220, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

figure img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.recent-work-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.recent-work-image-button:focus-visible {
  outline: 3px solid rgba(183, 122, 67, 0.62);
  outline-offset: -3px;
}

figcaption {
  padding: 14px 16px;
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}

.service-area {
  background: var(--light-section-bg), var(--cream);
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

.service-area h2,
.service-area p,
.service-area .area-list li {
  color: var(--charcoal);
}

.service-area .eyebrow,
.area-cta a {
  color: var(--bronze-dark);
}

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

.area-list li::before {
  border-color: var(--forest);
}

.map-card {
  min-height: 360px;
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.map-card::before,
.map-card::after {
  content: none;
}

.map-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.additional-services {
  padding: clamp(58px, 7vw, 86px) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(183, 122, 67, 0.14), transparent 28%),
    linear-gradient(180deg, #102217, #142b1c),
    var(--forest);
}

.additional-services-heading {
  width: min(780px, 100%);
  margin-bottom: 28px;
}

.additional-services-heading h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.additional-services-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 1.02rem;
}

.additional-services .eyebrow {
  color: var(--bronze);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.additional-service-card {
  position: relative;
  min-height: 178px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(244, 236, 220, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 236, 220, 0.075), rgba(244, 236, 220, 0.045)),
    rgba(18, 39, 25, 0.56);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.additional-service-card::before {
  position: absolute;
  left: 22px;
  top: 0;
  width: 54px;
  height: 3px;
  background: var(--bronze);
  content: "";
}

.additional-service-card h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.additional-service-card p {
  margin: 0;
  color: var(--muted-light);
}

.additional-services-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.seasonal-cta {
  padding: 58px 0;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(18, 39, 25, 0.96), rgba(107, 74, 45, 0.94)),
    repeating-linear-gradient(90deg, rgba(244, 236, 220, 0.04) 0 1px, transparent 1px 82px);
}

.seasonal-cta .eyebrow {
  color: var(--bronze);
}

#services .eyebrow,
#process .eyebrow,
.gallery-section .eyebrow,
.additional-services .eyebrow,
.seasonal-cta .eyebrow,
.final-contact .eyebrow {
  color: var(--bronze);
}

.seasonal-cta p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.faq-section {
  background: var(--light-section-bg), var(--cream);
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

.faq-section h2 {
  color: var(--charcoal);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(107, 74, 45, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.48);
  box-shadow: 0 12px 32px rgba(29, 34, 28, 0.08);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  flex: 0 0 auto;
  color: var(--bronze-dark);
  font-size: 1.25rem;
  content: "+";
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted-dark);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 18px;
}

.about-section.section {
  padding: clamp(72px, 7.4vw, 104px) 0;
  background: var(--light-section-bg), var(--cream);
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.about-copy {
  max-width: 500px;
}

.about-section .eyebrow {
  color: var(--bronze-dark);
}

.about-section h2 {
  margin: 0 0 22px;
  color: var(--near-black);
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-section p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.72;
}

.about-section .btn {
  color: var(--near-black);
  border-color: rgba(29, 34, 28, 0.78);
  background: rgba(255, 252, 244, 0.22);
  text-transform: uppercase;
}

.about-section .btn:hover {
  border-color: var(--bronze);
  background: rgba(183, 122, 67, 0.12);
}

.about-media {
  display: flex;
  justify-content: flex-end;
}

.about-hex-frame {
  width: min(100%, 640px);
  aspect-ratio: 1.45 / 1;
  padding: 7px;
  background: linear-gradient(135deg, var(--near-black), var(--bronze-dark) 48%, var(--forest));
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  filter: drop-shadow(0 22px 34px rgba(29, 34, 28, 0.24));
}

.about-hex-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
}

.reviews-section {
  padding: clamp(60px, 7vw, 92px) 0;
  background: var(--light-section-bg), var(--cream);
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

.reviews-section .section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.reviews-section .eyebrow {
  color: var(--bronze) !important;
}

.reviews-section h2 {
  color: var(--forest);
  white-space: nowrap;
}

.reviews-section .section-heading p {
  color: var(--muted-dark);
}

.reviews-box {
  position: relative;
  width: min(1040px, 100%);
  min-height: 250px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reviews-fallback {
  margin: 0;
  color: var(--muted-dark);
  text-align: center;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2:not(:empty) + .reviews-fallback {
  display: none;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Widget"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Background"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Layout"] {
  background: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Header"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="header"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="ReviewBackground"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Review"][class*="Card"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review"][class*="card"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="ReviewItem"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review-item"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="ReviewContainer"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review-container"] {
  border: 1px solid rgba(183, 122, 67, 0.42) !important;
  border-radius: var(--radius) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="eapps-google-reviews"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="eapps-google-reviews-review-card"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="eapps-google-reviews-review-item"] {
  border: 1px solid rgba(183, 122, 67, 0.42) !important;
  border-radius: var(--radius) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review"][class*="item"] > div,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Review"][class*="Item"] > div,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review"][class*="card"] > div,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Review"][class*="Card"] > div,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Carousel"] [class*="Item"] > div,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="carousel"] [class*="item"] > div {
  border: 1px solid rgba(183, 122, 67, 0.42) !important;
  border-radius: var(--radius) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review"][class*="item"] > div *,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Review"][class*="Item"] > div *,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="review"][class*="card"] > div *,
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 [class*="Review"][class*="Card"] > div * {
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: rgb(255, 255, 255)"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: rgb(255, 255, 255)"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: #fff"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: #fff"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: white"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: white"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: rgb(255, 255, 255)"][style*="border-radius"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: rgb(255, 255, 255)"][style*="border-radius"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: #fff"][style*="border-radius"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: #fff"][style*="border-radius"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background: white"][style*="border-radius"],
.reviews-box .elfsight-app-d6b3f927-61b4-42fa-b5be-db648546bfd2 div[style*="background-color: white"][style*="border-radius"] {
  border: 1px solid rgba(183, 122, 67, 0.42) !important;
}

.final-contact {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 122, 67, 0.18), transparent 26%),
    linear-gradient(180deg, #132719, #0f1e14),
    var(--forest);
}

.contact-card {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.phone-line {
  color: var(--cream) !important;
  font-weight: 900;
}

.phone-line a {
  color: var(--cream);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 58px 0 96px;
  color: rgba(244, 236, 220, 0.76);
  background:
    linear-gradient(180deg, #101510, #0a0f0b),
    var(--near-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  margin-bottom: 16px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li {
  margin: 8px 0;
}

.footer-grid a {
  color: rgba(244, 236, 220, 0.76);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 236, 220, 0.14);
}

.mobile-call-bar {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.quote-modal.is-open {
  display: block;
}

.service-image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.service-image-modal.is-open {
  display: block;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
}

.success-modal.is-open {
  display: block;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 6, 0.72);
  backdrop-filter: blur(5px);
}

.success-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, calc(100vw - 32px));
  padding: 34px 30px 28px;
  border: 1px solid rgba(183, 122, 67, 0.68);
  border-radius: var(--radius);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(13, 31, 19, 0.98), rgba(16, 21, 16, 0.98)),
    var(--forest);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  text-align: center;
  transform: translate(-50%, -50%);
}

.success-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 236, 220, 0.26);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(244, 236, 220, 0.08);
  font-size: 1.45rem;
  line-height: 1;
}

.success-modal-close:focus-visible {
  outline: 3px solid rgba(183, 122, 67, 0.62);
  outline-offset: 2px;
}

.success-modal-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(183, 122, 67, 0.12);
}

.success-modal-mark::before {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  margin: 13px auto 0;
  border-left: 3px solid var(--bronze);
  border-bottom: 3px solid var(--bronze);
  transform: rotate(-45deg);
}

.success-modal h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1.55rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.success-modal p {
  margin: 0;
  color: rgba(244, 236, 220, 0.82);
  line-height: 1.6;
}

.success-modal-countdown {
  margin-top: 18px;
  font-weight: 800;
}

.success-modal-countdown span {
  color: var(--bronze);
}

.service-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 6, 0.76);
  backdrop-filter: blur(5px);
}

.service-image-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100vw - 64px));
  max-height: calc(100vh - 96px);
  padding: 16px;
  border: 1px solid rgba(183, 122, 67, 0.58);
  border-radius: var(--radius);
  background: rgba(244, 236, 220, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.service-image-modal-panel img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 4px;
}

.service-image-modal-close {
  position: absolute;
  right: -14px;
  top: -14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 236, 220, 0.36);
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  font-size: 1.45rem;
  line-height: 1;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.quote-modal-panel {
  position: relative;
  width: min(520px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 36px));
  margin: 18px auto;
  overflow: auto;
}

.quote-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(29, 34, 28, 0.16);
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.modal-quote-form {
  padding-top: 54px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid {
    width: min(100% - 44px, 1080px);
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-menu a,
  .mobile-menu-quote {
    padding: 13px 8px;
    color: var(--cream);
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .mobile-menu-quote {
    margin-top: 8px;
    border: 1px solid rgba(183, 122, 67, 0.85);
    border-radius: var(--radius);
    background: var(--bronze);
    text-align: center;
  }

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

  .quote-form {
    max-width: 640px;
  }

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

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 34, 28, 0.15);
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  body {
    padding-bottom: 76px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 126px;
  }

  .brand img {
    width: 100%;
  }

  .header-actions {
    display: flex;
    justify-content: center;
    margin-left: 0;
    min-width: 0;
  }

  .header-call {
    display: none;
  }

  .header-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-height: 40px;
    width: min(100%, 132px);
    padding: 0 10px;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.1;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .hero,
  .hero-grid {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-grid {
    padding: calc(var(--header-height) + 42px) 0 68px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero-subheadline {
    font-size: 1.04rem;
  }

  .hero-actions,
  .hero-quote-form,
  .hero-scroll-cue {
    display: none;
  }

  .form-grid,
  .trust-grid,
  .service-grid,
  .additional-services-grid,
  .climate-grid,
  .split-grid,
  .about-grid,
  .process-grid,
  .service-area-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 22px;
  }

  .trust-grid {
    padding: 18px 0;
  }

  .trust-grid div {
    min-height: 74px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .section {
    padding: 62px 0;
  }

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

  .reviews-section .section-heading {
    text-align: center;
  }

  .reviews-section h2 {
    white-space: normal;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .about-section h2 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
  }

  .about-section .btn {
    width: 100%;
  }

  .about-media {
    justify-content: center;
  }

  .about-hex-frame {
    width: min(100%, 560px);
    aspect-ratio: 1.34 / 1;
    padding: 5px;
  }

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

  .service-card > img {
    height: 154px;
  }

  .service-image-button {
    pointer-events: none;
    cursor: default;
  }

  .service-image-button img {
    height: 154px;
  }

  .service-image-modal {
    display: none !important;
  }

  .service-image-modal.is-open {
    display: block !important;
  }

  .service-content {
    min-height: 178px;
    padding: 22px 16px 18px;
  }

  .service-card h3 {
    font-size: 0.96rem;
  }

  .additional-services {
    padding: 58px 0 78px;
  }

  .additional-services-heading {
    margin-bottom: 24px;
  }

  .additional-services-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .additional-service-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .additional-services-action {
    justify-content: stretch;
  }

  .section-heading h2,
  .climate-grid h2,
  .split-grid h2,
  .service-area-grid h2,
  .faq-section h2,
  .reviews-section h2,
  .final-contact h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .split-section {
    background:
      linear-gradient(180deg, rgba(18, 39, 25, 0.96) 0 66%, rgba(244, 236, 220, 0.96) 66% 100%),
      var(--cream);
  }

  .split-section .split-grid {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-section .split-copy {
    justify-self: stretch;
    width: 100%;
    margin-right: 0;
    padding: 10px 0 4px;
  }

  .image-panel {
    min-height: 0;
  }

  .project-card {
    width: 100%;
  }

  #why-outpour.split-section {
    background:
      linear-gradient(180deg, #122719, #0f1e14),
      var(--forest);
  }

  #why-outpour .split-copy,
  #why-outpour .project-card {
    grid-column: 1;
    grid-row: auto;
  }

  #why-outpour .split-copy {
    order: 1;
    text-align: left;
  }

  #why-outpour .project-card {
    order: 2;
    width: 100%;
  }

  #why-outpour .check-list li {
    grid-template-columns: 22px minmax(0, 1fr);
    text-align: left;
  }

  #why-outpour .check-list li::before {
    grid-column: 1;
  }

  #why-outpour .split-copy > .btn,
  #why-outpour .why-phone {
    display: none;
  }

  #why-outpour .why-mobile-cta {
    order: 3;
    display: inline-flex;
    justify-self: stretch;
    justify-content: center;
  }

  .image-panel .project-image-wrap img {
    min-height: 290px;
  }

  .project-badge {
    left: -3px;
    top: 14px;
    min-width: 170px;
    padding: 8px 22px 8px 14px;
    font-size: 0.72rem;
  }

  .project-caption {
    padding: 20px;
  }

  .project-caption-copy {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .project-caption-icon {
    width: 44px;
  }

  .project-caption > span {
    line-height: 1.7;
  }

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

  .area-list {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 280px;
  }

  .cta-actions,
  .contact-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(16, 21, 16, 0.98);
    border-top: 1px solid rgba(244, 236, 220, 0.16);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.32);
  }

  .mobile-call-bar a {
    display: grid;
    place-items: center;
    min-height: 50px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--forest-2);
    font-size: 1.06rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call-bar a + a {
    background: var(--bronze);
  }

  .quote-modal-panel {
    width: min(100% - 20px, 520px);
    max-height: calc(100vh - 96px);
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 2.65rem;
  }

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

  .service-card > img {
    height: 180px;
  }

  .service-content,
  .mini-card,
  .process-step {
    padding: 22px 20px 20px;
  }
}

/* Header and hero pass: isolated overrides for the top of the page only. */
:root {
  --header-height: 76px;
  --header-logo-width: clamp(128px, 12vw, 168px);
  --header-logo-drop: 44px;
}

.site-header {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 20, 14, 0.96);
  border: 0;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.site-header:not(.is-scrolled) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  width: min(1480px, calc(100% - 64px));
  max-width: 1480px;
}

.brand {
  position: relative;
  z-index: 2;
  width: var(--header-logo-width);
  height: var(--header-height);
  overflow: visible;
}

.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--header-logo-width);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transform: translateY(calc(-50% + var(--header-logo-drop)));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 0;
  transform: translate(-50%, -50%);
}

.site-nav a {
  position: relative;
  color: var(--cream);
  font-size: clamp(0.72rem, 0.74vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  opacity: 0;
  background: var(--bronze);
  transition: opacity 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  position: relative;
  padding-left: 34px;
  color: var(--cream);
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.header-call::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bronze);
  -webkit-mask: url("../images/phone-call.svg") center / contain no-repeat;
  mask: url("../images/phone-call.svg") center / contain no-repeat;
}

.header-call strong {
  font-size: clamp(1.1rem, 1.3vw, 1.55rem);
  line-height: 1.1;
}

.header-call span {
  color: rgba(244, 236, 220, 0.72);
  font-size: clamp(0.56rem, 0.58vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .header-call,
.site-header.is-scrolled .header-call span {
  color: var(--cream);
  text-shadow: none;
}

.header-quote {
  display: none;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: 18px;
  border: 1px solid rgba(244, 236, 220, 0.48);
  border-radius: 8px;
  background: rgba(12, 18, 13, 0.28);
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after,
.site-header.is-scrolled .menu-toggle-line,
.site-header.is-scrolled .menu-toggle-line::before,
.site-header.is-scrolled .menu-toggle-line::after {
  background: var(--cream);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  background: rgba(4, 8, 5, 0.46);
  backdrop-filter: blur(4px);
  transition: opacity 0.24s ease;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 81;
  width: min(420px, 92vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 34px 34px 30px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 10%, rgba(183, 122, 67, 0.18), transparent 32%),
    linear-gradient(180deg, #111b13, #0a100b);
  border-left: 1px solid rgba(244, 236, 220, 0.16);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 236, 220, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
}

.menu-logo {
  width: min(220px, 72%);
  height: auto;
  margin: 18px auto 28px;
}

.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 236, 220, 0.12);
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-phone {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(183, 122, 67, 0.42) !important;
  border-radius: 8px;
  background: rgba(244, 236, 220, 0.06);
  text-align: center !important;
}

.menu-phone span {
  color: rgba(244, 236, 220, 0.72);
  font-size: 0.82rem;
}

.menu-phone strong {
  color: var(--cream);
  font-size: 1.28rem;
}

.mobile-menu-quote {
  min-height: 52px;
  margin-top: 16px;
  border: 1px solid rgba(183, 122, 67, 0.85);
  border-radius: 8px;
  color: var(--white);
  background: var(--bronze);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.menu-area {
  margin: 16px 0 0;
  color: rgba(244, 236, 220, 0.68);
  font-size: 0.92rem;
  text-align: center;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 10, 7, 0.86), rgba(18, 39, 25, 0.58) 48%, rgba(18, 39, 25, 0.3)),
    url("../images/hero-outpour-irrigation.jpg") center / cover no-repeat,
    linear-gradient(135deg, var(--forest), var(--olive));
  animation: heroBreath 22s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(90deg, rgba(244, 236, 220, 0.035) 0 1px, transparent 1px 92px);
}

.hero-grid {
  width: min(1560px, calc(100% - 80px));
  max-width: 1560px;
  grid-template-columns: minmax(0, 850px) 450px;
  justify-content: center;
  gap: clamp(54px, 4vw, 86px);
  padding: calc(var(--header-height) + 64px) 0 78px;
}

.hero-copy {
  position: relative;
  top: clamp(-64px, -4vw, -38px);
  max-width: 820px;
}

.hero-mountain-wrap {
  display: grid;
  justify-items: center;
  width: min(320px, 100%);
  margin: 0 0 10px;
}

.hero-mountain {
  display: block;
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.36));
}

.hero-mountain-rule {
  display: block;
  width: 92%;
  height: 1px !important;
  margin-top: 3px;
  background: var(--bronze);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.36);
}

.hero-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--bronze);
  font-family: "Bebas Neue", "Bahnschrift Condensed", "Agency FB", "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

.hero-copy h1,
.hero-title {
  display: grid;
  gap: 0;
  max-width: 820px;
  font-family: "Bahnschrift Condensed", "Agency FB", "Arial Narrow", "Roboto Condensed", "Franklin Gothic Condensed", Arial, Helvetica, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span,
.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title-smart,
.hero-title-irrigation,
.hero-title-built,
.hero-statement {
  font-family: "Bebas Neue", "Bahnschrift Condensed", "Agency FB", "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.hero-title-smart {
  color: var(--cream);
  width: fit-content;
  font-family: "Google Sans Flex", "Arial Black", Arial, sans-serif;
  font-size: clamp(6.4rem, 12.7vw, 12.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
  transform: scaleX(1.03);
  transform-origin: left center;
}

.hero-title-irrigation {
  color: var(--olive);
  width: fit-content;
  font-family: "Google Sans Flex", Arial, sans-serif;
  margin-top: clamp(8px, 0.75vw, 14px);
  font-size: clamp(3.85rem, 7.65vw, 7.45rem);
  font-weight: 600;
  letter-spacing: 0;
  transform: scaleX(1.41);
  transform-origin: left center;
}

.hero-rule {
  width: min(100%, 720px);
  height: 3px;
  margin: clamp(12px, 1.4vw, 18px) 0 clamp(14px, 1.7vw, 22px);
  background: linear-gradient(90deg, rgba(183, 122, 67, 0), var(--bronze) 6%, var(--bronze) 94%, rgba(183, 122, 67, 0));
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}

.hero-title-built {
  color: var(--bronze);
  width: fit-content;
  font-family: "Google Sans Flex", "Arial Black", Arial, sans-serif;
  font-size: clamp(3rem, 5.95vw, 5.82rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  transform: scaleX(1.03);
  transform-origin: left center;
}

.hero-statement {
  display: inline-grid;
  grid-template-columns: 34px 2px max-content;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  margin: clamp(18px, 1.8vw, 24px) 0 0;
  color: var(--cream);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
}

.hero-statement .hero-leaf {
  display: grid;
  place-items: center;
  width: 34px !important;
  height: 34px !important;
  overflow: hidden;
}

.hero-statement .hero-leaf img {
  display: block;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain;
  filter: none;
}

.hero-statement .hero-leaf svg {
  display: block;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  color: var(--olive);
}

.hero-statement-divider {
  width: 2px;
  height: clamp(42px, 4vw, 62px);
  background: var(--bronze);
}

.hero-statement-copy {
  display: flex;
  align-items: baseline;
  gap: 0;
  min-width: 0;
  white-space: nowrap;
}

.hero-statement-copy > * {
  display: inline;
}

.hero-statement-region {
  color: var(--olive);
}

.hero-statement strong {
  color: var(--cream);
  font-weight: 400;
}

.hero-subheadline {
  max-width: 720px;
  margin-top: clamp(18px, 2vw, 26px);
  color: rgba(244, 236, 220, 0.9);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
}

.hero-actions .btn-primary {
  background: var(--bronze);
}

.hero-call-btn {
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(183, 122, 67, 0.7);
  border-radius: 3px;
  background: linear-gradient(180deg, #a86234, #8d4f2b);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
}

.hero-call-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hero-quote-form {
  --form-border-color: rgba(183, 122, 67, 0.72);
  --form-fill: rgba(13, 31, 19, 0.97);
  position: relative;
  color: var(--cream);
  border: 0;
  background: transparent;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28);
  padding: 32px 34px 28px;
}

.hero-quote-form::before {
  content: none;
}

.hero-quote-form::after {
  content: none;
}

.hero-quote-form > * {
  position: relative;
  z-index: 1;
}

.hero-quote-form .form-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-quote-form .form-frame path:first-child {
  fill: var(--form-fill);
  stroke: var(--form-border-color);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.hero-quote-form .form-frame path:last-child {
  fill: none;
  stroke: rgba(183, 122, 67, 0.34);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.hero-quote-form .form-heading {
  text-align: center;
}

.hero-quote-form .form-heading h2 {
  margin: 0 0 4px;
  color: var(--cream);
  font-family: "Arial Narrow", Impact, Arial, Helvetica, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-quote-form .form-heading p {
  margin: 0 0 18px;
  color: rgba(244, 236, 220, 0.72);
}

.hero-quote-form label span {
  color: var(--cream);
}

.hero-quote-form label em {
  color: #d7a06a;
}

.hero-quote-form input,
.hero-quote-form select,
.hero-quote-form textarea {
  border-color: rgba(244, 236, 220, 0.28);
  background: var(--cream);
}

.hero-quote-form .form-button {
  background: var(--bronze);
  border-radius: 3px;
  text-transform: uppercase;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(244, 236, 220, 0.68);
  font-size: 0.78rem;
  text-align: center;
}

.trust-item span {
  display: block;
}

@media (max-width: 900px) and (min-width: 761px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 34, 28, 0.15);
  }

  .trust-grid .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --header-logo-width: 108px;
    --header-logo-drop: 24px;
  }

  .header-inner {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .menu-toggle-line,
  .site-header.is-scrolled .menu-toggle-line::before,
  .site-header.is-scrolled .menu-toggle-line::after {
    background: var(--cream);
  }

  .mobile-menu {
    width: min(360px, 94vw);
    padding: 30px 26px 28px;
  }

  .hero,
  .hero-grid {
    min-height: 100svh;
  }

  .hero-grid {
    width: calc(100% - 40px);
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 86px) 0 90px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    width: 100%;
    max-width: calc(100vw - 56px);
    margin: 0 auto;
    text-align: center;
  }

  .hero-mountain-wrap {
    width: min(280px, 100%);
    margin: 0 auto 8px;
  }

  .hero-mountain {
    width: 112px !important;
    max-width: 112px !important;
  }

  .hero-mountain-rule {
    width: 92%;
    height: 1px;
    margin-top: 1px;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    line-height: 1.05;
    text-align: center;
    text-wrap: balance;
  }

  .hero-copy h1 {
    max-width: 100%;
    justify-items: center;
    overflow-wrap: normal;
    font-size: clamp(1.8rem, 7.2vw, 2.35rem);
    line-height: 1;
    text-align: center;
  }

  .hero-title-smart {
    font-size: clamp(4.35rem, 21.75vw, 6.95rem);
    transform: scaleX(1);
    transform-origin: center center;
    text-align: center;
  }

  .hero-title-irrigation {
    margin-top: clamp(6px, 1.8vw, 10px);
    font-size: clamp(2.55rem, 12.75vw, 4.08rem);
    transform: scaleX(1.34);
    transform-origin: center center;
    text-align: center;
  }

  .hero-rule {
    width: min(100%, 330px);
    height: 2px;
    margin: clamp(10px, 3.5vw, 14px) auto clamp(11px, 4vw, 16px);
  }

  .hero-title-built {
    font-size: clamp(2rem, 10vw, 3.2rem);
    transform: scaleX(1);
    transform-origin: center center;
    text-align: center;
  }

  .hero-copy h1 span {
    width: auto;
    white-space: nowrap;
  }

  .hero-copy h1 .hero-rule {
    width: min(100%, 330px);
  }

  .hero-statement {
    grid-template-columns: 26px 2px max-content;
    margin-top: clamp(11px, 4vw, 16px);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(0.82rem, 3.9vw, 1.08rem);
    letter-spacing: 0.07em;
    text-align: left;
  }

  .hero-statement .hero-leaf {
    width: 26px !important;
    height: 26px !important;
  }

  .hero-statement .hero-leaf img {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
  }

  .hero-statement .hero-leaf svg {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
  }

  .hero-statement-divider {
    height: clamp(34px, 11vw, 46px);
  }

  .hero-subheadline {
    max-width: min(335px, calc(100vw - 56px));
    margin-top: clamp(15px, 5vw, 20px);
    margin-right: auto;
    margin-left: auto;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
    text-wrap: balance;
  }

  .hero-actions,
  .hero-quote-form,
  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  }

  .trust-grid .trust-item {
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 34, 28, 0.14);
    text-align: center;
  }

  .trust-grid .trust-item:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 96px;
    border-bottom: 0;
  }

  .trust-grid .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-grid .trust-item span {
    max-width: 100%;
  }
}

@media (max-width: 340px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid .trust-item:nth-child(5) {
    grid-column: auto;
  }
}

section.about-section.section {
  padding: clamp(72px, 7.4vw, 104px) 0;
  overflow: hidden;
  color: var(--charcoal);
  background: var(--light-section-bg), var(--cream) !important;
  box-shadow: inset 0 18px 34px rgba(29, 34, 28, 0.04), inset 0 -18px 34px rgba(29, 34, 28, 0.05);
}

section.about-section .about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

section.about-section .about-media {
  order: 2;
  display: flex;
  justify-content: center;
  min-width: 0;
}

section.about-section .about-copy {
  order: 1;
  justify-self: end;
  width: min(520px, calc(100% - 56px));
  max-width: none;
  margin-right: clamp(44px, 6vw, 118px);
  min-width: 0;
}

section.about-section .eyebrow {
  color: var(--bronze-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
}

section.about-section h2 {
  margin: 0 0 22px;
  color: var(--near-black);
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

section.about-section p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.72;
}

section.about-section .btn {
  color: var(--near-black);
  border: 2px solid rgba(29, 34, 28, 0.78);
  background: rgba(255, 252, 244, 0.22);
  text-transform: uppercase;
  box-shadow: none;
}

section.about-section .btn:hover {
  border-color: var(--bronze);
  background: rgba(183, 122, 67, 0.12);
}

section.about-section .about-hex-frame {
  position: relative;
  width: min(calc(100% - 72px), 640px);
  aspect-ratio: 1488 / 1140;
  margin-inline: auto;
  background: transparent;
  clip-path: none;
  filter: drop-shadow(0 22px 34px rgba(29, 34, 28, 0.24));
}

section.about-section .about-hex-frame::after {
  content: none;
}

section.about-section .about-hex-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  clip-path: none;
}

@media (max-width: 760px) {
  section.about-section.section {
    padding: 62px 0 76px;
  }

  section.about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  section.about-section .about-copy {
    order: 1;
    width: auto;
    max-width: none;
    margin-right: 0;
    padding-inline: 20px;
  }

  section.about-section .about-media {
    order: 2;
    justify-content: center;
  }

  section.about-section h2 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
  }

  section.about-section .btn {
    width: 100%;
  }

  section.about-section .about-hex-frame {
    width: min(100%, 560px);
    aspect-ratio: 1488 / 1140;
  }
}

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

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