:root {
  --ink: #18211f;
  --muted: #5e6964;
  --line: #d9dfdc;
  --paper: #ffffff;
  --soft: #f4f6f2;
  --concrete: #e8ebe8;
  --green: #1d5b49;
  --green-dark: #10382d;
  --orange: #c86b2c;
  --orange-dark: #9b4d1f;
  --shadow: 0 20px 55px rgba(24, 33, 31, 0.16);
  --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.55;
}

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

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

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

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: grid;
  gap: 0.1rem;
  min-width: 180px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span:first-child {
  font-size: 1.02rem;
}

.brand span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 0.95rem;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link:hover {
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 78vh);
  color: #ffffff;
  overflow: hidden;
}

.hero.compact {
  min-height: 430px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 18, 16, 0.86), rgba(11, 18, 16, 0.62) 45%, rgba(11, 18, 16, 0.18));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 630px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
}

.button.primary {
  color: #ffffff;
  background: var(--orange);
}

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

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.button.dark {
  color: #ffffff;
  background: var(--green);
}

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

.button.light {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.trust-strip {
  background: var(--green);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 118px;
  padding: 1.25rem;
  color: #ffffff;
  background: var(--green);
}

.trust-item strong {
  display: block;
  font-size: 1.02rem;
}

.trust-item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

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

.section.concrete {
  background: var(--concrete);
}

.inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.content h1,
.content h2,
.form-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.content p {
  margin: 0.85rem 0 0;
  font-size: 1.03rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2.2rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.photo-frame {
  overflow: hidden;
  background: var(--concrete);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.service-card,
.area-card,
.faq-item,
.quote-card,
.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

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

.service-card-body,
.area-card,
.faq-item,
.quote-card,
.step-card {
  padding: 1.2rem;
}

.service-card h3,
.area-card h3,
.quote-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p,
.area-card p,
.quote-card p,
.step-card p {
  margin: 0.6rem 0 0;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--green);
  font-weight: 850;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  min-height: 152px;
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 850;
}

.quote-band {
  color: #ffffff;
  background: var(--green-dark);
}

.quote-band .inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 2rem;
  align-items: center;
}

.quote-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.quote-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.content {
  max-width: 840px;
}

.content.wide {
  max-width: none;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 2rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  padding: 1.2rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sidebar h2 {
  margin: 0;
  font-size: 1.25rem;
}

.sidebar .button {
  width: 100%;
  margin-top: 0.8rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 0;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0.45rem 0 0;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.form-panel {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c8d0cc;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 107, 44, 0.28);
  border-color: var(--orange);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #101815;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
  gap: 2rem;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.footer-bottom {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.mobile-cta {
  position: fixed;
  z-index: 25;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  gap: 0.6rem;
}

.mobile-cta .button {
  flex: 1;
}

[data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.55rem;
  }

  .header-inner > .phone-link {
    display: none;
  }

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

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

  .two-column,
  .two-column.reverse,
  .quote-band .inner,
  .split-content,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 74px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand span:first-child {
    font-size: 0.95rem;
  }

  .brand span:last-child {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 670px;
  }

  .hero.compact {
    min-height: 420px;
  }

  .hero::after {
    background: rgba(11, 18, 16, 0.76);
  }

  .hero-content {
    width: min(100% - 24px, var(--max));
    padding: 4rem 0;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .inner,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, var(--max));
  }

  .trust-grid,
  .service-grid,
  .area-grid,
  .process-grid,
  .field-grid,
  .check-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
