:root {
  --ink: #172426;
  --muted: #5a6869;
  --paper: #fbfbf8;
  --mist: #edf4ef;
  --line: #d8e2dc;
  --green: #246b5a;
  --green-dark: #15483d;
  --brick: #b85c38;
  --gold: #d99a2b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 36, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.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;
  inset: 0 0 auto;
  z-index: 10;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem max(1.25rem, calc((100% - 1180px) / 2));
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(216, 226, 220, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  padding: 0.5rem 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green-dark);
}

.button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 46px;
  color: var(--ink);
  background: var(--mist);
}

.button {
  min-width: 168px;
  padding: 0.85rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 26px rgba(36, 107, 90, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8.5rem max(1.25rem, calc((100% - 1180px) / 2)) 4.5rem;
  color: var(--white);
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 25, 25, 0.78), rgba(13, 25, 25, 0.5) 48%, rgba(13, 25, 25, 0.18)),
    linear-gradient(0deg, rgba(13, 25, 25, 0.42), rgba(13, 25, 25, 0.1));
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08a;
}

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

h1 {
  margin-bottom: 0.9rem;
  font-size: 4.8rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2.1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 670px;
  margin: 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 72px;
  padding: 1rem;
  color: var(--green-dark);
  background: var(--white);
  font-weight: 850;
  text-align: center;
}

.section,
.quote-section {
  padding: 5.5rem max(1.25rem, calc((100% - 1180px) / 2));
}

section[id],
.quote-section[id] {
  scroll-margin-top: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.1rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 230px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 36, 38, 0.06);
}

.service-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  color: var(--brick);
}

.service-card p,
.process-grid p,
.seasonal-copy p,
.quote-copy p,
.photo-band p {
  color: var(--muted);
}

.seasonal {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.62fr);
  gap: 2.2rem;
  align-items: center;
  background: var(--mist);
}

.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.season-tab {
  min-width: 92px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.season-tab.is-active {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.season-panel {
  min-height: 340px;
  padding: 2rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.season-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.check-list svg {
  color: #ffd08a;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  min-height: 470px;
  background: var(--ink);
  color: var(--white);
}

.photo-band img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.photo-band > div {
  display: grid;
  align-content: center;
  padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2)) 4.5rem 3rem;
}

.photo-band .eyebrow {
  color: #ffd08a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  min-height: 220px;
  padding: 1.4rem;
  border-left: 5px solid var(--gold);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 36, 38, 0.07);
}

.process-grid span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--brick);
  font-size: 1.5rem;
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.72fr);
  gap: 2.2rem;
  align-items: start;
  background: var(--white);
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-dark);
  font-weight: 850;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7d0;
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.season-tab:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(217, 154, 43, 0.42);
  outline-offset: 2px;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem max(1.25rem, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    inset: 72px 1rem auto;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .section-heading,
  .seasonal,
  .photo-band,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

  .photo-band > div {
    padding: 3rem 1.25rem;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 84svh;
    padding-top: 7.5rem;
    padding-bottom: 2.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-stats,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

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

  .section,
  .quote-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .quote-form {
    padding: 1rem;
  }

  .site-footer {
    display: grid;
  }
}
