:root {
  --ink: #0b0b0b;
  --paper: #ffffff;
  --soft: #f4f1ea;
  --stone: #d8d4ca;
  --olive: #59624b;
  --copper: #9a6a4b;
  --muted: #69655d;
  --line: rgba(11, 11, 11, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Libre Franklin", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 154px;
  flex: 0 0 auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, 78svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04) 44%);
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0 clamp(46px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.updated {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  max-width: 850px;
  font-size: clamp(54px, 8vw, 116px);
}

h2 {
  max-width: 780px;
  font-size: clamp(38px, 5.4vw, 72px);
}

h3 {
  font-size: 18px;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 13px 19px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-white {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-outline {
  color: #fff;
  background: transparent;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.band {
  padding: clamp(64px, 9vw, 132px) clamp(18px, 4vw, 56px);
}

.band-light {
  background: var(--soft);
}

.band-ink {
  color: #fff;
  background: var(--ink);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(840px, 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.large-copy,
.notes p,
.final-cta p {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.band-ink .large-copy,
.band-ink .notes p {
  color: rgba(255, 255, 255, 0.72);
}

.answer-grid,
.proof-grid,
.page-grid,
.local-proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.answer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.answer-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.answer-card h3,
.pillar h3 {
  margin-bottom: 10px;
}

.answer-card p,
.pillar p,
.page-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pillar-list {
  display: grid;
  gap: 20px;
}

.pillar {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.pillar span {
  width: 28px;
  height: 2px;
  margin-top: 14px;
  background: var(--copper);
}

.seo-depth {
  padding-top: 0;
}

.seo-stack {
  display: grid;
  gap: 34px;
  margin-top: 42px;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.seo-section h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.seo-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.seo-section p + p {
  margin-top: 16px;
}

.local-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.local-proof-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.local-proof-grid h3 {
  margin-bottom: 10px;
}

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

.timely-list {
  display: grid;
  gap: 20px;
}

.timely-list p {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

figure {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.16;
}

figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.source-list {
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.source-list li + li {
  margin-top: 10px;
}

.source-list a {
  text-underline-offset: 4px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  padding: 12px 32px 0 0;
}

.page-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-card {
  display: block;
  min-width: 0;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
}

.page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-card span,
.page-card h3,
.page-card p {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.page-card span {
  margin-top: 18px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-card h3 {
  margin-top: 8px;
  line-height: 1.12;
}

.page-card p {
  margin-top: 10px;
  margin-bottom: 20px;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.stat-panel div {
  min-height: 140px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-panel strong {
  display: block;
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
}

.stat-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.local-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 38px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-strip ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--soft);
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-size: 14px;
  text-transform: none;
}

.final-cta {
  text-align: center;
  background: #fff;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .actions {
  justify-content: center;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

@media (max-width: 1120px) {
  .answer-grid,
  .page-grid,
  .local-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 70px 0 auto 0;
    display: none;
    margin: 0;
    padding: 16px 18px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .hero {
    min-height: 72svh;
    background-position: center top;
  }

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

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .split,
  .local-strip {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .answer-grid,
  .page-grid,
  .local-proof-grid,
  .seo-section {
    grid-template-columns: 1fr;
  }

  .answer-card {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-locations {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 128px;
  }

  .hero {
    min-height: 74svh;
  }

  .hero p:not(.eyebrow),
  .large-copy,
  .notes p,
  .final-cta p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .stat-panel {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 22px;
  }

  blockquote {
    font-size: 24px;
  }
}
