@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --green: #214b3b;
  --green-2: #17372c;
  --sage: #9aae9f;
  --stone: #f6f2ea;
  --paper: #fffaf0;
  --brass: #b08a4a;
  --graphite: #242826;
  --muted: #66716a;
  --line: rgba(36, 40, 38, .14);
  --shadow: 0 22px 70px rgba(23, 55, 44, .16);
  --font-body: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--stone);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 68px);
  background: rgba(246, 242, 234, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-logo {
  width: min(330px, 56vw);
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--green);
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-2);
  border-color: var(--green-2);
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #fff;
  background: var(--green);
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: clamp(46px, 6vw, 82px) clamp(20px, 5vw, 68px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 24, 20, .86) 0%, rgba(15, 24, 20, .66) 43%, rgba(15, 24, 20, .22) 100%),
    var(--hero-image) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(15, 24, 20, .66), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 0 clamp(28px, 4vw, 44px);
}

.hero-copy .eyebrow {
  color: #d8c79f;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--green);
  font-size: clamp(43px, 6vw, 72px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.4vw, 66px);
}

.intro {
  max-width: 650px;
  margin: 26px 0 34px;
  color: #3d4540;
  font-size: clamp(18px, 2vw, 22px);
}

.hero .intro {
  max-width: 620px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero-actions,
.choice-row,
.service-cta,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--green);
  background: rgba(255, 250, 240, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .button {
  border-color: #fff;
  background: #fff;
  color: var(--green);
}

.hero .button:hover,
.hero .button:focus-visible {
  border-color: #d8c79f;
  background: #d8c79f;
  color: #10241c;
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .74);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  color: var(--green);
  background: #fff;
}

.hero .trust-strip span {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.hero-proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 250, 240, .96);
  color: var(--graphite);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, .18);
}

.hero-proof-strip div {
  min-height: 88px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.hero-proof-strip div:last-child {
  border-right: 0;
}

.hero-proof-strip span {
  display: block;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.08;
}

.visual-grid img,
.quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 68px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .65fr);
  gap: 40px;
  align-items: end;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-head h2,
.question-box h2,
.about-card h2,
.contact-cta h2,
.standard-page h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4vw, 58px);
}

.intro-band > p,
.section-head p,
.question-box p,
.about-card p,
.contact-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 760px;
}

.section-head p {
  max-width: 430px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 24px;
}

.service-tabs {
  display: grid;
  gap: 10px;
}

.tab,
.choice {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .68);
  color: var(--graphite);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.tab {
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  text-align: left;
}

.tab:hover,
.tab[aria-selected="true"] {
  color: white;
  background: var(--green);
  transform: translateX(4px);
}

.service-detail,
.question-box,
.answer-box,
.about-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-detail {
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.service-detail::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 46%;
  height: 55%;
  background:
    linear-gradient(90deg, rgba(33, 75, 59, .13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(33, 75, 59, .13) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .8;
}

.service-detail h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(31px, 4vw, 52px);
}

.service-detail p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #3f4842;
  font-size: 19px;
}

.service-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.service-points li {
  padding: 16px;
  background: white;
  border-left: 4px solid var(--brass);
  font-weight: 800;
}

.service-cta {
  position: relative;
  z-index: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--green);
  font-weight: 900;
}

.process {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--stone);
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--brass);
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 28px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.featured-work {
  background: #fff;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  grid-template-areas:
    "main copy"
    "main stack";
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
}

.feature-main,
.feature-stack figure,
.quote-visual {
  margin: 0;
}

.feature-main {
  grid-area: main;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--green);
}

.feature-main img,
.feature-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-main figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 560px;
  padding: 18px 20px;
  background: rgba(255, 250, 240, .94);
  color: var(--green);
  font-weight: 900;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: copy;
  min-height: 380px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--stone);
  border: 1px solid var(--line);
}

.feature-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(36px, 4.8vw, 64px);
}

.feature-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: #3f4842;
  font-size: 18px;
}

.feature-copy .button {
  width: fit-content;
}

.feature-stack {
  grid-area: stack;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-stack figure {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  background: var(--green);
}

.feature-stack figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(24, 28, 26, .82);
  color: #fff;
  font-weight: 900;
}

.fit,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: stretch;
}

.question-box,
.answer-box,
.about-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
}

.question-box p {
  margin: 16px 0 24px;
}

.choice {
  min-height: 46px;
  padding: 0 16px;
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.choice:hover,
.choice.active {
  color: white;
  background: var(--green);
  transform: translateY(-2px);
}

.answer-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: var(--green);
}

.answer-box span {
  color: #d9e0dc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.answer-box strong {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.answer-box p {
  margin: 18px 0 0;
  color: #edf3ef;
  font-size: 17px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.quote-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4vw, 58px);
}

.quote-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.quote-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.quote-proof div {
  min-height: 116px;
  padding: 18px;
  background: var(--stone);
}

.quote-proof strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.quote-proof span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quote-reasons {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quote-reasons li {
  position: relative;
  padding: 12px 14px 12px 34px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 800;
}

.quote-reasons li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 999px;
}

.visual-work {
  background: #fff;
}

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

.visual-grid article {
  display: grid;
  grid-template-rows: 320px minmax(0, auto);
  background: var(--stone);
  border: 1px solid var(--line);
  overflow: hidden;
}

.visual-grid article.wide {
  grid-column: span 2;
  grid-row: span 2;
  grid-template-rows: 560px minmax(0, auto);
}

.visual-grid div {
  padding: 20px;
}

.visual-grid span {
  display: block;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.visual-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.35;
}

.quote-card {
  padding: clamp(20px, 2.6vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(23, 55, 44, .12);
}

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

.quote-form-header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.quote-form-header span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-form-header strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1.1;
}

.quote-form-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quote-visual {
  margin: 28px 0 0;
  background: #fff;
  border: 1px solid var(--line);
}

.quote-visual img {
  aspect-ratio: 4 / 3;
}

.quote-visual figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quote-step {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(36, 40, 38, .12);
}

.quote-step-final {
  background: #fff;
  border-color: rgba(33, 75, 59, .24);
}

.step-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.step-head > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.step-head strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.15;
}

.step-head small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 900;
}

.quote-form span,
.quote-form small {
  display: block;
}

.quote-form small {
  color: var(--muted);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(36, 40, 38, .22);
  background: #fff;
  color: var(--graphite);
  font: inherit;
  font-size: 16px;
  border-radius: 0;
}

.quote-form textarea {
  min-height: 138px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(33, 75, 59, .18);
  border-color: var(--green);
}

.quote-form input[type="file"] {
  padding: 10px;
  background: rgba(255, 250, 240, .7);
}

.quote-details {
  border: 1px solid rgba(36, 40, 38, .14);
  background: var(--stone);
}

.quote-details summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--green);
  font-weight: 900;
}

.quote-details[open] {
  padding-bottom: 16px;
}

.quote-details[open] summary {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.quote-details .form-grid,
.quote-details .check-grid,
.quote-details .full-field {
  margin-left: 16px;
  margin-right: 16px;
}

.quote-details .check-grid,
.quote-details .full-field {
  margin-top: 14px;
}

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

.option-card,
.check-card {
  position: relative;
  display: block;
  color: var(--graphite);
}

.option-card input,
.check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card-body,
.check-card span {
  display: block;
  height: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid rgba(36, 40, 38, .16);
  color: var(--graphite);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.option-card-body strong {
  display: block;
  color: var(--green);
  font-size: 16px;
  line-height: 1.25;
}

.option-card-body small {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
}

.option-card input:checked + .option-card-body,
.check-card input:checked + span {
  border-color: var(--green);
  background: #fffaf0;
  box-shadow: inset 0 0 0 2px rgba(33, 75, 59, .12);
}

.option-card:hover .option-card-body,
.check-card:hover span,
.option-card:focus-within .option-card-body,
.check-card:focus-within span {
  transform: translateY(-1px);
  border-color: rgba(33, 75, 59, .45);
}

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

.check-card span {
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.full-field {
  grid-column: 1 / -1;
}

.consent-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--graphite);
  font-weight: 700;
}

.consent-row input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

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

.quote-privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-alert {
  margin: 0 0 16px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--graphite);
  font-weight: 800;
}

.form-alert.success {
  border-left: 5px solid var(--green);
}

.form-alert.error {
  border-left: 5px solid #9b1c1c;
}

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

.area {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.area:hover {
  color: white;
  background: var(--green);
  transform: translateY(-2px);
}

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

.about-card p {
  margin-top: 20px;
}

.about-proof {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.about-proof div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
  background: var(--green);
  color: white;
}

.about-proof strong {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.about-proof span {
  margin-top: 12px;
  color: #d9e0dc;
  font-weight: 800;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 68px);
  background: var(--graphite);
  color: white;
}

.location-hero {
	padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 68px);
	background:
    linear-gradient(90deg, rgba(246, 242, 234, .95), rgba(246, 242, 234, .78)),
    linear-gradient(90deg, rgba(33, 75, 59, .1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(33, 75, 59, .1) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
	border-bottom: 1px solid var(--line);
}

.photo-location-hero {
	background:
		linear-gradient(90deg, rgba(246, 242, 234, .98), rgba(246, 242, 234, .82) 48%, rgba(246, 242, 234, .55)),
		var(--location-image) center / cover no-repeat;
}

.location-hero h1 {
	max-width: 880px;
}

.location-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 32px;
  color: #3d4540;
  font-size: clamp(18px, 2vw, 22px);
}

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

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

.location-card,
.city-service-grid article {
	min-height: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	color: inherit;
	overflow: hidden;
	text-decoration: none;
	transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.location-card:hover {
	background: white;
	box-shadow: 0 20px 50px rgba(23, 55, 44, .12);
	transform: translateY(-3px);
}

.location-card-image,
.city-service-photo img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.location-card-copy,
.city-service-copy {
	padding: 22px;
}

.location-card span {
	display: block;
	margin-bottom: 10px;
	color: var(--brass);
	font-size: 13px;
	font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-card strong,
.city-service-grid h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
}

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

.city-service-grid article {
	display: flex;
	flex-direction: column;
	background: #fff;
}

.city-service-photo {
	margin: 0;
	background: var(--green);
}

.city-service-copy {
	flex: 1;
}

.service-seo-block,
.local-intent-block {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .6fr);
  gap: 34px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-seo-block h2,
.local-intent-block h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4vw, 58px);
}

.service-seo-block p,
.local-intent-block p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-seo-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-seo-block li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
}

.contact-cta h2 {
  color: white;
}

.contact-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: #d8d8d2;
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 68px) 28px;
  background: #181c1a;
  color: white;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 520px);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.footer-brand img {
  width: min(300px, 100%);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .18);
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: #cbd2cd;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-columns h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 18px;
}

.footer-columns a {
	display: block;
	margin: 8px 0;
	color: #cbd2cd;
	text-decoration: none;
}

.social-share strong {
	display: block;
	color: #cbd2cd;
	font-size: 14px;
	font-weight: 800;
}

.social-profiles {
	margin-top: 18px;
}

.social-profiles strong {
	display: block;
	color: #cbd2cd;
	font-size: 14px;
	font-weight: 800;
}

.share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, .22);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.share-link:hover,
.share-link:focus-visible {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .48);
	transform: translateY(-1px);
}

.footer-columns .share-link {
	margin: 0;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #cbd2cd;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  font-weight: 900;
}

.page-shell {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 68px);
}

.standard-page {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-content {
  max-width: 760px;
  margin-top: 24px;
}

.page-fallback {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.fallback-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.page-fallback .intro {
  margin: 22px 0 26px;
}

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

.fallback-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  background: var(--stone);
  border-left: 4px solid var(--brass);
  color: var(--green);
  font-weight: 900;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fallback-photo {
  min-height: 420px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.fallback-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 14px;
  background: rgba(255, 250, 240, .94);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.reveal {
	opacity: 1;
	transform: none;
}

.js-enabled .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .65s ease, transform .65s ease;
}

.js-enabled .reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.site-header {
		align-items: flex-start;
		flex-wrap: wrap;
	}

  .primary-nav {
    gap: 16px;
  }

	.nav-call {
		padding-inline: 14px;
	}

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

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .site-logo {
    width: min(300px, calc(100vw - 100px));
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    width: 100%;
    padding-top: 16px;
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero,
  .intro-band,
  .fit,
  .about-section,
  .quote-section,
  .page-fallback {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 92px;
    padding-bottom: 24px;
    background-position: center top;
  }

  .hero-copy {
    padding-bottom: 56px;
  }

  .hero-proof-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
  }

  .hero-proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof-strip div:last-child {
    border-bottom: 0;
  }

  .feature-story {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "copy"
      "stack";
  }

  .feature-main {
    min-height: 500px;
  }

  .quote-copy {
    position: static;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-tabs,
  .process-grid,
  .visual-grid,
  .footer-columns,
  .location-grid,
  .city-service-grid {
    grid-template-columns: 1fr;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .visual-grid article.wide {
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: 320px minmax(0, auto);
  }

  .contact-cta,
  .footer-brand,
  .service-seo-block,
  .local-intent-block {
    display: block;
  }

  .contact-actions,
  .footer-brand p {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .feature-main {
    min-height: 390px;
  }

  .feature-main figcaption {
    position: static;
    max-width: none;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .feature-stack figure {
    min-height: 260px;
  }

  .visual-grid article {
    grid-template-rows: 240px minmax(0, auto);
  }

  .section-head,
  .footer-bottom {
    display: block;
  }

  .form-grid,
  .quote-proof,
  .option-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .section-head p,
  .footer-bottom a {
    display: block;
    margin-top: 14px;
  }

  .button {
    width: 100%;
  }

  .fallback-list {
    grid-template-columns: 1fr;
  }

  .fallback-photo {
    min-height: 320px;
  }
}
