:root {
  --ink: #11120f;
  --charcoal: #171512;
  --forest: #17381f;
  --forest-2: #265232;
  --leaf: #8fae54;
  --gold: #c89524;
  --gold-2: #aa7413;
  --lake: #4e7881;
  --paper: #fbfaf7;
  --soft: #f3f0eb;
  --line: #ded8ce;
  --muted: #69645d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(13, 12, 10, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  min-height: 94px;
  padding: 18px clamp(18px, 2.4vw, 38px);
  color: var(--white);
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(180deg, rgba(9, 9, 8, 0.92), rgba(9, 9, 8, 0.34));
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(13, 12, 10, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  color: var(--white);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.brand-name small {
  font-size: 0.58em;
}

.brand-tag {
  display: block;
  margin-top: 4px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  white-space: nowrap;
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  border: 2px solid rgba(200, 149, 36, 0.85);
  border-radius: 50%;
}

.phone-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.phone-link span span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.phone-link strong {
  display: block;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 22px rgba(170, 116, 19, 0.24);
}

.btn-light {
  color: var(--forest);
  background: var(--white);
}

.btn-wide {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.76) 0%, rgba(10, 10, 8, 0.42) 44%, rgba(10, 10, 8, 0.56) 100%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.35) 0%, rgba(7, 7, 6, 0.1) 50%, rgba(7, 7, 6, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
  align-items: center;
  gap: clamp(32px, 4.8vw, 64px);
  width: calc(100% - 64px);
  max-width: 1500px;
  min-height: 92vh;
  margin: 0 auto;
  padding: 140px 0 64px;
}

.hero-copy {
  min-width: 0;
  max-width: 840px;
  padding-top: 20px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.7vw, 88px);
  line-height: 0.98;
  letter-spacing: -1px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 .mobile-line {
  display: none;
}

.accent-line,
.mini-line {
  display: block;
  width: 92px;
  height: 4px;
  margin: 34px 0 24px;
  background: var(--gold);
}

.hero-subhead {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 750;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.service-area-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 580px;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.35;
}

.pin-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.pin-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.estimate-card {
  width: 100%;
  padding: clamp(24px, 2.7vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.form-heading span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--forest);
  border-radius: 6px;
}

.form-heading svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.05;
}

.form-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 72px;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d7d6d1;
  border-radius: 5px;
  outline: none;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.lead-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 149, 36, 0.16);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.secure-note svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2;
}

.form-success,
.form-error {
  display: none;
  margin: 6px 0 0;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
}

.form-success {
  color: var(--forest);
  background: rgba(23, 56, 31, 0.1);
  border: 1px solid rgba(23, 56, 31, 0.2);
}

.form-error {
  color: #7a1f13;
  background: rgba(176, 48, 32, 0.09);
  border: 1px solid rgba(176, 48, 32, 0.22);
}

.form-success.is-visible {
  display: block;
}

.form-error.is-visible {
  display: block;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.project-planner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 6vw, 72px) clamp(22px, 5vw, 76px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.project-planner h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.project-planner p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.planner-grid button {
  min-height: 118px;
  padding: 20px;
  color: var(--forest);
  text-align: left;
  background: #f5f7f2;
  border: 1px solid #d8e2d2;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 18, 15, 0.06);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.planner-grid button:hover,
.planner-grid button:focus {
  background: #eef4e9;
  border-color: rgba(23, 56, 31, 0.42);
  outline: none;
  transform: translateY(-1px);
}

.planner-grid button span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.05;
}

.proof-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 90px);
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
}

.proof-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.12;
}

.proof-item p {
  margin: 0;
  color: #2b2a26;
  font-size: 16px;
}

.mini-line {
  width: 48px;
  height: 3px;
  margin: 22px 0 0;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(22px, 5vw, 76px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.section h2 {
  max-width: 780px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.07;
}

.section-text p:not(.eyebrow),
.split-section p,
.quote-panel p {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 230px 230px;
  gap: 18px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 18, 15, 0.12);
}

.image-grid img:first-child {
  grid-row: 1 / 3;
}

.section-services {
  width: 100%;
  max-width: none;
  background: #f4f1ec;
}

.section-heading {
  width: min(100%, 1420px);
  margin: 0 auto 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(100%, 1420px);
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(17, 18, 15, 0.08);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.05;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
}

.service-card-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  width: min(100%, 1340px);
  margin: 0 auto;
}

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

.check-list span {
  position: relative;
  padding: 13px 14px 13px 39px;
  color: var(--forest);
  background: #edf3ea;
  border: 1px solid #d7e3d3;
  border-radius: 6px;
  font-weight: 750;
}

.check-list span::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  transform: rotate(-45deg);
}

.quote-panel {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(rgba(23, 56, 31, 0.9), rgba(23, 56, 31, 0.9)),
    url("assets/screened-porch-interior.webp") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.service-area {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.94)),
    url("assets/hero-screen-room-lake-norman.webp") center/cover;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1180px);
  margin: 34px auto 0;
}

.faq-grid details {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(17, 18, 15, 0.06);
}

.faq-grid summary {
  color: var(--forest);
  cursor: pointer;
  font-weight: 850;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-area h2 {
  margin: 0 auto;
}

.town-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 34px auto 0;
}

.town-grid span,
.town-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(23, 56, 31, 0.2);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 18, 15, 0.06);
}

.town-grid a:hover,
.town-grid a:focus {
  border-color: rgba(200, 149, 36, 0.65);
  outline: none;
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  padding: 148px clamp(22px, 5vw, 76px) 78px;
  color: var(--white);
  overflow: hidden;
}

.subpage-hero-image,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subpage-hero-image {
  object-fit: cover;
}

.subpage-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.86), rgba(9, 9, 8, 0.56), rgba(9, 9, 8, 0.22)),
    linear-gradient(180deg, rgba(9, 9, 8, 0.2), rgba(9, 9, 8, 0.48));
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100%, 880px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.48);
}

.subpage-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.8vw, 23px);
}

.subpage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.subpage-content {
  background: #f5f2ed;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.content-main {
  display: grid;
  gap: 20px;
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.local-proof span {
  position: relative;
  padding: 15px 16px 15px 42px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(23, 56, 31, 0.14);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 18, 15, 0.05);
}

.local-proof span::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--gold-2);
  border-left: 2px solid var(--gold-2);
  transform: rotate(-45deg);
}

.content-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 18, 15, 0.07);
}

.content-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.08;
}

.content-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.related-links a {
  padding: 10px 13px;
  color: var(--forest);
  background: #edf3ea;
  border: 1px solid #d7e3d3;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.subpage-form-card {
  position: sticky;
  top: 96px;
  box-shadow: 0 18px 48px rgba(17, 18, 15, 0.15);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 6vw, 72px) clamp(22px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, #14341d, #224c2e);
}

.final-cta h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.8vw, 54px);
  line-height: 1.08;
}

.final-cta .eyebrow {
  color: var(--leaf);
}

.final-actions {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.74);
  background: #0f110f;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

  .subpage-form-card {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .subpage-hero {
    min-height: auto;
    padding: 128px 22px 58px;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .subpage-hero-actions,
  .local-proof {
    grid-template-columns: 1fr;
  }

  .subpage-hero-actions .btn {
    width: 100%;
  }

  .local-proof {
    display: grid;
  }
}

@media (max-width: 1280px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-actions .btn {
    display: none;
  }

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

@media (max-width: 1500px) {
  .main-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 13px;
  }

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

  .brand-name {
    font-size: 29px;
  }

  .phone-icon {
    width: 42px;
    height: 42px;
  }

  .phone-link strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-actions .btn {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(13, 12, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    max-width: 780px;
    padding-top: 128px;
  }

  .estimate-card {
    max-width: 560px;
  }

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

  .project-planner {
    grid-template-columns: 1fr;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-intro,
  .split-section {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 12px;
    min-height: 78px;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: none !important;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 80;
    justify-self: end;
    color: var(--ink);
    background: var(--gold);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
  }

  .main-nav {
    position: fixed;
    top: 72px;
  }

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

  .brand-name {
    font-size: 22px;
  }

  .brand-tag {
    max-width: 180px;
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 52px);
    max-width: 540px;
    padding: 118px 0 38px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(33px, 9.2vw, 42px);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .desktop-line {
    display: none !important;
  }

  .hero h1 .mobile-line {
    display: block;
  }

  .accent-line {
    margin: 26px 0 18px;
  }

  .hero-subhead {
    max-width: 310px;
    font-size: 20px;
  }

  .service-area-callout {
    align-items: flex-start;
    max-width: 300px;
    font-size: 16px;
  }

  .estimate-card {
    padding: 22px;
    margin-bottom: 72px;
  }

  .form-heading {
    justify-content: flex-start;
  }

  .proof-item {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 28px 18px;
  }

  .proof-icon {
    width: 64px;
    height: 64px;
  }

  .proof-icon svg {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 58px 18px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-grid img,
  .image-grid img:first-child {
    grid-row: auto;
    height: 260px;
  }

  .service-grid,
  .check-list,
  .planner-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }

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

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100vw - 24px);
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(17, 18, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--forest);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }
}

@media (max-width: 440px) {
  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: 33px;
  }

  .form-heading h2 {
    font-size: 25px;
  }

  .section h2 {
    font-size: 34px;
  }
}
