:root {
  --ink: #10211e;
  --forest: #12312b;
  --pine: #1e5a4f;
  --copper: #b86b35;
  --gold: #f0b44d;
  --cream: #f7f1e7;
  --paper: #fffaf1;
  --mist: #e7eee8;
  --blue: #234765;
  --muted: #5c6864;
  --line: rgba(16, 33, 30, 0.14);
  --shadow: 0 24px 70px rgba(16, 33, 30, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  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.6;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 10px 28px rgba(16, 33, 30, 0.08);
}

.topbar {
  background: var(--forest);
  color: white;
  font-size: 0.88rem;
}

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

.topbar__links {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.topbar a {
  color: white;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand--logo {
  min-width: 0;
}

.brand__logo {
  display: block;
  width: clamp(176px, 20vw, 252px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand__logo--footer {
  width: min(260px, 100%);
  max-height: none;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(240, 180, 77, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-weight: 750;
  color: var(--forest);
}

.nav__menu > a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav__menu > a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transition: width 180ms ease;
}

.nav__menu > a:hover::after,
.nav__menu > a:focus-visible::after,
.nav__menu > a.is-active::after {
  width: 100%;
}

.nav__menu > a.is-active {
  color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 49, 43, 0.16);
}

.btn--primary {
  background: var(--gold);
  color: #241603;
  border-color: var(--gold);
}

.btn--light {
  background: white;
  color: var(--forest);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn--outline {
  border-color: var(--forest);
  color: var(--forest);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 49, 43, 0.94) 0%, rgba(18, 49, 43, 0.78) 36%, rgba(18, 49, 43, 0.28) 68%, rgba(18, 49, 43, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 33, 30, 0.5), transparent 34%);
  content: "";
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 46px;
  padding: 92px 0 84px;
  color: white;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.28rem;
}

.hero__lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero__panel div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.hero__panel div:last-child {
  border-bottom: 0;
}

.hero__panel strong,
.hero__panel span {
  display: block;
}

.hero__panel strong {
  color: var(--forest);
  font-size: 1.02rem;
}

.hero__panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-strip {
  background: var(--forest);
  color: white;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip__grid > div {
  min-height: 168px;
  padding: 30px;
  background: var(--forest);
}

.trust-strip span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  font-size: 1.2rem;
}

.trust-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 96px 0;
}

.section--intro {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
}

.split--center {
  align-items: end;
}

.split--feature {
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 34px rgba(16, 33, 30, 0.07);
}

.service-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest);
  font-weight: 900;
}

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

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

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

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--forest);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--copper);
}

.process-section {
  background: var(--forest);
  color: white;
}

.section-heading {
  max-width: 700px;
}

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

.process-grid article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.project-band {
  background: white;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-grid span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--forest);
  font-weight: 800;
}

.brand-section {
  background: var(--paper);
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 44px rgba(16, 33, 30, 0.08);
}

.brand-feature img {
  width: min(260px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 26px rgba(16, 33, 30, 0.16));
}

.brand-feature p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.owner-info-card img {
  width: 104px;
  margin: 0 0 18px;
  filter: drop-shadow(0 10px 16px rgba(16, 33, 30, 0.14));
}

.reviews-section {
  background: var(--blue);
  color: white;
}

.reviews-section .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.review-card {
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.stars {
  color: var(--copper);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 18px 0;
  font-size: 1.1rem;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}


.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.page-hero--solid {
  background:
    linear-gradient(135deg, rgba(18, 49, 43, 0.98), rgba(35, 71, 101, 0.92)),
    var(--forest);
}

.page-hero--image {
  min-height: 560px;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18, 49, 43, 0.96), rgba(18, 49, 43, 0.68) 48%, rgba(18, 49, 43, 0.18));
  content: "";
}

.page-hero__content {
  padding: 116px 0 96px;
  max-width: 850px;
}

.page-hero__content--narrow {
  max-width: 880px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.6vw, 5.4rem);
}

.page-hero__lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 34px rgba(16, 33, 30, 0.07);
}

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

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.quote-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow);
}

.quote-panel strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.text-link--spaced {
  margin-top: 22px;
}

.area-list--large span {
  padding: 12px 16px;
  font-size: 1rem;
}

.estimate-section--page {
  background: var(--paper);
}

.service-area {
  background: var(--cream);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--forest);
  font-weight: 850;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 60px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--forest);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.estimate-section {
  background: var(--forest);
}

.estimate-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.estimate-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 900;
}

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

.estimate-form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 850;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 33, 30, 0.2);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 12px 14px;
}

.estimate-form textarea {
  resize: vertical;
}

.span-2 {
  grid-column: 1 / -1;
}

.site-footer {
  background: #0b1d1a;
  color: white;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 46px;
}

.brand--footer .brand__mark {
  background: var(--gold);
  color: var(--forest);
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom span,
.footer-bottom a {
  margin: 0;
}

@media (max-width: 960px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 118px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(18, 49, 43, 0.96), rgba(18, 49, 43, 0.76));
  }

  .hero__content,
  .split,
  .split--reverse,
  .reviews-layout,
  .faq-layout,
  .estimate-card,
  .brand-feature {
    grid-template-columns: 1fr;
  }

  .brand-feature {
    text-align: left;
  }

  .card-grid--three,
  .card-grid--four {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero--image::after {
    background: linear-gradient(180deg, rgba(18, 49, 43, 0.96), rgba(18, 49, 43, 0.76));
  }

  .hero__content {
    padding-top: 78px;
  }

  .hero__panel {
    max-width: 600px;
  }

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

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar__links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
  }

  .nav {
    min-height: 70px;
  }

  .nav__menu {
    top: 108px;
    left: 14px;
    right: 14px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__logo {
    width: 158px;
    max-height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero__content {
    padding: 54px 0 44px;
  }

  .hero__actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .trust-strip__grid > div,
  .service-card,
  .process-grid article,
  .review-card,
  .estimate-card,
  .brand-feature {
    padding: 24px;
  }

  .brand-feature img {
    width: min(190px, 70%);
  }

  .mini-grid,
  .estimate-form,
  .footer-grid,
  .card-grid--three,
  .card-grid--four {
    grid-template-columns: 1fr;
  }

  .page-hero__content {
    padding: 72px 0 58px;
  }

  .page-hero--image {
    min-height: auto;
  }

  .info-card {
    min-height: auto;
    padding: 24px;
  }

  .span-2 {
    grid-column: auto;
  }
}
