:root {
  --yellow: #f5d000;
  --yellow-deep: #d8b300;
  --ink: #111111;
  --charcoal: #333333;
  --paper: #f7f5f2;
  --paper-warm: #f1ede6;
  --line: #d9d4cc;
  --white: #fffdf8;
  --max: 1180px;
  --heading: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-road-image: url("assets/hero-road-light.jpg");
}

@supports (background-image: image-set(url("assets/hero-road-light.webp") type("image/webp"))) {
  :root {
    --hero-road-image: image-set(
      url("assets/hero-road-light.avif") type("image/avif"),
      url("assets/hero-road-light.webp") type("image/webp"),
      url("assets/hero-road-light.jpg") type("image/jpeg")
    );
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 7rem 7rem, auto;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

img,
svg,
picture {
  display: block;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.75rem 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 7.8rem;
  background: rgba(247, 245, 242, 0.9);
  border-bottom: 1px solid rgba(217, 212, 204, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(8rem, 12vw, 9.5rem);
  height: auto;
  display: block;
}

.footer-brand-logo {
  width: 9.4rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-family: var(--heading);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  transform: translateY(-0.42rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.42rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(90deg);
}

.site-nav a,
.header-action,
.button,
.project-link {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.85rem 1.35rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.header-action,
.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.header-action:hover,
.button-primary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover,
.button-dark:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: min(660px, calc(100vh - 10rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(247, 245, 242, 0.98) 33%, rgba(247, 245, 242, 0.7) 51%, rgba(247, 245, 242, 0.12) 78%),
    var(--hero-road-image) right top / min(86rem, 84vw) auto no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.4rem, 4vw, 3.8rem) 0 clamp(1.2rem, 2.5vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--heading);
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after,
.section-heading h2::after,
.story-copy h2::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.hero h1,
.mission-copy h2,
.clarity-map-promo-copy h2,
.map-hero h1,
.thanks-hero h1,
.privacy-hero h1,
.map-section h2,
.section-heading h2,
.story-copy h2,
.approach h2,
.contact-cta h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 19.5ch;
  font-size: clamp(3.6rem, 6.6vw, 6.2rem);
}

.hero-lede {
  max-width: 35rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.section,
.section-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

section[id] {
  scroll-margin-top: 9.5rem;
}

.section-band {
  background: rgba(241, 237, 230, 0.74);
  border-block: 1px solid var(--line);
}

.pillars {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.pillars-grid,
.audience-inner,
.clarity-map-promo-inner,
.map-hero-inner,
.thanks-hero-inner,
.map-section-inner,
.mission-inner,
.process-inner,
.project-grid,
.approach-inner,
.service-list,
.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.audience {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.audience-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.audience-copy h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.85rem, 5.2vw, 4.7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.audience-copy h2::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.audience-copy p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: 1.04rem;
}

.recognition-grid {
  display: grid;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.recognition-grid article {
  display: grid;
  grid-template-columns: 3.6rem minmax(9rem, 0.58fr) 1fr;
  gap: clamp(0.9rem, 2.4vw, 1.8rem);
  align-items: start;
  padding: clamp(1.15rem, 3vw, 1.55rem) 0;
  border-top: 1px solid var(--line);
}

.recognition-grid article:first-child {
  border-top: 0;
}

.recognition-grid .card-icon {
  margin-top: -0.15rem;
}

.recognition-grid h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.recognition-grid p {
  margin: 0;
  color: var(--charcoal);
}

.clarity-map-promo {
  background:
    linear-gradient(rgba(217, 212, 204, 0.48) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 4.6rem;
  border-bottom: 1px solid var(--line);
}

.clarity-map-promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(17rem, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.clarity-map-promo-copy h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.7vw, 5.2rem);
}

.clarity-map-promo-copy h2::after,
.map-section h2::after,
.map-hero h1::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.clarity-map-promo-copy p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.05rem 0 0;
  color: var(--charcoal);
  font-size: 1.04rem;
}

.clarity-map-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 1.35rem;
}

.clarity-map-promo-preview,
.map-hero-preview {
  display: block;
  justify-self: center;
  width: min(100%, 24rem);
}

.clarity-map-promo-preview picture,
.map-hero-preview picture {
  width: 100%;
}

.clarity-map-promo-preview img,
.map-hero-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 0.65rem 0.65rem 0 var(--yellow);
  transform: rotate(1.2deg);
}

.clarity-map-promo-preview:hover img {
  transform: rotate(0deg) translateY(-2px);
}

.mission {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
  border-block: 2px solid var(--ink);
}

.mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.mission-copy h2 {
  max-width: 12ch;
  color: var(--paper);
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
}

.mission-copy p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: rgba(247, 245, 242, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.mission .eyebrow::after {
  background: var(--yellow);
}

.mission-beliefs {
  display: grid;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid rgba(247, 245, 242, 0.35);
}

.mission-beliefs p {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.35rem) 0;
  border-top: 1px solid rgba(247, 245, 242, 0.22);
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.mission-beliefs p:first-child {
  border-top: 0;
}

.mission-beliefs p:last-child {
  color: var(--yellow);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

.pillar {
  padding: 0 2rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.pillar:first-child {
  border-left: 0;
}

.sketch-icon {
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto 1.2rem;
  overflow: visible;
}

.sketch-icon * {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sketch-icon .yellow-fill {
  fill: var(--yellow);
  stroke: none;
}

.card-icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 2.7rem;
  height: 2.7rem;
  overflow: visible;
}

.card-icon * {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon .yellow-fill {
  fill: var(--yellow);
  stroke: none;
}

.pillar h2,
.project-card h3,
.service-list h3,
.site-footer h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pillar h2 {
  font-size: 1.65rem;
}

.pillar p {
  max-width: 15rem;
  margin: 0.75rem auto 0;
  color: var(--charcoal);
}

.process {
  background: var(--paper-warm);
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.process-copy h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.process-copy h2::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.process-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: 1.04rem;
}

.process-steps {
  display: grid;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.process-steps article {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 1.8rem) 0;
  border-top: 1px solid var(--line);
}

.process-steps article:first-child {
  border-top: 0;
}

.process-steps h3 {
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps .step-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.process-steps .step-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process-steps .step-icon svg *,
.contact-next .next-icon svg * {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.process-steps .step-icon .yellow-fill,
.contact-next .next-icon .yellow-fill {
  fill: var(--yellow);
  stroke: none;
}

.process-steps h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.process-steps p {
  max-width: 35rem;
  margin: 0.55rem 0 0;
  color: var(--charcoal);
}

.section-heading {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.section-heading h2::after {
  margin-inline: auto;
}

.section-heading.align-left h2::after,
.story-copy h2::after {
  margin-inline: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.52);
  border: 1px solid var(--line);
}

.project-card picture {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.project-card picture::before {
  content: "";
  display: block;
  aspect-ratio: 4 / 3;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.02);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem 1.15rem 1.3rem;
}

.project-card h3 {
  font-size: 1.75rem;
}

.project-card p {
  margin: 0.55rem 0 1rem;
  color: var(--charcoal);
}

.project-card .project-proof,
.project-card .project-client {
  margin-top: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-proof strong,
.project-client strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.project-client a {
  border-bottom: 2px solid var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

.project-client a:hover {
  color: var(--yellow-deep);
}

.project-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  font-family: var(--heading);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow);
}

.project-link:hover {
  color: var(--yellow-deep);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  align-items: stretch;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.story-image {
  position: relative;
  min-height: 100%;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.story-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.story-copy h2,
.approach h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.story-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.1rem 0 0;
  color: var(--charcoal);
}

.story-copy a {
  border-bottom: 3px solid var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

.story-copy a:hover {
  color: var(--yellow-deep);
}

.services {
  background:
    linear-gradient(rgba(217, 212, 204, 0.38) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 5.2rem;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.service-list article {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 0.55fr) 1fr;
  gap: clamp(1rem, 3vw, 2.6rem);
  align-items: start;
  padding: clamp(1.4rem, 4vw, 2rem) 0;
  border-top: 1px solid var(--line);
}

.service-list article:first-child {
  border-top: 0;
}

.service-list .card-icon {
  margin-top: -0.15rem;
}

.service-list h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-list p {
  margin: 0;
  color: var(--charcoal);
}

.approach {
  background: var(--ink);
  color: var(--paper);
}

.approach-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.approach .eyebrow::after {
  background: var(--yellow);
}

.approach-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 245, 242, 0.2);
  border: 1px solid rgba(247, 245, 242, 0.24);
}

.approach-notes p {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background: var(--ink);
  color: rgba(247, 245, 242, 0.82);
}

.approach-notes strong {
  color: var(--paper);
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.approach-notes span {
  font-weight: 500;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.contact-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.contact-copy p {
  max-width: 37rem;
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.contact-next {
  display: grid;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.contact-next-title {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.35);
  font-family: var(--heading);
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-next ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-next li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.25);
}

.contact-next li:first-child {
  border-top: 0;
}

.contact-next .next-icon {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
}

.contact-next .next-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-next li p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns:
    minmax(13rem, 1.1fr)
    minmax(6rem, 0.55fr)
    minmax(18rem, 1.45fr)
    minmax(8rem, 0.8fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 4.4rem) 0 2.4rem;
  color: var(--charcoal);
}

.site-footer h2 {
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 1.25rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0.3rem 0;
}

.site-footer .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-link span {
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--yellow);
}

.footer-brand p {
  margin-top: 1.2rem;
}

.footer-logo {
  align-items: end;
}

.map-page {
  background: var(--paper);
}

.map-header .site-nav {
  justify-content: center;
}

.map-hero {
  min-height: min(720px, calc(100vh - 9rem));
  display: grid;
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.map-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.map-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.map-lede {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.email-capture {
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
  margin-top: 1.45rem;
}

.email-capture label {
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.email-capture-row {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
}

.email-capture input[type="email"] {
  flex: 1 1 16rem;
  min-width: 0;
  min-height: 2.8rem;
  padding: 0.78rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font: inherit;
}

.email-capture input[type="email"]::placeholder {
  color: var(--charcoal);
}

.email-capture input[type="email"]:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.form-hidden {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-note a {
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.map-contact-link {
  margin-top: 1.25rem;
}

.map-hero-preview {
  width: min(100%, 25rem);
}

.map-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.map-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.map-section h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.7vw, 5.2rem);
}

.map-copy-stack p {
  max-width: 43rem;
  margin: 0 0 1rem;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.map-question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.map-question-grid article {
  min-height: 14rem;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
}

.map-question-feature {
  grid-column: span 2;
}

.map-question-grid h3 {
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.map-symbol {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.map-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-symbol svg * {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.map-symbol .yellow-fill {
  fill: var(--yellow);
  stroke: none;
}

.map-question-grid h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.map-question-grid p {
  margin: 0.7rem 0 0;
  color: var(--charcoal);
}

.map-contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.map-contrast-grid article {
  border-top: 2px solid var(--ink);
  padding: 1.25rem 0 0;
}

.map-contrast-grid h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.map-contrast-grid ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
}

.map-contrast-grid li {
  position: relative;
  padding-left: 1.25rem;
}

.map-contrast-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  transform: translateY(-50%) rotate(-8deg);
}

.map-download {
  grid-template-columns: minmax(0, 1fr) auto;
}

.map-download .email-capture {
  width: min(100%, 36rem);
  margin-top: 0;
}

.map-download .form-note {
  color: rgba(17, 17, 17, 0.76);
}

.thanks-hero {
  min-height: min(700px, calc(100vh - 9rem));
  display: grid;
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.thanks-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.thanks-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.thanks-hero h1::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.thanks-copy p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.privacy-hero {
  padding: clamp(4.4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 4.8rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.privacy-hero-inner,
.privacy-content {
  width: min(100% - 2rem, 52rem);
  margin: 0 auto;
}

.privacy-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
}

.privacy-lede {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.privacy-updated {
  display: inline-flex;
  margin: 1.4rem 0 0;
  padding: 0.45rem 0.65rem 0.36rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-section {
  padding: clamp(3.2rem, 7vw, 5.8rem) 0;
}

.privacy-content {
  display: grid;
  gap: 0;
}

.privacy-block {
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line);
}

.privacy-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.privacy-block h2 {
  margin: 0 0 0.7rem;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-block p {
  margin: 0.8rem 0 0;
  color: var(--charcoal);
}

.privacy-block p:first-of-type {
  margin-top: 0;
}

.privacy-block a,
.thanks-copy a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.privacy-summary {
  font-size: 1.08rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-inner {
    padding-top: clamp(3rem, 5vw, 4.25rem);
    padding-bottom: clamp(1.8rem, 4vw, 3rem);
  }
}

@media (max-width: 960px) {
  section[id] {
    scroll-margin-top: 7.5rem;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    width: min(100% - 1.2rem, var(--max));
    gap: 0.75rem;
  }

  .site-header::before {
    position: absolute;
    height: 100%;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .header-action {
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 0.6rem 0 0.2rem;
    border-top: 1px solid rgba(217, 212, 204, 0.9);
  }

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

  .site-nav a {
    padding: 0.85rem 0 0.75rem;
    border-bottom: 1px solid rgba(217, 212, 204, 0.85);
  }

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

  .site-header::before {
    height: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(90deg, var(--paper) 0%, rgba(247, 245, 242, 0.95) 42%, rgba(247, 245, 242, 0.4) 82%),
      var(--hero-road-image) right top / min(68rem, 94vw) auto no-repeat;
  }

  .hero-inner {
    padding-top: clamp(4.4rem, 9vw, 5.5rem);
  }

  .hero h1 {
    max-width: 10ch;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

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

  .audience-inner {
    grid-template-columns: 1fr;
  }

  .mission-inner {
    grid-template-columns: 1fr;
  }

  .audience-copy h2 {
    max-width: 14ch;
  }

  .pillar:nth-child(odd) {
    border-left: 0;
  }

  .journey-grid .pillar {
    border-left: 1px solid var(--line);
  }

  .journey-grid .pillar:first-child {
    border-left: 0;
  }

  .project-grid,
  .process-inner,
  .clarity-map-promo-inner,
  .map-hero-inner,
  .thanks-hero-inner,
  .map-section-inner,
  .approach-inner,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cta {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  }

  .contact-cta .button {
    justify-self: start;
  }

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

  .map-hero-inner,
  .thanks-hero-inner,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .story-split {
    grid-template-columns: 1fr;
  }

  .story-image {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 22rem;
  }

  .story-image img {
    min-height: 0;
  }

  .service-list article {
    grid-template-columns: 4rem 1fr;
  }

  .service-list p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  section[id] {
    scroll-margin-top: 1rem;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    position: relative;
    width: min(100% - 1rem, var(--max));
    gap: 0.8rem;
    padding: 0.8rem 0 0.65rem;
    box-shadow: 0 1px 0 rgba(217, 212, 204, 0.85);
  }

  .site-header::before {
    display: none;
  }

  .brand-logo {
    width: 6.9rem;
  }

  .header-action {
    min-height: 2.55rem;
    padding-inline: 0.8rem;
  }

  .site-nav {
    gap: 0;
    font-size: 0.98rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(247, 245, 242, 0.95) 0%, rgba(247, 245, 242, 0.9) 41%, rgba(247, 245, 242, 0.72) 100%),
      var(--hero-road-image) 61% top / auto 38rem no-repeat;
  }

  .hero-inner {
    width: min(100% - 1.2rem, var(--max));
    padding-top: 7.5rem;
    padding-bottom: 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13.5vw, 4.15rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 9rem;
  }

  .pillars-grid,
  .journey-grid,
  .audience-inner,
  .clarity-map-promo-inner,
  .map-hero-inner,
  .thanks-hero-inner,
  .map-section-inner,
  .mission-inner,
  .process-inner,
  .project-grid,
  .approach-inner,
  .approach-notes,
  .site-footer,
  .contact-cta,
  .map-question-grid,
  .map-contrast-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 1.4rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pillar:first-child {
    border-top: 0;
  }

  .recognition-grid article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .recognition-grid .card-icon {
    margin-top: 0;
  }

  .section-heading,
  .pillars-grid,
  .audience-inner,
  .clarity-map-promo-inner,
  .map-hero-inner,
  .thanks-hero-inner,
  .map-section-inner,
  .mission-inner,
  .process-inner,
  .project-grid,
  .approach-inner,
  .service-list,
  .site-footer,
  .map-question-grid {
    width: min(100% - 1.2rem, var(--max));
  }

  .clarity-map-promo-preview,
  .map-hero-preview {
    width: min(88%, 19rem);
  }

  .map-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .thanks-hero {
    min-height: auto;
  }

  .email-capture-row {
    flex-direction: column;
  }

  .email-capture input[type="email"] {
    flex: 0 1 auto;
    width: 100%;
  }

  .email-capture-row .button {
    width: 100%;
  }

  .map-question-grid article {
    min-height: auto;
  }

  .map-question-feature {
    grid-column: auto;
  }

  .story-copy {
    padding-inline: 1rem;
  }

  .story-image {
    min-height: 18rem;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .process-steps article {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.5rem;
  }

  .service-list p {
    grid-column: auto;
  }

  .contact-cta {
    justify-items: start;
    padding-inline: 1rem;
  }

  .contact-cta .button {
    width: min(100%, 19rem);
  }

  .contact-cta .email-capture-row .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
