:root {
  --pine-950: #102a21;
  --pine-900: #173d2f;
  --pine-800: #245540;
  --pine-100: #dfece5;
  --clay-600: #c85d2e;
  --clay-500: #df713d;
  --clay-100: #fae7dc;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --ink: #17231d;
  --muted: #5b6861;
  --line: #d8ded9;
  --white: #ffffff;
  --success: #176b45;
  --danger: #a12d25;
  --shadow-sm: 0 8px 22px rgba(16, 42, 33, .09);
  --shadow-lg: 0 24px 65px rgba(16, 42, 33, .15);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shell: 1180px;
  --font-display: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--pine-800); text-underline-offset: 3px; }
a:hover { color: var(--clay-600); }
button, input, select, textarea { font: inherit; }
button, .button, input, select { min-height: 44px; }
button, .button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--clay-500); outline-offset: 3px; }
::selection { background: var(--clay-100); color: var(--ink); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--compact { padding: clamp(44px, 6vw, 78px) 0; }
.section--cream { background: var(--cream); }
.section--pine { background: var(--pine-950); color: var(--white); }
.section--paper { background: var(--paper); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section--pine .eyebrow { color: #f2a47e; }
h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 6.6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.15em; }
.lede { max-width: 700px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.section--pine .lede { color: #d6e1da; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.skip-link:focus { transform: translateY(0); }
.utility-bar { background: var(--pine-950); color: #dce8e1; font-size: .83rem; }
.utility-bar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar a { color: var(--white); font-weight: 700; }
.site-header { position: relative; z-index: 100; background: rgba(255, 253, 248, .98); border-bottom: 1px solid var(--line); }
.header-main { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10%;
  background: var(--clay-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  transform: rotate(-3deg);
}
.brand__text { display: grid; line-height: 1; }
.brand__text strong { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: -.03em; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { margin-left: auto; }
.menu { margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; list-style: none; }
.menu a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 12px; color: var(--ink); font-size: .9rem; font-weight: 750; text-decoration: none; border-radius: var(--radius-sm); }
.menu a:hover, .menu .current-menu-item > a { background: var(--pine-100); color: var(--pine-950); }
.nav-toggle { display: none; margin-left: auto; border: 0; background: transparent; color: var(--ink); }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { width: 22px; height: 2px; display: block; background: currentColor; content: ""; transition: transform .2s ease; }
.nav-toggle__bars { position: relative; margin-left: 9px; }
.nav-toggle__bars::before { position: absolute; top: -7px; }
.nav-toggle__bars::after { position: absolute; top: 7px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--clay-500);
  color: var(--white);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 0 #9f3d1b;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(2px); background: var(--clay-600); color: var(--white); box-shadow: 0 4px 0 #8e3617; }
.button--header { padding-inline: 18px; min-height: 44px; }
.button--outline { border-color: var(--pine-800); background: transparent; color: var(--pine-950); box-shadow: none; }
.button--outline:hover { background: var(--pine-950); color: var(--white); box-shadow: none; }
.button--light { background: var(--white); color: var(--pine-950); box-shadow: 0 7px 0 #aab9b0; }
.button--light:hover { background: var(--cream); color: var(--pine-950); box-shadow: 0 4px 0 #8ea196; }
.button--full { width: 100%; }
.text-link { font-weight: 800; text-decoration-thickness: 2px; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before { position: absolute; inset: 0 0 0 auto; width: 42%; background: var(--pine-900); content: ""; }
.hero::after { position: absolute; inset: 0 auto 0 0; width: 58%; background: linear-gradient(90deg, rgba(247,243,234,.84), rgba(247,243,234,.72)), url("../photos/fayetteville-service-map.png") center center / cover no-repeat; content: ""; }
.hero__grid { position: relative; z-index: 1; min-height: 710px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .76fr); gap: clamp(44px, 7vw, 92px); align-items: center; padding-block: 72px; }
.hero__copy { padding-block: 24px; }
.hero__copy h1 { max-width: 770px; }
.hero__copy .lede { margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__micro { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: .88rem; font-weight: 700; }
.hero__micro span::before { content: "\2014"; margin-right: 8px; color: var(--clay-500); }
.hero__form { position: relative; z-index: 2; }
.quote-panel { background: var(--white); color: var(--ink); border: 1px solid rgba(16, 42, 33, .12); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.quote-panel__heading { padding: 30px 32px 12px; }
.quote-panel__heading h2 { font-size: clamp(1.85rem, 3vw, 2.55rem); }
.quote-panel__heading p:last-child { color: var(--muted); font-size: .94rem; }
.quote-form { padding: 8px 32px 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label, .consent { font-size: .85rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #b9c4bd;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pine-800); box-shadow: 0 0 0 3px var(--pine-100); outline: 0; }
.consent { margin: 18px 0; color: var(--muted); font-weight: 600; line-height: 1.45; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-fineprint { margin: 16px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.form-status:empty { display: none; }
.submission-splash { min-height: 68vh; display: grid; place-items: center; padding: clamp(64px, 10vw, 120px) 24px; background: var(--cream); }
.submission-card { width: min(720px, 100%); padding: clamp(36px, 7vw, 72px); background: var(--white); border: 1px solid rgba(16, 42, 33, .12); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; }
.submission-card .lede { margin-inline: auto; }
.notice { margin: 0 32px 12px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 700; }
.notice--success { background: #e4f4eb; color: var(--success); }
.notice--error { background: #f9e3e1; color: var(--danger); }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 110px; padding: 23px 28px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.trust-item:last-child { border-right: 0; }
.trust-item__number { color: var(--clay-600); font-family: var(--font-display); font-size: 2rem; font-weight: 900; }
.trust-item strong { display: block; line-height: 1.2; }
.trust-item small { color: var(--muted); }

.photo-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 2px dashed #9caf9f;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, rgba(223,236,229,.5), rgba(223,236,229,.5) 14px, rgba(246,242,232,.7) 14px, rgba(246,242,232,.7) 28px);
  color: var(--pine-800);
  text-align: center;
}
.photo-placeholder strong { display: block; margin-bottom: 6px; font-family: var(--font-display); font-size: 1.1rem; }
.photo-placeholder small { max-width: 370px; color: var(--muted); }
.photo-placeholder--hero { min-height: 490px; }
.photo-placeholder--wide { min-height: 420px; }
.photo-placeholder--small { min-height: 210px; }

.site-photo {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--pine-100);
  box-shadow: var(--shadow-sm);
}
.site-photo__image {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.site-photo--hero,
.site-photo--hero .site-photo__image { min-height: 490px; height: 490px; }
.site-photo--wide,
.site-photo--wide .site-photo__image { min-height: 420px; height: 420px; }
.site-photo--small,
.site-photo--small .site-photo__image { min-height: 210px; height: 210px; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.check-list { margin: 24px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; top: .36em; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--pine-100); color: var(--pine-900); content: "\2713"; font-size: .74rem; font-weight: 900; }

.service-index { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { min-height: 265px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-card:nth-child(n+5) { grid-column: span 4; }
.service-card__num { color: var(--clay-500); font-family: var(--font-display); font-size: .86rem; font-weight: 900; letter-spacing: .08em; }
.service-card h3 { margin-top: auto; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card a { align-self: flex-start; margin-top: 8px; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.22); }
.process__step { counter-increment: steps; min-height: 260px; padding: 40px 34px; border-right: 1px solid rgba(255,255,255,.22); }
.process__step:last-child { border-right: 0; }
.process__step::before { display: block; margin-bottom: 50px; color: #f2a47e; content: "0" counter(steps); font-family: var(--font-display); font-size: 1rem; font-weight: 900; }
.process__step p { color: #cfdcd4; }

.audience-row { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
.audience { min-height: 250px; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.audience:first-child { background: var(--clay-100); border-color: #edc4af; }
.audience p { color: var(--muted); }

.area-band { background: var(--clay-500); color: var(--pine-950); }
.area-band__grid { min-height: 360px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.area-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; list-style: none; font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 800; }
.area-list li { display: flex; gap: 12px; align-items: flex-start; }
.area-list li::before { width: 9px; height: 9px; margin-top: .55em; flex: 0 0 9px; border-radius: 50%; background: currentColor; content: ""; }

.faq-list { max-width: 860px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--clay-600); font-size: 1.7rem; }
details[open] summary::after { content: "\2013"; }
details p { max-width: 720px; padding: 0 46px 22px 0; color: var(--muted); }

.page-hero { padding: clamp(70px, 10vw, 132px) 0 64px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero__inner { max-width: 930px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: .82rem; font-weight: 750; }
.breadcrumbs a { color: inherit; }
.content-shell { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.entry-content > * + * { margin-top: 1.3em; }
.entry-content h2 { margin-top: 1.6em; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.detail-panel { padding: 32px; border-top: 5px solid var(--clay-500); background: var(--cream); }
.detail-panel ul { margin: 18px 0 0; padding-left: 20px; }
.detail-panel li + li { margin-top: 8px; }
.callout { padding: 28px 30px; border-radius: var(--radius-md); background: var(--pine-100); }
.callout h3 { font-size: 1.35rem; }

.price-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-factor { min-height: 210px; padding: 30px; background: var(--white); }
.price-factor span { color: var(--clay-600); font-family: var(--font-display); font-size: 2.3rem; font-weight: 900; }

.site-footer { padding-top: 70px; background: var(--pine-950); color: #d7e1db; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr; gap: 70px; padding-bottom: 60px; }
.brand--footer { color: var(--white); }
.brand--footer:hover { color: var(--white); }
.brand--footer .brand__text small { color: #aebfb5; }
.footer-note { max-width: 460px; margin-top: 22px; color: #aebfb5; font-size: .9rem; }
.footer-title { color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { margin: 18px 0 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.site-footer a { color: var(--white); }
.site-footer .button--light { color: var(--pine-950); }
.site-footer .button--light:hover { color: var(--pine-950); }
.footer-bottom { min-height: 70px; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #9caf9f; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 20px; }

.post-list { display: grid; gap: 20px; }
.post-card { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.error-404 { min-height: 62vh; display: grid; place-items: center; text-align: center; }

@media (max-width: 1100px) {
  .button--header { display: none; }
  .header-main { gap: 16px; }
  .menu a { padding-inline: 8px; font-size: .84rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: 40px; }
  .trust-item { padding-inline: 18px; }
}

@media (max-width: 960px) {
  body.menu-open { overflow: hidden; }
  .utility-bar__inner span:first-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .primary-nav { position: absolute; inset: calc(100% - 1px) 0 auto; display: none; margin: 0; padding: 18px 20px 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .primary-nav.is-open { display: block; }
  .menu { width: min(100%, var(--shell)); margin-inline: auto; display: grid; gap: 2px; }
  .menu a { width: 100%; padding: 12px; font-size: 1rem; }
  .hero::before { display: none; }
  .hero::after { width: 100%; height: 52%; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 62px; }
  .hero__form { max-width: 720px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .area-band__grid { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .process { grid-template-columns: 1fr; }
  .process__step { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .process__step:last-child { border-bottom: 0; }
  .process__step::before { margin-bottom: 24px; }
  .audience-row { grid-template-columns: 1fr 1fr; }
  .audience:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .shell, .content-shell { width: min(calc(100% - 28px), var(--shell)); }
  .utility-bar__inner { min-height: 42px; }
  .utility-bar__inner span:first-child { display: none; }
  .utility-bar__inner { justify-content: center; }
  .header-main { min-height: 72px; }
  .brand__mark { width: 40px; height: 40px; }
  .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  h1 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .hero__grid { min-height: 0; padding-block: 48px; }
  .hero__copy { padding: 28px 18px; background: rgba(247,243,234,.72); border-radius: var(--radius-md); backdrop-filter: blur(2px); }
  .quote-panel__heading, .quote-form { padding-inline: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__micro { display: grid; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .photo-placeholder { min-height: 250px; }
  .photo-placeholder--hero { min-height: 340px; }
  .site-photo,
  .site-photo__image { min-height: 250px; height: 250px; }
  .site-photo--hero,
  .site-photo--hero .site-photo__image { min-height: 340px; height: 340px; }
  .site-photo--wide,
  .site-photo--wide .site-photo__image { min-height: 300px; height: 300px; }
  .site-photo--small,
  .site-photo--small .site-photo__image { min-height: 210px; height: 210px; }
  .service-index { display: grid; grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: auto; min-height: 230px; }
  .audience-row { grid-template-columns: 1fr; }
  .audience:first-child { grid-column: auto; }
  .area-band__grid { min-height: 0; gap: 30px; padding-block: 56px; }
  .area-list { grid-template-columns: 1fr; }
  .service-detail-grid, .price-factors { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { padding-block: 22px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}



