﻿:root {
  --green: #455833;
  --green-2: #5f704d;
  --green-dark: #27341f;
  --sage: #eef2ea;
  --sage-2: #d9e0d1;
  --cream: #f7f5ef;
  --ink: #18202a;
  --muted: #5d6658;
  --line: #d8ddcf;
  --white: #ffffff;
  --accent: #f48b0c;
  --accent-dark: #d97904;
  --charcoal: #2f2f2f;
  --shadow: 0 22px 55px rgba(24, 32, 42, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Roboto, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

body > * {
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

h1,
h2,
h3,
p,
a,
summary {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(69, 88, 51, 0.98);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(24, 32, 42, 0.18);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner a,
.utility-inner span {
  color: rgba(255, 255, 255, 0.88);
}

.main-nav {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.main-nav > * {
  min-width: 0;
}

.logo {
  width: 290px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.94);
  transition: color 160ms ease;
}

.service-menu {
  position: relative;
}

.service-menu-toggle {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  box-shadow: none;
}

.service-menu-toggle:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
  color: #f5d7a6;
}

.service-menu-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 270px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.service-menu:hover .service-dropdown,
.service-menu:focus-within .service-dropdown,
.service-menu.is-open .service-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.service-dropdown a {
  display: block;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--green-dark);
  text-shadow: none;
  white-space: nowrap;
}

.service-dropdown a:hover,
.service-dropdown a[aria-current="page"] {
  background: var(--sage);
  color: var(--green-dark);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #f5d7a6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

.hamburger-lines,
.hamburger-lines::before,
.hamburger-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hamburger-lines {
  position: relative;
}

.hamburger-lines::before,
.hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-lines::before {
  top: -6px;
}

.hamburger-lines::after {
  top: 6px;
}

.button,
button {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: 900 15px/1 Inter, Roboto, Arial, sans-serif;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  max-width: 100%;
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(39, 52, 31, 0.24);
}

.button.accent {
  background: var(--accent);
}

.button.accent:hover {
  background: var(--accent-dark);
}

.button.light {
  background: #fff;
  color: var(--green);
}

.button.light:hover {
  background: #f8f4ea;
  color: var(--green-dark);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-row.center {
  justify-content: center;
}

.hero {
  background:
    linear-gradient(110deg, rgba(24, 32, 42, 0.88), rgba(39, 52, 31, 0.78)),
    url("../images/hardening-gutter-guard.webp") center / cover no-repeat;
  color: #fff;
}

.hero-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 48px;
  align-items: center;
  padding: 78px 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 950;
}

.hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.hero .hero-note {
  display: inline-flex;
  width: auto;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 215, 166, 0.34);
  border-radius: 999px;
  background: rgba(39, 52, 31, 0.72);
  color: #f5d7a6;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

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

.proof-item {
  padding: 24px 22px;
  background: var(--cream);
  text-align: center;
}

.proof-item strong {
  display: block;
  color: var(--green);
  font-size: 21px;
  margin-bottom: 6px;
}

.proof-item span {
  color: var(--muted);
}

.seasonal-cta {
  padding: 34px 0;
  background: var(--green-dark);
  color: #fff;
}

.seasonal-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.seasonal-inner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.seasonal-inner p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.seasonal-inner .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  background: var(--green-dark);
  color: #fff;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.split-copy h2 {
  color: var(--green-dark);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 950;
}

.section.dark .section-head h2,
.section.dark .section-head p {
  color: #fff;
}

.section-head p {
  margin-top: 16px;
  font-size: 20px;
}

.service-grid,
.benefit-grid,
.process-grid,
.trust-grid,
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid.vertical {
  grid-template-columns: 1fr;
}

.contact-methods.vertical {
  grid-template-columns: 1fr;
}

.service-card,
.card,
.process-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(24, 32, 42, 0.08);
  overflow: hidden;
}

.service-card,
.card,
.process-card,
.quote-card {
  height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-content,
.card,
.process-card,
.faq-item {
  padding: 28px;
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card-content .button-row {
  margin-top: auto;
  padding-top: 24px;
}

.service-card h3,
.card h3,
.process-card h3,
.faq-item summary {
  color: var(--green-dark);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 950;
}

.service-card p,
.card p,
.process-card p {
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy p {
  margin-top: 18px;
}

.section-intro.centered {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 46px;
}

.section-intro.centered .process-intro {
  max-width: 680px;
  margin: 18px auto 0;
}

.process-layout {
  margin-top: 0;
}

.rounded-img,
.feature-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero .rounded-img,
.image-stack > .rounded-img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero.hardening-hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(24, 32, 42, 0.84), rgba(39, 52, 31, 0.74)),
    url("../images/hardening-gutter-guard.webp") center / cover no-repeat;
  color: #fff;
}

.page-hero.hardening-hero .wrap {
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.98fr);
}

.page-hero.hardening-hero .wrap > div:first-child {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 24px;
  background: rgba(24, 32, 42, 0.66);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
}

.page-hero.hardening-hero h1,
.page-hero.hardening-hero p {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.page-hero.hardening-hero .eyebrow {
  color: #f5d7a6;
}

.page-hero.hardening-hero .rounded-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.image-stack .small-grid .rounded-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hardening-photo {
  background: var(--sage);
}

.detail-photo {
  object-position: center;
}

.roofline-focus {
  object-position: center 45%;
}

.contain-photo {
  object-fit: contain !important;
  background: var(--sage);
  padding: 10px;
}

.feature-callout {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(238, 242, 234, 0.88), rgba(255, 255, 255, 0.98));
}

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

.image-stack .small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(244, 139, 12, 0.16);
}

.band {
  border-radius: 24px;
  padding: 46px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.band p,
.band h2 {
  color: #fff;
}

.center-band {
  display: grid;
  justify-items: center;
  text-align: center;
}

.center-band p {
  max-width: 760px;
}

.center-band .button-row {
  justify-content: center;
  margin-top: 30px;
}

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

.gallery-grid-balanced {
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
}

.gallery-grid img,
.gallery-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(24, 32, 42, 0.13);
}

.gallery-tile.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile.featured img {
  aspect-ratio: 1 / 1;
}

.gallery-grid-balanced .gallery-tile img {
  height: 100%;
  aspect-ratio: auto;
}

.gallery-grid-balanced .gallery-tile.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.hardening-gallery .gallery-tile img {
  background: var(--sage);
}

.gallery-tile {
  min-width: 0;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-preview-feature,
.gallery-preview-tile {
  min-width: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(24, 32, 42, 0.13);
}

.gallery-preview-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: stretch;
}

.gallery-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview-tile {
  aspect-ratio: 4 / 3;
}

.placeholder-gallery .placeholder-img {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.placeholder-gallery .gallery-tile.featured .placeholder-img {
  aspect-ratio: 1 / 1;
}

.placeholder-img {
  min-height: 320px;
  border: 2px dashed rgba(69, 88, 51, 0.35);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(69, 88, 51, 0.10), rgba(244, 139, 12, 0.08)),
    var(--sage);
  color: var(--green-dark);
  text-align: center;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.08);
}

.service-card .placeholder-img {
  min-height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}

.small-grid .placeholder-img {
  min-height: 220px;
}

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

.quote-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 32, 42, 0.08);
}

.quote-card p {
  color: var(--ink);
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.mobile-carousel-controls {
  display: none;
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(180deg, var(--cream), #fff);
  overflow: hidden;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.page-hero .wrap > *,
.split > *,
.hero-inner > * {
  min-width: 0;
}

.page-hero p {
  margin-top: 18px;
  font-size: 21px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(24, 32, 42, 0.68), rgba(24, 32, 42, 0.60)),
    url("../images/landscape-patio-lighting.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 22px;
}

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

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

.form-hidden {
  display: none;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: 500 15px/1.2 Inter, Roboto, Arial, sans-serif;
  padding: 15px;
  outline: none;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
}

.contact-method {
  padding: 24px;
  border-radius: 18px;
  background: var(--sage);
}

.contact-method h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 20px;
}

.faq-list {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 28px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 28px 26px;
}

.site-footer {
  padding-top: 58px;
  background: var(--charcoal);
  color: #fff;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.footer-symbol {
  width: 74px;
  margin-bottom: 16px;
}

.site-footer h3 {
  color: #d8ddcf;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.dealer-badge {
  display: block;
  width: 190px;
  max-width: 100%;
  margin: 8px 0 18px;
}

.dealer-text {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.copyright {
  margin-top: 46px;
  padding: 14px;
  background: #171717;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .site-header {
    position: static;
  }

  .main-nav {
    min-height: 92px;
    gap: 16px;
  }

  .logo {
    width: 240px;
  }

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

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% - 10px);
    display: none;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    padding: 20px;
    border-radius: 16px;
    background: var(--green-dark);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-menu-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .service-dropdown {
    position: static;
    min-width: 0;
    padding: 8px 0 8px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .service-menu.is-open .service-dropdown {
    display: block;
    transform: none;
  }

  .service-dropdown a {
    color: rgba(255, 255, 255, 0.9);
    white-space: normal;
  }

  .service-dropdown a:hover,
  .service-dropdown a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.10);
    color: #f5d7a6;
  }

  .hero-inner,
  .page-hero .wrap,
  .split,
  .contact-shell,
  .seasonal-inner {
    grid-template-columns: 1fr;
  }

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

  .seasonal-inner .button-row {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0;
  }

  .service-grid,
  .benefit-grid,
  .process-grid,
  .trust-grid,
  .contact-methods,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid-balanced {
    grid-auto-rows: 220px;
  }

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

  .gallery-preview-feature {
    aspect-ratio: 16 / 10;
  }

}

@media (max-width: 650px) {
  .wrap,
  .footer-grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  p {
    font-size: 16px;
    line-height: 1.55;
  }

  .site-header {
    position: static;
    box-shadow: 0 8px 22px rgba(24, 32, 42, 0.14);
  }

  .utility-bar {
    font-size: 13px;
  }

  .utility-inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .utility-inner span {
    display: none;
  }

  .logo {
    width: min(205px, calc(100vw - 90px));
  }

  .main-nav {
    min-height: 74px;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    width: 100%;
    max-height: min(70vh, 460px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 16px;
    background: var(--green-dark);
    box-shadow: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    font-size: 14px;
  }

  .service-menu {
    width: 100%;
  }

  .service-menu-toggle {
    justify-content: flex-start;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    font-size: 14px;
  }

  .service-dropdown {
    padding: 6px 0 6px 10px;
  }

  .page-hero .wrap {
    display: block;
    overflow: hidden;
  }

  .page-hero .wrap > div,
  .page-hero h1,
  .page-hero p {
    width: 100%;
    max-width: 100%;
  }

  .page-hero.hardening-hero .wrap > div:first-child {
    padding: 24px;
  }

  .page-hero .rounded-img {
    margin-top: 24px;
    max-height: 360px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .section-head h2,
  .split-copy h2 {
    font-size: 32px;
  }

  .hero p,
  .page-hero p,
  .section-head p {
    font-size: 16px;
  }

  .section,
  .page-hero {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .service-grid,
  .benefit-grid,
  .process-grid,
  .trust-grid,
  .contact-methods,
  .quote-grid {
    gap: 16px;
  }

  .service-card-content,
  .card,
  .process-card,
  .faq-item,
  .contact-panel {
    padding: 22px;
  }

  .service-card img {
    aspect-ratio: 4 / 3;
  }

  .image-stack,
  .image-stack .small-grid {
    gap: 14px;
  }

  .quick-proof {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid-balanced {
    grid-auto-rows: auto;
  }

  .gallery-preview-small-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .gallery-grid-balanced .gallery-tile,
  .gallery-grid-balanced .gallery-tile.featured,
  .gallery-preview-tile {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-balanced .gallery-tile.featured,
  .gallery-tile.featured {
    grid-column: auto;
    grid-row: auto;
  }

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

  .button-row .button,
  .submit-row button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .placeholder-img {
    min-height: 260px;
    padding: 18px;
    overflow-wrap: break-word;
  }

  .seasonal-inner {
    padding: 24px;
  }

  [data-mobile-carousel].mobile-carousel {
    display: flex;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 7%;
    padding: 2px 7% 12px;
    margin-left: -7%;
    margin-right: -7%;
    -webkit-overflow-scrolling: touch;
  }

  [data-mobile-carousel].mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  [data-mobile-carousel].mobile-carousel > .mobile-carousel-slide {
    flex: 0 0 86%;
    min-width: 0;
    scroll-snap-align: center;
  }

  .gallery-grid-balanced.mobile-carousel {
    grid-auto-rows: auto;
  }

  .gallery-grid-balanced.mobile-carousel .gallery-tile,
  .gallery-grid-balanced.mobile-carousel .gallery-tile.featured,
  .gallery-preview-small-grid.mobile-carousel .gallery-preview-tile {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-balanced.mobile-carousel .gallery-tile img {
    aspect-ratio: 4 / 3;
    height: 100%;
  }

  .quote-grid.mobile-carousel .quote-card {
    min-height: 260px;
  }

  .mobile-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
  }

  .mobile-carousel-button {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    background: var(--green);
    font-size: 25px;
    line-height: 1;
    align-items: center;
    justify-content: center;
  }

  .mobile-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .mobile-carousel-dot {
    width: 8px;
    height: 8px;
    min-height: 8px;
    padding: 0;
    border-radius: 999px;
    background: var(--sage-2);
    box-shadow: none;
  }

  .mobile-carousel-dot.is-active {
    width: 22px;
    background: var(--accent);
  }
}

