:root {
  --ink: #1f2221;
  --muted: #6b6e6b;
  --line: #d9d7d0;
  --paper: #f4f2ed;
  --soft: #e9e7df;
  --green: #8f908d;
  --green-dark: #242625;
  --gold: #8f908d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 34, 33, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.contact-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 225, 220, 0.78);
  background: rgba(244, 242, 237, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  flex: 0 0 auto;
}

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

.brand strong {
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.header-call,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}

.header-quote {
  border: 1px solid var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.header-quote:hover {
  background: #3a3d3b;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 23, 22, 0.86) 0%, rgba(22, 23, 22, 0.64) 42%, rgba(22, 23, 22, 0.16) 76%),
    linear-gradient(180deg, rgba(22, 23, 22, 0.25) 0%, rgba(22, 23, 22, 0.06) 45%, rgba(22, 23, 22, 0.62) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 62px 0 86px;
  color: var(--white);
}

.hero-logo {
  width: clamp(96px, 11vw, 140px);
  height: clamp(96px, 11vw, 140px);
  margin-bottom: 24px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.primary:hover {
  background: #ededeb;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.44);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(12, 22, 17, 0.38);
}

.proof-strip div {
  padding: 17px 18px;
}

.proof-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-strip dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.intro-grid p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.services {
  background: var(--soft);
}

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

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

.service-card,
.steps article,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(23, 33, 28, 0.06);
}

.service-card {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.service-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-price {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.98rem;
}

.service-card p {
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--paper);
}

.split-media img,
.materials img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  object-position: center;
}

.materials img {
  object-position: 45% center;
}

.split-copy p {
  font-size: 1.05rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 750;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--white);
}

.about-copy p {
  max-width: 760px;
  font-size: 1.05rem;
}

.about-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(23, 33, 28, 0.08);
}

.about-panel h3 {
  margin-bottom: 20px;
}

.check-list.compact {
  margin: 0 0 28px;
}

.process {
  background: var(--green-dark);
  color: var(--white);
}

.process p {
  color: rgba(255, 255, 255, 0.72);
}

.steps article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--gold);
  font-weight: 900;
}

.materials {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
}

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

.area-list span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
  font-weight: 850;
}

.reviews {
  background: var(--paper);
}

.reviews .section-heading p {
  max-width: 640px;
}

.review-card {
  margin: 0;
  padding: 26px;
}

.review-card figcaption {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 9px;
  background: var(--soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.review-card cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.reviews-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq {
  background: var(--white);
}

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

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

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

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: clamp(18px, 5vw, 72px);
  padding: clamp(34px, 6vw, 70px);
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer p {
  margin: 4px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .intro-grid,
  .split,
  .about,
  .materials,
  .service-area,
  .cta {
    grid-template-columns: 1fr;
  }

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

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

  .service-number,
  .steps span {
    margin-bottom: 26px;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .contact-bar {
    display: grid;
    gap: 8px;
    text-align: center;
  }

  .contact-bar-actions {
    justify-content: center;
    gap: 10px 16px;
  }

  .site-header {
    position: static;
    align-items: stretch;
  }

  .brand,
  .header-actions,
  .header-call,
  .header-quote {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0;
  }

  .header-call {
    min-height: 48px;
  }

  .header-quote {
    min-height: 48px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    font-size: 0.76rem;
  }

  .nav a {
    padding: 8px 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 22, 17, 0.88) 0%, rgba(12, 22, 17, 0.7) 55%, rgba(12, 22, 17, 0.82) 100%);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 58px 18px 42px;
  }

  .hero-logo {
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.8rem);
  }

  .button,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }

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

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer {
    display: block;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 16px;
  }
}
