:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #625a4e;
  --paper: #fff7eb;
  --white: #ffffff;
  --cream: #fff0d1;
  --orange: #f36b12;
  --orange-dark: #bf4d00;
  --aqua: #1198b8;
  --aqua-dark: #086a82;
  --line: rgba(17, 17, 15, 0.13);
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.18);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 72px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 240, 209, 0.72);
  border-radius: 8px;
  background: rgba(255, 247, 235, 0.9);
  box-shadow: 0 18px 50px rgba(17, 17, 15, 0.13);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--ink), 0 8px 20px rgba(17, 17, 15, 0.16);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand strong {
  font-family: inherit;
  font-size: 1.02rem;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 7px;
  color: #263640;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--cream);
}

.header-phone {
  justify-self: end;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 17, 15, 0.18);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.9) 0%, rgba(17, 17, 15, 0.68) 42%, rgba(17, 17, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.48) 0%, rgba(17, 17, 15, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 124px;
  padding-bottom: 42px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 1020px;
  margin: 0;
  font-size: 5.55rem;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 19px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(243, 107, 18, 0.28);
}

.button-primary:hover {
  background: #ff7a1f;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border-bottom: 0;
}

.trust-band div {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--cream), #fff8e8);
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.06);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 1.12rem;
  line-height: 1.16;
}

.trust-band span {
  max-width: 34ch;
  color: var(--muted);
}

.section,
.results-section,
.promise-section,
.quote-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

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

.service-card,
.package-card,
.process-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.06);
}

.service-card {
  min-height: 292px;
  padding: 24px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 8px;
  background: #fff1df;
  border: 1px solid #ffd0a8;
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-driveway::before {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--aqua) 0 45%, #bfeaf8 45% 54%, var(--aqua-dark) 54%);
}

.icon-house::before {
  width: 28px;
  height: 22px;
  background: var(--orange-dark);
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
}

.icon-deck::before {
  width: 30px;
  height: 22px;
  border-top: 5px solid var(--orange);
  border-bottom: 5px solid var(--orange);
}

.icon-deck::after {
  width: 30px;
  height: 3px;
  background: var(--orange);
}

.icon-gutter::before {
  width: 32px;
  height: 11px;
  border: 4px solid var(--aqua);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  top: 17px;
}

.icon-gutter::after {
  width: 7px;
  height: 25px;
  border-radius: 5px;
  background: var(--orange);
  right: 13px;
  top: 18px;
}

.service-card h3,
.package-card h3,
.process-list h3 {
  margin-bottom: 12px;
}

.service-card p,
.package-card p,
.process-list p,
.results-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
}

.service-menu {
  display: grid;
  grid-template-columns: minmax(250px, 0.66fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-menu h3 {
  max-width: 430px;
  font-size: 1.76rem;
  line-height: 1.08;
}

.service-menu ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-menu li {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.results-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: stretch;
  padding: 74px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.results-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 6px var(--ink);
}

.before-after {
  display: grid;
  gap: 14px;
}

.comparison-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.comparison-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.8) 0%, rgba(16, 24, 32, 0.42) 48%, rgba(16, 24, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.66) 0%, rgba(16, 24, 32, 0.2) 66%, rgba(16, 24, 32, 0.04) 100%);
}

.comparison-card.before img {
  object-position: 18% 50%;
}

.comparison-card.after img {
  object-position: 82% 50%;
}

.comparison-card span {
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.comparison-card strong {
  max-width: 13ch;
  font-family: inherit;
  color: var(--white);
  font-size: 1.54rem;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.44);
}

.process-section {
  padding-top: 116px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.process-list article {
  min-height: 260px;
  padding: 28px;
}

.process-list span {
  display: block;
  margin-bottom: 52px;
  color: var(--orange);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 850;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 16px;
  padding-bottom: 94px;
}

.promise-feature {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.promise-feature p {
  max-width: 730px;
  margin: 0;
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.08;
}

.promise-feature span {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.45;
}

.promise-metrics {
  display: grid;
  gap: 16px;
}

.promise-metrics div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 109px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.promise-metrics strong {
  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1.08;
}

.promise-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.package-section {
  padding-top: 0;
}

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

.package-card {
  min-height: 236px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card span {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff1df;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.package-card.featured span {
  background: var(--orange);
  color: var(--white);
}

.faq-section {
  padding-top: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.faq-panel {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
  padding: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.faq-panel span {
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-panel h3 {
  max-width: 300px;
  font-size: 2rem;
  line-height: 1.08;
}

.faq-panel p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.faq-panel .button {
  width: 100%;
  margin-top: auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.06);
}

.faq-list summary {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 21px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1df;
  color: var(--orange-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 24px 24px;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.72fr);
  gap: 42px;
  padding: 74px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-copy p {
  max-width: 600px;
  margin-top: 20px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a,
.contact-detail {
  padding: 11px 13px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-detail {
  display: inline-flex;
  align-items: center;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #293842;
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 107, 18, 0.16);
}

.quote-form .button {
  width: 100%;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

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

  h2 {
    font-size: 3rem;
  }

  .promise-feature p {
    font-size: 2.05rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 15, 0.9), rgba(17, 17, 15, 0.58)),
      linear-gradient(0deg, rgba(17, 17, 15, 0.5), rgba(17, 17, 15, 0));
  }

  .trust-band,
  .service-grid,
  .process-list,
  .package-grid,
  .service-menu,
  .service-menu ul,
  .faq-layout,
  .results-section,
  .promise-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: auto;
    padding: 26px 28px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .service-grid,
  .process-list,
  .package-grid {
    gap: 12px;
  }

  .faq-panel {
    position: static;
    min-height: auto;
  }

  .results-section,
  .quote-section {
    padding: 44px;
  }

  .promise-section {
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .header-phone {
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-content,
  .trust-band,
  .section,
  .results-section,
  .promise-section,
  .quote-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero-content {
    padding-top: 112px;
  }

  h1 {
    font-size: 3.42rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .promise-feature p {
    font-size: 1.65rem;
  }

  .section {
    padding: 64px 0;
  }

  .service-card,
  .process-list article,
  .package-card {
    min-height: auto;
    padding: 22px;
  }

  .service-menu {
    padding: 22px;
  }

  .service-menu h3,
  .faq-panel h3 {
    font-size: 1.55rem;
  }

  .icon {
    margin-bottom: 28px;
  }

  .results-section,
  .quote-section {
    padding: 28px;
  }

  .comparison-card {
    min-height: 220px;
  }

  .promise-feature {
    min-height: 300px;
    padding: 28px;
  }

  .contact-strip a,
  .contact-detail,
  .package-card span {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}
