@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/public-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/public-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #11291c;
  --green: #0e4620;
  --leaf: #087a3c;
  --orange: #e76026;
  --action: #c74312;
  --paper: #f5f3f0;
  --white: #fcfefb;
  --muted: #526159;
  --line: #c9d3cc;
  --shadow: 0 18px 45px rgba(17, 41, 28, 0.12);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Public Sans", Arial, sans-serif;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}
p {
  max-width: 68ch;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.narrow {
  max-width: 820px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  padding: 12px 18px;
  border: 2px solid var(--ink);
}
.skip-link:focus {
  transform: none;
}
.utility {
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
}
.utility .shell {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility a {
  font-weight: 700;
  color: #9cf1bc;
}
.site-header {
  background: rgba(252, 254, 251, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  gap: 1px;
  max-width: 250px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
}
.brand-copy strong {
  font-size: 1.55rem;
}
.brand-copy small {
  color: var(--leaf);
  font-family: "Public Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-header nav a:not(.nav-cta):hover {
  text-decoration: underline;
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  background: var(--action);
  border: 2px solid var(--action);
  border-radius: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 0 #862e0b;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.nav-cta {
  min-height: 44px;
  box-shadow: none;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #862e0b;
}
.button:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #862e0b;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--green);
  box-shadow: none;
}
.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 6px 0 #c6d3c9;
}
.text-link {
  font-weight: 700;
  color: var(--green);
}
.text-link.light {
  color: #fff;
}
.menu-button {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  padding: 9px 13px;
  border-radius: 8px;
  font: 700 0.9rem inherit;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 16px;
}
.lede {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #34473b;
  max-width: 62ch;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.home-hero,
.service-hero {
  padding: 72px 0 86px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfdf9 0%, #f5f3f0 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-copy h1 em {
  display: inline-block;
  color: var(--green);
  font-style: normal;
}
.quick-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
  font-size: 0.83rem;
  font-weight: 700;
}
.quick-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
}
.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual > img {
  width: 100%;
  aspect-ratio: 19/20;
  object-fit: cover;
  border-radius: 46% 46% 18px 18px;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #aeeec5;
  top: -38px;
  right: -48px;
  z-index: -1;
}
.estimate-tab {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: min(330px, 76%);
  padding: 24px 72px 24px 26px;
  border-radius: 18px 6px 18px 18px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.estimate-tab strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.estimate-tab span {
  display: block;
  line-height: 1.4;
}
.estimate-tab b {
  position: absolute;
  right: 22px;
  top: 50%;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.4rem;
}
.room-rail {
  border-block: 1px solid var(--line);
  background: var(--white);
}
.room-rail-inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(6, 1fr);
  align-items: stretch;
}
.room-rail h2 {
  margin: 0;
  padding: 24px 22px 24px 0;
  font-size: 1.8rem;
  align-self: center;
}
.room-item {
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 18px 10px;
  border-left: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}
.room-item img {
  width: 27px;
  height: 27px;
}
.route-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.route-card span {
  font-family: "Barlow Condensed";
  font-size: 1.5rem;
  color: var(--orange);
}
.route-one {
  top: 18%;
  left: -30px;
}
.route-two {
  top: 50%;
  right: -25px;
}
.route-three {
  bottom: 6%;
  left: 12%;
}
.route-strip {
  background: var(--ink);
  color: var(--white);
  padding: 78px 0;
}
.route-strip .eyebrow,
.cta-band .eyebrow {
  color: #8ae6ad;
}
.section {
  padding: 96px 0;
}
.paper {
  background: var(--paper);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #496153;
}
.steps article {
  padding: 26px 24px 0 0;
}
.steps span,
.number-card > span {
  font-family: "Barlow Condensed";
  font-size: 2rem;
  color: var(--orange);
}
.steps h3 {
  font-size: 1.9rem;
}
.steps p {
  color: #bdd0c2;
  font-size: 0.94rem;
}
.steps.vertical {
  grid-template-columns: 1fr 1fr;
  border: none;
  gap: 1px;
  background: var(--line);
}
.steps.vertical article {
  background: var(--white);
  padding: 36px;
}
.steps.vertical p {
  color: var(--muted);
}
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card p {
  color: var(--muted);
  flex: 1;
}
.icon {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
}
.image-copy,
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.image-frame {
  position: relative;
}
.image-frame img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 16px -14px -14px 16px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}
.location-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-pills a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}
.location-pills a:hover {
  border-color: var(--leaf);
  background: #ecfaef;
}
.cta-band {
  padding: 68px 0;
  background: var(--green);
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 {
  margin: 0;
  max-width: 700px;
}
.page-hero {
  padding: 88px 0 74px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1,
.service-hero h1,
.article-head h1 {
  font-size: clamp(3.7rem, 7vw, 6.5rem);
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
}
.note-card,
.article-aside {
  background: var(--ink);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 #aeeec5;
}
.note-card h2 {
  font-size: 2.6rem;
}
.note-card p {
  color: #d2dfd5;
}
.note-card li,
.article-aside li {
  margin-bottom: 12px;
}
.number-card {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.notice {
  background: #fff1e9;
  padding: 18px 22px;
  margin: 24px 0 40px;
  box-shadow: inset 0 0 0 1px #f2cbb7;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.estimate-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: var(--radius);
}
.estimate-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 20px;
}
.estimate-form input,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #8a9c90;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px;
}
.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: 3px solid #aeeec5;
  border-color: var(--green);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.estimate-form .consent {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
}
.estimate-form fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.estimate-form legend {
  margin-bottom: 8px;
  font-weight: 700;
}
.preference-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.estimate-form .preference-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-weight: 400;
}
.preference-row input {
  width: auto;
}
.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.consent input {
  width: auto;
  margin-top: 6px;
}
.form-fine {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 18px 0 0;
}
.hp {
  position: absolute !important;
  left: -10000px !important;
}
.form-error {
  border: 2px solid #b33a18;
  background: #fff5f1;
  padding: 16px;
  margin-bottom: 22px;
}
.form-success {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--leaf);
  background: #e9f7ee;
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-size: 1.12rem;
  font-weight: 700;
}
.home-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.home-links a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}
.home-links a:last-child {
  border-right: 0;
}
.home-links strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}
.home-links span {
  color: var(--muted);
}
.home-links a:hover strong,
.home-links a:focus-visible strong {
  color: var(--leaf);
}
.blog-list {
  display: grid;
  gap: 0;
}
.blog-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}
.blog-row:first-child {
  padding-top: 0;
}
.blog-row img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
}
.blog-number {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
}
.blog-row h2 {
  margin: 8px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #aeeec5;
  color: var(--green);
  font-size: 2rem;
  font-weight: 700;
}
.center {
  text-align: center;
}
.center p {
  margin-inline: auto;
}
.center-row {
  justify-content: center;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: "Barlow Condensed";
  font-size: 1.8rem;
  font-weight: 700;
  padding: 24px 40px 24px 0;
}
.faq-list details p {
  padding: 0 0 24px;
}
.article-head {
  padding: 88px 0 68px;
  background: var(--paper);
}
.article-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 30px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 0.75fr);
  gap: 70px;
  align-items: start;
  padding-block: 72px;
}
.article-feature {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 52px;
}
.article-body section {
  margin-bottom: 48px;
}
.article-body h2 {
  font-size: 2.8rem;
}
.article-aside {
  position: sticky;
  top: 120px;
  box-shadow: 10px 10px 0 #f3bd9f;
}
.source-note {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.prose h2 {
  font-size: 2.8rem;
  margin-top: 48px;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  display: grid;
  font-family: "Barlow Condensed";
  font-size: 2rem;
  text-decoration: none;
}
.footer-brand small {
  color: #8ae6ad;
  font-family: "Public Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8ae6ad;
}
.footer-grid > div > a:not(.footer-brand) {
  display: block;
  margin: 10px 0;
  color: #d7e4d9;
}
.footer-grid p {
  color: #b9c9bc;
  max-width: 36ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #405447;
  margin-top: 54px;
  padding-top: 24px;
  color: #9fb1a3;
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }
  .menu-button {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .hero-grid,
  .image-copy,
  .two-column,
  .form-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 48px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-visual {
    max-width: 620px;
  }
  .route-one {
    left: 10px;
  }
  .route-two {
    right: 10px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .article-aside {
    position: static;
  }
  .section {
    padding: 76px 0;
  }
}
@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }
  h1 {
    font-size: 3.4rem;
  }
  .utility .shell {
    justify-content: center;
  }
  .utility span {
    display: none;
  }
  .nav-row {
    min-height: 74px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand-copy {
    max-width: 175px;
  }
  .brand-copy strong {
    font-size: 1.25rem;
  }
  .brand-copy small {
    font-size: 0.62rem;
  }
  .site-header nav {
    top: 74px;
  }
  .home-hero,
  .service-hero {
    padding: 52px 0 66px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero-visual > img {
    aspect-ratio: 4/5;
  }
  .estimate-tab {
    right: 8px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px 62px 18px 20px;
  }
  .estimate-tab strong {
    font-size: 1.65rem;
  }
  .room-rail-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .room-rail h2 {
    grid-column: 1 / -1;
    padding: 22px 0 12px;
    text-align: center;
  }
  .room-item:nth-last-child(-n + 3) {
    border-top: 1px solid var(--line);
  }
  .image-frame::after {
    inset: 10px 0 -10px 10px;
  }
  .route-card {
    padding: 8px 10px;
  }
  .route-card span {
    font-size: 1.1rem;
  }
  .route-card strong {
    font-size: 0.72rem;
  }
  .quick-list {
    display: grid;
  }
  .section {
    padding: 62px 0;
  }
  .steps,
  .steps.vertical,
  .card-grid-3,
  .card-grid-2,
  .field-row,
  .footer-grid,
  .home-links,
  .blog-row {
    grid-template-columns: 1fr;
  }
  .home-links a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-links a:last-child {
    border-bottom: 0;
  }
  .blog-row {
    gap: 24px;
  }
  .steps article {
    padding: 22px 0;
    border-bottom: 1px solid #496153;
  }
  .steps.vertical article {
    padding: 28px;
  }
  .section-heading.split,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .image-copy,
  .two-column,
  .form-layout {
    gap: 38px;
  }
  .estimate-form {
    padding: 24px 18px;
  }
  .page-hero {
    padding: 62px 0 52px;
  }
  .article-layout {
    padding-block: 48px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .button-row {
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
