:root {
  --pine: #153b37;
  --pine-dark: #0d2624;
  --moss: #2f6257;
  --river: #83aaa4;
  --rust: #c8663d;
  --gold: #d6aa55;
  --cream: #f5f1e7;
  --paper: #fffdfa;
  --mist: #e6ece7;
  --ink: #162321;
  --muted: #64726e;
  --line: #cfd9d3;
  --white: #fff;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(15, 48, 44, .13);
}

* { 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.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; padding: 12px 18px; background: var(--white); }
.skip-link:focus { left: 14px; top: 14px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: -.038em;
}
h1 { max-width: 980px; margin-bottom: 28px; font-size: clamp(3.2rem, 7vw, 7rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.7vw, 4.8rem); }
h3 { font-size: 1.45rem; }
p { font-size: 1.04rem; }

.signal-bar { color: #e6f1ed; background: var(--pine-dark); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.signal-inner { display: flex; justify-content: space-between; gap: 24px; padding: 9px 0; }
.site-header {
  position: relative;
  z-index: 30;
  color: var(--ink);
  background: rgba(255, 253, 250, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-block {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pine);
  border-radius: 50% 50% 44% 56% / 52% 45% 55% 48%;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.12);
  font-family: Georgia, serif;
  font-size: .87rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-words { display: grid; gap: 1px; }
.brand-words strong { font-family: Georgia, serif; font-size: 1.02rem; }
.brand-words small { color: var(--muted); font-size: .69rem; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a, .dropdown-toggle {
  position: relative;
  padding: 14px 0;
  color: var(--ink);
  background: none;
  border: 0;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 750;
  cursor: pointer;
}
.main-nav > a:not(.nav-cta)::after, .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--rust);
  transition: .2s ease;
}
.main-nav > a:hover::after, .dropdown-toggle:hover::after { right: 0; }
.nav-cta {
  padding: 13px 18px !important;
  color: var(--white) !important;
  background: var(--pine);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav-cta:hover { background: var(--rust); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -24px;
  width: 300px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.dropdown-panel a { display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; font-size: .9rem; font-weight: 750; }
.dropdown-panel a:hover { color: var(--pine); background: var(--mist); }
.nav-dropdown.open .dropdown-panel { display: block; }
.nav-toggle { display: none; padding: 10px 14px; color: white; background: var(--pine); border: 0; border-radius: 999px; font-weight: 800; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button {
  min-height: 53px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--rust);
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(200, 102, 61, .2);
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ae5030; }
.button-light { color: var(--pine-dark); background: var(--cream); box-shadow: none; }
.button-light:hover { color: var(--pine-dark); background: var(--gold); }
.inline-link { display: inline-flex; gap: 9px; align-items: center; color: var(--pine); text-decoration: none; font-weight: 850; border-bottom: 1px solid currentColor; }
.inline-link:hover { color: var(--rust); }
.inline-link.light { color: var(--white); }
.micro-label, .section-code {
  display: block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.micro-label.light, .section-code.light { color: #c7dfd7; }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(214,170,85,.18), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #eef2ea 100%);
  border-bottom: 1px solid var(--line);
}
.ridge-lines {
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    repeating-radial-gradient(ellipse at 88% 20%, transparent 0 16px, rgba(21,59,55,.14) 17px 18px, transparent 19px 32px);
  pointer-events: none;
}
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; min-height: 610px; }
.hero-copy h1 { max-width: 760px; font-size: clamp(4rem, 7.8vw, 7.9rem); }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: #3d4d49; font-size: 1.2rem; }
.hero-blueprint {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
  border-radius: 44% 44% 18px 18px / 24% 24% 18px 18px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.mountain-sun { position: absolute; top: 55px; right: 70px; width: 94px; height: 94px; background: var(--gold); border-radius: 50%; opacity: .92; }
.mountain-layer { position: absolute; left: -10%; right: -10%; bottom: 0; clip-path: polygon(0 100%, 0 76%, 13% 59%, 24% 73%, 38% 37%, 50% 67%, 64% 43%, 79% 72%, 91% 50%, 100% 67%, 100% 100%); }
.layer-back { height: 60%; background: #5f8b7d; opacity: .68; }
.layer-mid { height: 48%; background: #2d665b; transform: translateY(35px); }
.layer-front { height: 36%; background: var(--pine-dark); transform: translateY(68px); }
.blueprint-screen {
  position: absolute;
  z-index: 3;
  top: 118px;
  left: 50%;
  width: 68%;
  min-height: 300px;
  padding: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  transform: translateX(-50%) rotate(-2.2deg);
}
.bp-nav { display: flex; gap: 6px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.bp-nav i { width: 8px; height: 8px; display: block; background: var(--rust); border-radius: 50%; }
.bp-content { padding: 24px 20px 14px; display: grid; gap: 11px; }
.bp-content span { display: block; height: 9px; background: #d9e1dc; border-radius: 99px; }
.bp-content .bp-kicker { width: 23%; height: 6px; background: var(--gold); }
.bp-content .bp-heading { width: 84%; height: 20px; background: var(--pine-dark); }
.bp-content .bp-heading.short { width: 61%; }
.bp-content .bp-copy { width: 92%; }
.bp-content .bp-copy.tiny { width: 73%; }
.bp-content .bp-button { width: 31%; height: 31px; margin-top: 8px; background: var(--rust); }
.bp-cards { padding: 0 20px 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bp-cards b { height: 48px; background: var(--cream); border: 1px solid var(--line); border-radius: 8px; }
.blueprint-note { position: absolute; z-index: 4; left: 34px; bottom: 24px; max-width: 280px; display: flex; align-items: center; gap: 13px; }
.blueprint-note strong { font-family: Georgia, serif; font-size: 2.8rem; line-height: .8; }
.blueprint-note span { font-size: .78rem; line-height: 1.3; }
.orange-stamp {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 18px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--pine-dark);
  background: var(--gold);
  border-radius: 50%;
  text-align: center;
  font-size: .7rem;
  font-weight: 950;
  line-height: 1.25;
  transform: rotate(8deg);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.metric-grid { position: relative; z-index: 2; margin-top: 72px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(21,59,55,.25); }
.metric-grid div { min-height: 90px; padding: 23px 20px; display: flex; gap: 13px; align-items: baseline; border-right: 1px solid rgba(21,59,55,.2); }
.metric-grid div:first-child { border-left: 1px solid rgba(21,59,55,.2); }
.metric-grid strong { color: var(--rust); font-family: Georgia, serif; font-size: 1.55rem; }
.metric-grid span { font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 105px 0; }
.section-sand { background: var(--cream); }
.section-ink { color: var(--white); background: var(--pine-dark); }
.section-head { margin-bottom: 56px; display: grid; grid-template-columns: 170px 1fr; gap: 52px; align-items: start; }
.section-head > div { max-width: 790px; }
.section-head p { max-width: 700px; color: var(--muted); font-size: 1.12rem; }
.section-ink .section-head p, .light-head p { color: #bfd0ca; }

.service-bento { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-tile {
  position: relative;
  min-height: 315px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15,48,44,.06);
}
.service-tile::after { content: ""; position: absolute; right: -62px; bottom: -68px; width: 170px; height: 170px; border: 34px solid rgba(21,59,55,.06); border-radius: 50%; }
.service-tile:nth-child(1) { color: white; background: var(--pine); }
.service-tile:nth-child(4) { color: white; background: var(--rust); }
.tile-top { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 900; letter-spacing: .11em; }
.service-tile h3 { max-width: 540px; margin: auto 0 18px; font-size: clamp(2rem, 3.2vw, 3.5rem); }
.service-tile h3 a { text-decoration: none; }
.service-tile p { max-width: 560px; margin-bottom: 24px; color: inherit; opacity: .83; }
.service-tile:nth-child(1) .inline-link, .service-tile:nth-child(4) .inline-link { color: white; }

.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.strategy-grid h2 { max-width: 620px; }
.strategy-copy > p { margin-bottom: 32px; color: #c3d2cd; font-size: 1.14rem; }
.slash-list { list-style: none; padding: 0; margin: 0; }
.slash-list li { position: relative; padding: 14px 0 14px 30px; border-top: 1px solid #35514d; }
.slash-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: .68rem; }
.slash-list.dark li { border-color: var(--line); }
.process-line { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process-line article { min-height: 245px; padding: 28px; background: rgba(255,255,255,.055); border: 1px solid #35514d; border-radius: 18px; }
.process-line span { color: var(--gold); font-weight: 900; }
.process-line h3 { margin: 45px 0 10px; color: white; font-size: 2.1rem; }
.process-line p { max-width: 260px; color: #c3d2cd; }
.process-line.vertical { margin-top: 0; grid-template-columns: 1fr; }
.process-line.vertical article { min-height: auto; padding: 24px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.process-line.vertical h3 { margin: 18px 0 8px; color: var(--ink); }
.process-line.vertical p { color: var(--muted); }

.town-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.town-row {
  min-height: 175px;
  padding: 25px;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: .2s ease;
}
.town-row:hover { transform: translateY(-5px); color: white; background: var(--pine); box-shadow: var(--shadow); }
.town-number { color: var(--rust); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 800; }
.town-main { display: grid; align-content: start; gap: 6px; }
.town-main strong { font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.05; }
.town-main small { color: var(--muted); }
.town-row:hover .town-main small { color: #c8d8d3; }
.town-action { grid-column: 2; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }

.project-stripe { padding: 74px 0; color: var(--pine-dark); background: var(--gold); }
.project-stripe-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 42px; align-items: end; }
.project-stripe h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 4rem); }
.project-stripe .section-code { color: var(--pine-dark); }
.price-block { display: grid; gap: 4px; }
.price-block span, .project-note { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-block strong { font-family: Georgia, serif; font-size: 3rem; }
.price-block a { font-weight: 900; }
.project-note { max-width: 260px; line-height: 1.5; }

.cta-panel { padding: 92px 0; color: white; background: var(--rust); }
.cta-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.cta-grid h2 { margin-bottom: 0; }
.cta-grid p { color: #ffe6da; font-size: 1.1rem; }
.cta-panel .micro-label { color: #ffe0d2; }

.page-hero, .service-hero, .city-hero, .local-service-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 92px;
  background:
    repeating-radial-gradient(ellipse at 92% 5%, transparent 0 22px, rgba(21,59,55,.075) 23px 24px, transparent 25px 44px),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero::after, .city-hero::after, .local-service-hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -170px;
  width: 620px;
  height: 370px;
  background: var(--pine);
  border-radius: 50% 50% 0 0;
  opacity: .08;
}
.page-hero .wrap > p { max-width: 760px; color: #4c5b57; font-size: 1.18rem; }
.page-hero .button { margin-top: 12px; }
.page-hero-grid .wrap { display: grid; grid-template-columns: 1fr; }
.breadcrumbs { margin-bottom: 55px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--rust); }

.service-hero-grid, .city-title-grid, .local-service-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.service-hero-grid h1, .city-title-grid h1, .local-service-grid h1 { font-size: clamp(3.6rem, 6.7vw, 7rem); }
.service-hero-grid > div > p, .city-title-grid > div > p, .local-service-grid > div > p { max-width: 700px; color: #43534f; font-size: 1.15rem; }
.service-hero-grid aside, .city-title-grid aside, .local-service-grid aside {
  position: relative;
  z-index: 2;
  padding: 34px;
  color: white;
  background: var(--pine);
  border-radius: 24px 24px 80px 24px;
  box-shadow: var(--shadow);
}
.service-hero-grid aside span, .city-title-grid aside span, .local-service-grid aside span { display: block; margin-bottom: 20px; color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.service-hero-grid aside strong { display: block; margin-bottom: 18px; font-family: Georgia, serif; font-size: 2.2rem; line-height: 1.05; }
.service-hero-grid aside p, .city-title-grid aside p, .local-service-grid aside p { color: #d2e0dc; }
.service-hero-grid aside a, .local-service-grid aside a { color: white; font-weight: 850; }
.service-index { display: inline-grid; width: 48px; height: 48px; place-items: center; margin-bottom: 20px; color: white; background: var(--rust); border-radius: 50%; font-weight: 900; }
.local-service-grid h2 { margin: -8px 0 24px; color: var(--rust); font-family: inherit; font-size: clamp(1.25rem, 2.1vw, 1.9rem); letter-spacing: -.01em; }

.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.feature-cell { min-height: 270px; padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.feature-cell span { color: var(--rust); font-size: .78rem; font-weight: 900; }
.feature-cell h3 { margin: 48px 0 14px; font-size: 2rem; }
.feature-cell p { color: var(--muted); }

.state-card { padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: var(--pine); border-radius: 30px; }
.state-card > div { max-width: 780px; }
.state-card span { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.state-card h2 { margin: 12px 0 16px; }
.state-card p { color: #cfddd8; }
.state-card > a { font-weight: 900; }

.local-context-grid, .local-story-grid, .about-grid, .contact-grid, .faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: start; }
.local-context-grid p { color: #c4d2ce; }
.local-story-grid { grid-template-columns: 1fr 1fr; }
.local-story-grid p { color: var(--muted); }
.info-ledger { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 46px; align-items: start; }
.info-ledger > div:first-child span { color: var(--rust); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.info-ledger h2 { margin-top: 15px; font-size: clamp(2rem,3.6vw,3.7rem); }
.info-ledger p { color: var(--muted); }
.nearby-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.nearby-links a { padding: 17px 18px; display: flex; justify-content: space-between; gap: 12px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; font-weight: 800; }
.nearby-links a:hover { color: white; background: var(--pine); }
.sibling-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sibling-services a { min-height: 120px; padding: 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; font-weight: 850; }
.sibling-services a:hover { color: white; background: var(--rust); }
.sibling-services a span { color: var(--rust); }
.sibling-services a:hover span { color: white; }

.faq-layout { grid-template-columns: .7fr 1.3fr; }
.faq-stack details { border-top: 1px solid var(--line); }
.faq-stack details:last-child { border-bottom: 1px solid var(--line); }
.faq-stack summary { position: relative; padding: 22px 46px 22px 0; list-style: none; cursor: pointer; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; }
.faq-stack summary::-webkit-details-marker { display: none; }
.faq-stack summary::after { content: "+"; position: absolute; right: 5px; top: 17px; color: var(--rust); font-family: inherit; font-size: 1.8rem; }
.faq-stack details[open] summary::after { content: "–"; }
.faq-stack details p { padding: 0 45px 22px 0; color: var(--muted); }

.portfolio-ledger { display: grid; gap: 28px; }
.portfolio-ledger article { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.portfolio-image { position: relative; min-height: 270px; padding: 24px; display: flex; justify-content: space-between; align-items: flex-start; color: white; overflow: hidden; border-radius: 22px; }
.portfolio-image::after { content: ""; position: absolute; width: 280px; height: 180px; right: -40px; bottom: -60px; background: rgba(255,255,255,.14); border-radius: 50% 50% 0 0; }
.portfolio-image span, .portfolio-image b { position: relative; z-index: 2; }
.p-one { background: var(--pine); }
.p-two { background: var(--rust); }
.p-three { background: #48756d; }
.portfolio-ledger h2 { font-size: clamp(2.1rem,3.8vw,3.7rem); }
.portfolio-ledger p { color: var(--muted); }

.pricing-ledger { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-ledger article { padding: 32px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.pricing-ledger article.featured { color: white; background: var(--pine); transform: translateY(-16px); }
.pricing-ledger article > strong { margin: 30px 0 24px; font-family: Georgia, serif; font-size: 3rem; }
.pricing-ledger article > div > span { color: var(--rust); font-size: .7rem; font-weight: 900; letter-spacing: .15em; }
.pricing-ledger .featured > div > span { color: var(--gold); }
.pricing-ledger article h2 { margin: 14px 0 15px; font-size: 2.2rem; }
.pricing-ledger article p { color: var(--muted); }
.pricing-ledger .featured p { color: #ceddd8; }
.pricing-ledger ul { margin: 0 0 30px; padding-left: 20px; flex: 1; }
.pricing-ledger .button { align-self: flex-start; }

.contact-grid { grid-template-columns: .85fr 1.15fr; }
.contact-lines { margin: 34px 0; display: grid; gap: 12px; }
.contact-lines a { padding: 19px; display: grid; gap: 4px; background: var(--cream); border-radius: 14px; text-decoration: none; }
.contact-lines span { color: var(--rust); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.contact-lines strong { font-size: 1.15rem; }
.contact-form { padding: 34px; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; background: var(--cream); border-radius: 24px; }
.contact-form label { display: grid; gap: 7px; font-size: .84rem; font-weight: 800; }
.contact-form label:nth-last-of-type(1), .contact-form label:nth-last-of-type(2) { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 44px 0 16px; font-size: 2.4rem; }
.legal-copy p { color: var(--muted); }
.template-note { margin-top: 28px; padding: 18px 20px; color: #73533f; background: #fbefd8; border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; font-size: .9rem; }

.site-footer { padding-top: 78px; color: #d4e2de; background: var(--pine-dark); }
.footer-lead { padding-bottom: 62px; display: flex; justify-content: space-between; align-items: end; gap: 40px; border-bottom: 1px solid #35514d; }
.footer-lead h2 { max-width: 760px; margin-bottom: 0; color: white; }
.footer-lead a { color: var(--gold); font-weight: 900; }
.footer-grid { padding: 58px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 45px; }
.footer-grid h3 { margin-bottom: 18px; color: white; font-family: inherit; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 9px 0; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { max-width: 330px; color: #afc2bc; }
.footer-brand { margin-bottom: 22px; color: white; }
.footer-phone { color: var(--gold); font-size: 1.25rem; font-weight: 900; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid #35514d; color: #93aaa3; font-size: .78rem; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: 100%; left: 20px; right: 20px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav > a, .dropdown-toggle { width: 100%; padding: 12px; text-align: left; }
  .dropdown-panel { position: static; width: 100%; box-shadow: none; }
  .nav-cta { justify-content: center; }
  .hero-layout, .service-hero-grid, .city-title-grid, .local-service-grid, .strategy-grid, .cta-grid, .local-context-grid, .local-story-grid, .about-grid, .contact-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-layout { min-height: auto; }
  .hero-blueprint { min-height: 480px; }
  .section-head { grid-template-columns: 130px 1fr; }
  .town-list { grid-template-columns: repeat(2,1fr); }
  .project-stripe-grid, .info-ledger { grid-template-columns: 1fr 1fr; }
  .project-note { grid-column: 1 / -1; }
  .pricing-ledger { grid-template-columns: 1fr; }
  .pricing-ledger article.featured { transform: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  h1 { font-size: clamp(3rem, 16vw, 5.3rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .signal-inner span:last-child { display: none; }
  .nav-shell { min-height: 78px; }
  .brand-block { width: 46px; height: 46px; }
  .brand-words strong { font-size: .91rem; }
  .brand-words small { font-size: .59rem; }
  .home-hero { padding-top: 54px; }
  .hero-copy h1 { font-size: clamp(3.3rem, 17vw, 5.8rem); }
  .hero-blueprint { min-height: 420px; border-radius: 34% 34% 18px 18px / 17% 17% 18px 18px; }
  .blueprint-screen { top: 106px; width: 82%; min-height: 260px; }
  .blueprint-note { left: 20px; max-width: 210px; }
  .orange-stamp { width: 82px; height: 82px; font-size: .61rem; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .metric-grid div:nth-child(3) { border-left: 1px solid rgba(21,59,55,.2); }
  .section { padding: 76px 0; }
  .section-head { grid-template-columns: 1fr; gap: 15px; margin-bottom: 38px; }
  .service-bento, .feature-grid, .town-list, .process-line, .nearby-links, .sibling-services { grid-template-columns: 1fr; }
  .service-tile { min-height: 285px; }
  .project-stripe-grid, .info-ledger, .footer-grid { grid-template-columns: 1fr; }
  .project-note, .footer-grid > div:last-child { grid-column: auto; }
  .footer-lead { align-items: start; flex-direction: column; }
  .footer-bottom { padding-bottom: 82px; flex-direction: column; }
  .portfolio-ledger article { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .contact-form label:nth-last-of-type(1), .contact-form label:nth-last-of-type(2) { grid-column: auto; }
  .state-card { align-items: flex-start; flex-direction: column; }
  .service-hero-grid aside, .city-title-grid aside, .local-service-grid aside { border-radius: 20px 20px 60px 20px; }
  .mobile-call { display: block; position: fixed; z-index: 60; left: 14px; right: 14px; bottom: 12px; padding: 14px 18px; color: white; background: var(--rust); border-radius: 999px; text-align: center; text-decoration: none; font-weight: 900; box-shadow: 0 16px 40px rgba(0,0,0,.22); }
}

.hidden-field { position: absolute !important; left: -9999px !important; }

.hero-art-band { width: 100%; margin: 0; padding: 0; line-height: 0; overflow: hidden; }
.hero-art-band svg.hero-art { display: block; width: 100%; height: clamp(180px, 26vw, 340px); }
@media (max-width: 720px) { .hero-art-band svg.hero-art { height: 190px; } }
