/* ════════════════════════════════════════════════════════════
   NEIGHBOR DIGITAL — styles.css
   Editorial warm modernism. Fraunces + Instrument Sans.
   ════════════════════════════════════════════════════════════ */

/* ───── Tokens ───── */
:root {
  /* Color */
  --bone:        #F4EFE6;
  --bone-soft:   #ECE5D6;
  --bone-deep:   #E2D9C4;
  --ink:         #1A1714;
  --ink-2:       #25201C;
  --ink-soft:    #38322C;
  --cream:       #F4EFE6;
  --cream-soft:  #E8E1D2;
  --accent:      #C4593F;
  --accent-2:    #A8462E;
  --olive:       #5C5A45;

  --mute:        rgba(26, 23, 20, 0.62);
  --mute-soft:   rgba(26, 23, 20, 0.42);
  --rule:        rgba(26, 23, 20, 0.14);
  --rule-light:  rgba(244, 239, 230, 0.18);
  --rule-cream:  rgba(244, 239, 230, 0.32);

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Instrument Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

  /* Layout */
  --maxw:  1280px;
  --pad:   clamp(1.25rem, 4.5vw, 3.75rem);
  --section-y: clamp(5.5rem, 11vw, 10.5rem);

  /* Motion */
  --ease: cubic-bezier(.2, .65, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Selection */
::selection { background: var(--ink); color: var(--bone); }

/* Skip link */
.skip {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--ink); color: var(--bone);
  padding: .75rem 1rem; border-radius: 4px;
  z-index: 200;
  transition: top .2s var(--ease);
}
.skip:focus { top: 1rem; }

/* ───── Utilities ───── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.75rem;
}
.eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  font-variation-settings: 'opsz' 14, 'SOFT' 100;
}
.eyebrow--light { color: rgba(244, 239, 230, 0.65); }
.eyebrow--light .num { color: var(--accent); }

.dot {
  display: inline-block;
  width: .42rem; height: .42rem;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}
.dot--accent { background: var(--accent); }
.dot--cream { background: var(--cream); }

/* Display type — the heart of the system */
.display, .hero__headline, .intro__quote, .cta__head {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
}
.display em, .hero__headline em, .intro__quote em, .cta__head em, .foot__head em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--ink);
}
.display { font-size: clamp(2.5rem, 6.5vw, 5.4rem); }
.display--light { color: var(--cream); }
.display--light em { color: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.4rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .005em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-1px); }
.btn--big { padding: 1.15rem 1.7rem; font-size: 1rem; }

/* Section heads */
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 100%;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: end;
}
@media (min-width: 880px) {
  .section-head--split {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}
.section-head__aside {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mute);
  max-width: 38ch;
  margin: 0;
}
.section-head__aside--light { color: rgba(244, 239, 230, 0.7); }

/* Grain */
.hero__grain, .intro__grain, .work__grain, .about__grain, .cta__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.intro__grain, .work__grain, .about__grain, .cta__grain { opacity: .22; }

/* ════════════ NAV ════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--pad);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  letter-spacing: -0.005em;
}
.nav__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 1.85rem; height: 1.85rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1;
}
.nav__brand-text {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24, 'SOFT' 60;
}
.nav__brand-amp {
  font-style: italic;
  font-weight: 400;
  margin: 0 .12em;
  color: var(--accent);
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}
.nav__brand-co { color: var(--mute); font-style: italic; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: .92rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: .35rem .15rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: .15rem;
  height: 1px;
  background: var(--ink);
  transition: right .35s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.05rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav__toggle { display: none; }

/* Nav mobile */
@media (max-width: 880px) {
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 999px;
  }
  .nav__toggle span {
    display: block;
    width: 16px; height: 1.5px;
    background: var(--ink);
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
  .nav__drawer {
    position: fixed;
    inset: 0;
    background: var(--bone);
    padding: 6rem var(--pad) 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateY(-101%);
    transition: transform .45s var(--ease);
    z-index: 99;
  }
  .nav__drawer.is-open { transform: translateY(0); }
  .nav__drawer a {
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1;
    font-variation-settings: 'opsz' 48, 'SOFT' 50;
  }
  .nav__drawer-cta {
    margin-top: auto;
    color: var(--accent);
    font-style: italic;
    font-variation-settings: 'opsz' 48, 'SOFT' 100, 'WONK' 1;
  }
}
@media (min-width: 881px) {
  .nav__drawer { display: none; }
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  padding: clamp(5.5rem, 9vw, 7.5rem) var(--pad) clamp(3rem, 5vw, 4.5rem);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__meta-sep { color: var(--accent); }

.hero__headline {
  font-size: clamp(2.6rem, 8vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  align-self: end;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 1s var(--ease-out) forwards;
}
.hero__line[data-stagger="0"] { animation-delay: .12s; }
.hero__line[data-stagger="1"] { animation-delay: .22s; padding-left: clamp(0px, 8vw, 7rem); }
.hero__line[data-stagger="2"] { animation-delay: .32s; }
.hero__line--accent {
  position: relative;
  color: var(--accent);
  padding-left: clamp(0px, 4vw, 3rem);
  display: inline-flex;
  align-items: baseline;
}
.hero__line--accent em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--accent);
  position: relative;
}
.hero__underline {
  position: absolute;
  left: clamp(0px, 4vw, 3rem);
  right: 0;
  bottom: -0.05em;
  width: clamp(220px, 50%, 600px);
  height: clamp(.5rem, 1.5vw, 1.1rem);
  color: var(--accent);
  opacity: 0;
  animation: underlineIn 1.1s var(--ease-out) .9s forwards;
}

.hero__support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 580px;
  align-self: end;
}
.hero__sub {
  font-size: clamp(1rem, 1.1vw + .8rem, 1.18rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s var(--ease-out) .55s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s var(--ease-out) .7s forwards;
}
.hero__trust {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  font-size: .82rem;
  color: var(--mute);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s var(--ease-out) .85s forwards;
}
.hero__trust li { display: inline-flex; align-items: center; gap: .55rem; }

.hero__edge {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute-soft);
  pointer-events: none;
}
.hero__edge-line {
  width: 60px; height: 1px;
  background: currentColor;
  opacity: .5;
}
@media (max-width: 880px) {
  .hero__edge { display: none; }
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes underlineIn {
  to { opacity: 1; }
}

/* ════════════ INTRO (DARK) ════════════ */
.intro {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.intro__quote {
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 22ch;
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
}
.intro__quote em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
}
@media (min-width: 880px) {
  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 78%;
  }
}
.intro__lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
  color: var(--cream);
  margin: 0;
}
.intro__body {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.78);
  margin: 0;
  padding-top: .35rem;
}
.intro__body em {
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.08em;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}

/* ════════════ WHO WE HELP ════════════ */
.who {
  padding: var(--section-y) 0;
}
.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .who__grid { grid-template-columns: repeat(3, 1fr); }
}
.who__card {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 2.25rem) clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 760px) {
  .who__card {
    border-bottom: none;
    border-right: 1px solid var(--rule);
    padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.5rem, 2.5vw, 2.5rem);
  }
  .who__card:first-child { padding-left: 0; }
  .who__card:last-child { border-right: none; padding-right: 0; }
}
.who__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}
.who__card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
  line-height: 1.05;
}
.who__card p {
  color: var(--mute);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}

/* ════════════ SERVICES ════════════ */
.services {
  padding: var(--section-y) 0;
  background: var(--bone-soft);
}
.services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
@media (min-width: 880px) {
  .service {
    grid-template-columns: 6rem 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 3rem;
    align-items: start;
  }
  .service__num  { grid-column: 1; grid-row: 1 / 3; }
  .service__head { grid-column: 2; grid-row: 1; }
  .service__desc { grid-column: 2; grid-row: 2; margin-bottom: 0; }
  .service__inc  { grid-column: 3; grid-row: 1 / 3; }
}
.service:hover {
  background: linear-gradient(to right, transparent, rgba(196, 89, 63, 0.04), transparent);
}
.service__num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}
.service__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service__name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  font-variation-settings: 'opsz' 60, 'SOFT' 30;
}
.service__price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .82rem;
  color: var(--mute);
  margin: 0;
}
.service__price strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
}
.service__price .per {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  color: var(--mute);
  margin-left: .12rem;
}
.service__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 38ch;
}
.service__inc {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .92rem;
  color: var(--mute);
}
.service__inc li {
  position: relative;
  padding-left: 1.1rem;
}
.service__inc li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
}
.services__note {
  margin-top: 2.5rem;
  font-size: .92rem;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  max-width: 70ch;
  line-height: 1.6;
}

/* ════════════ WORK (DARK) ════════════ */
.work {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 880px) {
  .work__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}
.work__item {
  display: block;
  group: card;
  position: relative;
  transition: transform .4s var(--ease);
}
.work__item--wide { grid-column: 1 / -1; }
.work__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0E0C0A;
  border-radius: 2px;
  position: relative;
  transition: transform .55s var(--ease);
}
.work__item--wide .work__visual { aspect-ratio: 16 / 7; }
.work__visual svg { width: 100%; height: 100%; transition: transform .8s var(--ease-out); }
.work__item:hover .work__visual svg { transform: scale(1.04); }
.work__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), transparent 40%);
  pointer-events: none;
}
.work__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem .75rem;
  margin-top: 1.25rem;
  font-size: .92rem;
  color: var(--cream-soft);
}
.work__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
  grid-column: 1 / 2;
  color: var(--cream);
}
.work__cat {
  grid-column: 1 / 2;
  color: rgba(244, 239, 230, 0.6);
  font-size: .85rem;
}
.work__year {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: .9rem;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}

/* ════════════ PROCESS ════════════ */
.process {
  padding: var(--section-y) 0;
}
.process__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}
.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.process__step:last-child { border-bottom: 1px solid var(--rule); }
.process__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  min-width: 5rem;
}
.process__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 .85rem;
  line-height: 1;
  font-variation-settings: 'opsz' 60, 'SOFT' 30;
}
.process__body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mute);
  margin: 0 0 1rem;
  max-width: 56ch;
}
.process__when {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ════════════ PRICING ════════════ */
.pricing {
  padding: var(--section-y) 0;
  background: var(--bone-soft);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .pricing__grid { grid-template-columns: repeat(4, 1fr); }
}
.tier {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 23, 20, 0.28);
  box-shadow: 0 18px 40px -28px rgba(26, 23, 20, 0.4);
}
.tier--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.tier--feature:hover {
  border-color: var(--accent);
}
.tier__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.tier__label--feature { color: var(--accent); }
.tier__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  line-height: 1.05;
}
.tier__price {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.tier--feature .tier__price { border-bottom-color: var(--rule-light); }
.tier__from {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
}
.tier--feature .tier__from { color: rgba(244, 239, 230, 0.55); }
.tier__price strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 60, 'SOFT' 30;
  line-height: 1;
  color: var(--ink);
}
.tier--feature .tier__price strong { color: var(--cream); }
.tier__price .per {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  color: var(--mute);
  margin-left: .15rem;
}
.tier--feature .tier__price .per { color: rgba(244, 239, 230, 0.55); }
.tier__desc {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--mute);
  margin: 0 0 1.25rem;
  flex-grow: 0;
}
.tier--feature .tier__desc { color: rgba(244, 239, 230, 0.7); }
.tier__list {
  list-style: none;
  margin: 0 0 1.75rem; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: var(--ink-soft);
  flex-grow: 1;
}
.tier--feature .tier__list { color: rgba(244, 239, 230, 0.78); }
.tier__list li {
  position: relative;
  padding-left: 1rem;
}
.tier__list li::before {
  content: '·';
  position: absolute;
  left: 0; top: -3px;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}
.tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .85rem 1.1rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .25s var(--ease);
  margin-top: auto;
}
.tier__cta:hover { background: var(--accent); }
.tier__cta--feature {
  background: var(--accent);
  color: var(--bone);
}
.tier__cta--feature:hover { background: var(--bone); color: var(--ink); }

/* ════════════ ABOUT (DARK) ════════════ */
.about {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.about__lead {
  max-width: 60ch;
  margin: 0 0 clamp(3rem, 6vw, 5rem);
}
.about__lead p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.45;
  color: rgba(244, 239, 230, 0.88);
  margin: 0;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
  font-weight: 400;
}
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .team { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.team__card {
  padding-top: 2rem;
  border-top: 1px solid var(--rule-light);
}
.team__photo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'WONK' 1;
  border: 1px solid var(--rule-light);
}
.team__photo--keegan { background: linear-gradient(135deg, #C4593F, #8E3B26); color: var(--cream); }
.team__photo--aaron  { background: linear-gradient(135deg, #38322C, #1A1714); color: var(--accent); border-color: var(--accent); }
.team__photo--jim    { background: linear-gradient(135deg, #5C5A45, #2E2D22); color: var(--cream-soft); }
.team__card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 .35rem;
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
  line-height: 1;
}
.team__role {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  font-weight: 500;
}
.team__bio {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.72);
  margin: 0;
}

/* ════════════ VALUES ════════════ */
.values {
  padding: var(--section-y) 0;
}
.values__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.values__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
@media (min-width: 760px) {
  .values__row {
    grid-template-columns: minmax(280px, 1fr) 2fr;
    gap: 3rem;
    align-items: baseline;
  }
}
.values__row:hover dt em { color: var(--accent); }
.values__row dt {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  line-height: 1;
}
.values__num {
  font-style: italic;
  font-size: .95rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
  min-width: 2rem;
}
.values__row dd {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--mute);
  max-width: 52ch;
}

/* ════════════ FAQ ════════════ */
.faq {
  padding: var(--section-y) 0;
  background: var(--bone-soft);
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
.faq__item[open] { background: rgba(196, 89, 63, 0.04); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  line-height: 1.2;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary { color: var(--accent); }
.faq__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: background .3s var(--ease), opacity .25s var(--ease), transform .3s var(--ease);
}
.faq__icon::before {
  top: 50%; left: 25%; right: 25%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%; top: 25%; bottom: 25%;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::before { background: var(--cream); }
.faq__item[open] .faq__icon::after { opacity: 0; }
.faq__answer {
  padding: 0 0 clamp(1.5rem, 3vw, 2rem);
  max-width: 70ch;
}
.faq__answer p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.faq__answer p strong {
  font-weight: 600;
  color: var(--ink);
}

/* ════════════ CTA / CONTACT ════════════ */
.cta {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.cta__head {
  font-size: clamp(2.6rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 18ch;
  margin: 0 0 1.5rem;
}
.cta__head em {
  color: var(--accent);
}
.cta__sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.78);
  max-width: 52ch;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  border-top: 1px solid var(--rule-light);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.cta__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .cta__row { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.field--full { width: 100%; }
.field__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-light);
  padding: .85rem 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  color: var(--cream);
  transition: border-color .25s var(--ease);
  width: 100%;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23F4EFE6' stroke-width='1.2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  background-size: 12px 8px;
  padding-right: 1.5rem;
}
.field select option { background: var(--ink); color: var(--cream); }
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 239, 230, 0.32);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.cta__submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 1rem;
}
.cta__submit-row .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bone);
}
.cta__submit-row .btn--primary:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}
.cta__or {
  font-size: .92rem;
  color: rgba(244, 239, 230, 0.6);
  margin: 0;
}
.cta__or a {
  color: var(--cream);
  border-bottom: 1px solid var(--rule-cream);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.cta__or a:hover { color: var(--accent); border-color: var(--accent); }
.cta__success {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 1rem 0 0;
  font-size: .92rem;
  color: var(--accent);
}

/* ════════════ FOOTER ════════════ */
.foot {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.foot__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 880px) {
  .foot__top {
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: end;
  }
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  align-self: start;
}
.foot__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.foot__brand-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.foot__brand-amp {
  font-style: italic;
  color: var(--accent);
  margin: 0 .12em;
  font-variation-settings: 'opsz' 36, 'SOFT' 100, 'WONK' 1;
}
.foot__head {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 0.96;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.foot__head em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .foot__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.foot__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 .35rem;
  font-weight: 500;
}
.foot__col p { margin: 0; }
.foot__col a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.foot__col a:hover { color: var(--accent); border-color: var(--accent); }

.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  font-size: .85rem;
  color: var(--mute);
}
.foot__bottom p { margin: 0; }
.foot__tag { font-style: italic; font-family: var(--serif); font-variation-settings: 'opsz' 14, 'SOFT' 100, 'WONK' 1; color: var(--accent); }

/* ════════════ Scroll reveal ════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-delay: 0s !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__line, .hero__sub, .hero__ctas, .hero__trust { opacity: 1; transform: none; }
  .hero__underline { opacity: 1; }
}


/* ════════════════════════════════════════════════════════════
   INTERIOR PAGES
   ════════════════════════════════════════════════════════════ */

/* ───── Active nav state ───── */
.nav__links a[aria-current="page"],
.nav__links a.is-active {
  color: var(--accent);
}
.nav__links a[aria-current="page"]::after,
.nav__links a.is-active::after {
  right: 0;
  background: var(--accent);
}

/* ───── Sub-hero (interior page hero) ───── */
.sub-hero {
  position: relative;
  padding: clamp(7rem, 13vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.sub-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 880px) {
  .sub-hero__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: end;
  }
}
.sub-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: .5rem 0 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.sub-hero__heading em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.sub-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: .5rem;
}
.sub-hero__sub {
  font-size: clamp(1rem, 1.1vw + .8rem, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}
.sub-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .85rem;
  color: var(--mute);
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.sub-hero__facts strong {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  font-variation-settings: 'opsz' 24, 'SOFT' 30;
}
.sub-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
}

/* ───── Breadcrumbs ───── */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin: 0;
  padding: 0;
  list-style: none;
}
.crumbs li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.crumbs li + li::before {
  content: '/';
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'SOFT' 100, 'WONK' 1;
  letter-spacing: 0;
}
.crumbs a {
  color: var(--mute);
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.crumbs a:hover {
  color: var(--ink);
  border-color: var(--rule);
}
.crumbs [aria-current="page"] {
  color: var(--ink);
}

/* ───── Page section base ───── */
.page-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.page-section--soft  { background: var(--bone-soft); }
.page-section--ink   { background: var(--ink); color: var(--cream); }
.page-section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.page-section + .page-section {
  border-top: 1px solid var(--rule);
}
.page-section--ink + .page-section,
.page-section + .page-section--ink {
  border-top: 0;
}

/* ───── Section heading utility for interior pages ───── */
.s-head {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 720px;
}
.s-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin: 0 0 1rem;
}
.s-head__eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  font-size: .92rem;
  font-variation-settings: 'opsz' 14, 'SOFT' 100, 'WONK' 1;
}
.page-section--ink .s-head__eyebrow { color: rgba(244,239,230,.6); }
.s-head__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}
.s-head__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'WONK' 1;
}
.page-section--ink .s-head__title { color: var(--cream); }

/* ───── Prose (article-style body content) ───── */
.prose {
  max-width: 64ch;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.prose p { margin: 0 0 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose em { font-style: italic; }
.prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color .2s var(--ease);
}
.prose a:hover { color: var(--accent); }
.prose ul, .prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}
.prose li { margin: 0 0 .35rem; }
.prose--lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink);
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
  max-width: 52ch;
}
.page-section--ink .prose { color: rgba(244,239,230,.78); }
.page-section--ink .prose strong { color: var(--cream); }
.page-section--ink .prose a { color: var(--cream); border-color: var(--accent); }
.page-section--ink .prose--lead { color: var(--cream); }

/* ───── Two-column layout (label + content) ───── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 0.7fr 1.5fr; gap: 4rem; }
}
.two-col__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--accent);
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
  margin: .5rem 0 0;
}
.page-section--ink .two-col__label { color: var(--accent); }

/* ───── Card grids ───── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .card-grid--2 { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1080px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bone);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
  min-height: 220px;
}
.page-section--soft .card { background: var(--bone); }
.page-section--ink .card { background: var(--ink); color: var(--cream); }

a.card:hover {
  background: var(--ink);
  color: var(--cream);
}
a.card:hover .card__sym,
a.card:hover .card__num { color: var(--accent); }
a.card:hover .card__title { color: var(--cream); }
a.card:hover .card__desc { color: rgba(244,239,230,.75); }
a.card:hover .card__link { color: var(--accent); }
a.card:hover .card__link::after { transform: translateX(4px); }

.card__num,
.card__sym {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}
.card__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
  color: var(--ink);
}
.page-section--ink .card__title { color: var(--cream); }
.card__desc {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
}
.page-section--ink .card__desc { color: rgba(244,239,230,.7); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  margin-top: auto;
  padding-top: .5rem;
  color: var(--accent);
  letter-spacing: .005em;
}
.card__link::after {
  content: '→';
  display: inline-block;
  transition: transform .25s var(--ease);
}

/* ───── Deliverables list ───── */
.deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 720px) {
  .deliverables--2 { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}
.deliverables li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.deliverables li:first-child { border-top: 1px solid var(--rule); }
.deliverables__num {
  font-family: var(--serif);
  font-size: .92rem;
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 14, 'SOFT' 100, 'WONK' 1;
  min-width: 1.75rem;
}
.deliverables__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 24, 'SOFT' 30;
}
.deliverables__body {
  font-size: .94rem;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}
.page-section--ink .deliverables li { border-color: var(--rule-light); }
.page-section--ink .deliverables li:first-child { border-top-color: var(--rule-light); }
.page-section--ink .deliverables__title { color: var(--cream); }
.page-section--ink .deliverables__body { color: rgba(244,239,230,.7); }

/* ───── Honesty / "what we don't do" block ───── */
.honesty {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: var(--bone);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
}
.honesty__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  font-variation-settings: 'opsz' 36, 'SOFT' 100, 'WONK' 1;
  line-height: 1;
}
.honesty__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 .75rem;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  line-height: 1.1;
}
.honesty__body {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* ───── End-of-page CTA strip ───── */
.end-cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}
.end-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 880px) {
  .end-cta__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.end-cta__head {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--cream);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}
.end-cta__head em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'WONK' 1;
}
.end-cta__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244,239,230,.7);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
.end-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.end-cta .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
}
.end-cta .btn--primary:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}
.end-cta .btn--ghost {
  color: var(--cream);
  border-color: rgba(244,239,230,.4);
}
.end-cta .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ───── Process compact (used on service pages) ───── */
.process-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 880px) {
  .process-compact { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
  .page-section--ink .process-compact { background: var(--rule-light); border-color: var(--rule-light); }
}
.process-compact__step {
  background: var(--bone);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .process-compact__step { border-bottom: 0; }
}
.page-section--soft .process-compact__step { background: var(--bone); }
.page-section--ink .process-compact__step { background: var(--ink); }
.process-compact__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
}
.process-compact__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  line-height: 1;
}
.page-section--ink .process-compact__title { color: var(--cream); }
.process-compact__body {
  font-size: .94rem;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}
.page-section--ink .process-compact__body { color: rgba(244,239,230,.7); }
.process-compact__when {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: auto;
  padding-top: .5rem;
}

/* ───── Standalone form section ───── */
.form-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 720px;
}
.form-block .cta__row { gap: 1.75rem; }
.page-section--ink .form-block .field input,
.page-section--ink .form-block .field select,
.page-section--ink .form-block .field textarea {
  border-bottom-color: var(--rule-light);
  color: var(--cream);
}
.page-section--ink .form-block .field__label { color: rgba(244,239,230,.6); }

/* Light-theme form (when contact page is on bone) */
.page-section .form-block .field input,
.page-section .form-block .field select,
.page-section .form-block .field textarea {
  border-bottom-color: var(--rule);
  color: var(--ink);
  padding: .85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 1.02rem;
  width: 100%;
}
.page-section .form-block .field input:focus,
.page-section .form-block .field select:focus,
.page-section .form-block .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.page-section .form-block .field__label {
  color: var(--mute);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.page-section .form-block .field input::placeholder,
.page-section .form-block .field textarea::placeholder {
  color: var(--mute-soft);
}

/* ───── Topic groups (FAQ page) ───── */
.faq-topics {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.faq-topic__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .faq-topic__head { grid-template-columns: 1fr 2fr; align-items: baseline; gap: 2rem; }
}
.faq-topic__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: 'opsz' 60, 'SOFT' 30;
  line-height: 1.05;
}
.faq-topic__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'WONK' 1;
}
.faq-topic__hint {
  font-size: .94rem;
  color: var(--mute);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

/* ───── Stat / fact strip (for industry pages) ───── */
.fact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .fact-strip { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--rule); }
}
.page-section--ink .fact-strip { border-color: var(--rule-light); }
.fact {
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 760px) {
  .fact { border-bottom: 0; border-right: 1px solid var(--rule); }
  .fact:last-child { border-right: 0; }
}
.page-section--ink .fact { border-color: var(--rule-light); }
.fact__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.fact__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  line-height: 1.15;
}
.page-section--ink .fact__title { color: var(--cream); }
.fact__body {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}
.page-section--ink .fact__body { color: rgba(244,239,230,.7); }

/* ───── Inline price tag ───── */
.tag-price {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  padding: .45rem .8rem;
  background: var(--bone-deep);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--ink-soft);
}
.tag-price strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: 'opsz' 24, 'SOFT' 30;
}
.tag-price .per {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--mute);
}

/* ───── Hub link list (sidebar / "see also") ───── */
.see-also {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.see-also li {
  border-bottom: 1px solid var(--rule);
}
.see-also li:first-child { border-top: 1px solid var(--rule); }
.see-also a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--ink);
  transition: color .2s var(--ease), padding .25s var(--ease);
}
.see-also a:hover {
  color: var(--accent);
  padding-left: .5rem;
}
.see-also a::after {
  content: '→';
  color: var(--accent);
  font-size: .9rem;
}
.see-also__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 24, 'SOFT' 30;
}
.see-also__meta {
  font-size: .82rem;
  color: var(--mute);
}
.page-section--ink .see-also li { border-color: var(--rule-light); }
.page-section--ink .see-also li:first-child { border-top-color: var(--rule-light); }
.page-section--ink .see-also a { color: var(--cream); }

/* ───── Drop cap (used in long prose like About) ───── */
.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  font-weight: 400;
  font-style: italic;
  float: left;
  line-height: .85;
  margin: 0.05em 0.12em -0.05em 0;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DROPDOWN MENUS + MEGA MENU
   Added to support: Services / Industries / Locations / About dropdowns.
   The Locations dropdown is a full-width mega menu with all 50 states + cities.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container behavior — let dropdown panels position relative to each item */
.nav__links {
  position: relative;
  align-items: center;
}

.nav__item--has-menu,
.nav__item--has-mega {
  position: relative;
}

/* Trigger button looks like a regular nav link */
.nav__link--has-menu {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .15rem;
  color: var(--ink);
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__link--has-menu::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: .15rem;
  height: 1px;
  background: var(--ink);
  transition: right .35s var(--ease);
}
.nav__link--has-menu:hover::after,
.nav__link--has-menu[aria-expanded="true"]::after { right: 0; }
.nav__caret {
  display: inline-block;
  font-size: .68em;
  transition: transform .25s var(--ease);
  opacity: .6;
}
.nav__link--has-menu[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

/* ────── Small + wide dropdowns (Services / Industries / About) ────── */
.nav__menu {
  position: absolute;
  top: calc(100% + .65rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 18rem;
  background: var(--bone);
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(26, 23, 20, 0.04),
    0 12px 40px rgba(26, 23, 20, 0.10),
    0 28px 80px rgba(26, 23, 20, 0.08);
  padding: .85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 110;
}
.nav__menu--wide { min-width: 36rem; }

.nav__item--has-menu.is-open > .nav__menu,
.nav__item--has-mega.is-open > .nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Connect bridge — prevents hover gap from closing the menu */
.nav__menu::before,
.nav__mega::before {
  content: '';
  position: absolute;
  top: -.65rem;
  left: 0; right: 0;
  height: .65rem;
}

.nav__menu-item {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s var(--ease);
}
.nav__menu-item:hover,
.nav__menu-item:focus-visible {
  background: var(--bone-soft);
  outline: none;
}
.nav__menu-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
}
.nav__menu-desc {
  font-size: .82rem;
  color: var(--mute);
  line-height: 1.45;
}

.nav__menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem 1.5rem;
  padding: .5rem .25rem;
}
.nav__menu-cols > div { display: flex; flex-direction: column; gap: .08rem; }
.nav__menu-cols a {
  padding: .4rem .55rem;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
  transition: background .15s var(--ease);
}
.nav__menu-cols a:hover,
.nav__menu-cols a:focus-visible {
  background: var(--bone-soft);
  outline: none;
}
.nav__menu-label {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: .6rem .55rem .3rem;
}

.nav__menu-sep {
  border: 0;
  border-top: 1px solid rgba(26, 23, 20, 0.08);
  margin: .55rem .15rem;
}
.nav__menu-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .85rem;
  border-radius: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
  color: var(--accent);
  text-decoration: none;
  transition: background .15s var(--ease);
}
.nav__menu-all:hover,
.nav__menu-all:focus-visible {
  background: var(--bone-soft);
  outline: none;
}
.nav__menu-all > span[aria-hidden] {
  font-style: normal;
  font-family: var(--sans);
  transition: transform .2s var(--ease);
}
.nav__menu-all:hover > span[aria-hidden] { transform: translateX(3px); }


/* ────── Mega menu (Locations) ────── */
.nav__mega {
  position: absolute;
  top: calc(100% + .65rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(72rem, calc(100vw - 2rem));
  max-height: calc(100vh - 8rem);
  overflow: hidden;
  background: var(--bone);
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(26, 23, 20, 0.04),
    0 12px 40px rgba(26, 23, 20, 0.10),
    0 32px 100px rgba(26, 23, 20, 0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 110;
  display: flex;
  flex-direction: column;
}
.nav__mega-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.nav__mega-head {
  padding: 1.4rem 1.6rem 1.1rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.07);
  flex-shrink: 0;
}
.nav__mega-eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: .35rem;
}
.nav__mega-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  margin-bottom: .35rem;
}
.nav__mega-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'WONK' 1;
}
.nav__mega-sub {
  font-size: .88rem;
  color: var(--mute);
  max-width: 60ch;
}

.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow-y: auto;
  padding: .5rem .8rem 1rem;
  flex: 1 1 auto;
}
.nav__mega-region {
  padding: .8rem;
  border-right: 1px solid rgba(26, 23, 20, 0.06);
}
.nav__mega-region:last-child { border-right: 0; }
.nav__mega-region-label {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .45rem;
  padding: 0 .4rem;
}
.nav__mega-states {
  list-style: none;
  margin: 0; padding: 0;
}
.nav__mega-state { margin-bottom: 1px; }
.nav__mega-state-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .42rem .5rem;
  font: inherit;
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 7px;
  text-align: left;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.nav__mega-state-btn:hover,
.nav__mega-state-btn:focus-visible {
  background: var(--bone-soft);
  outline: none;
}
.nav__mega-state-btn[aria-expanded="true"] {
  background: var(--bone-soft);
  color: var(--accent);
}
.nav__mega-state-toggle {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--mute);
  transition: transform .2s var(--ease);
  width: 1em;
  text-align: center;
}
.nav__mega-state-btn[aria-expanded="true"] .nav__mega-state-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.nav__mega-cities {
  list-style: none;
  margin: .15rem 0 .35rem;
  padding: .15rem 0 .25rem .85rem;
  border-left: 1px solid rgba(26, 23, 20, 0.10);
  margin-left: .8rem;
}
.nav__mega-cities[hidden] { display: none; }
.nav__mega-cities li { margin: 0; }
.nav__mega-cities a {
  display: block;
  padding: .25rem .45rem;
  font-size: .82rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 5px;
  transition: background .12s var(--ease), color .12s var(--ease);
}
.nav__mega-cities a:hover,
.nav__mega-cities a:focus-visible {
  background: var(--bone-soft);
  color: var(--accent);
  outline: none;
}
.nav__mega-cities-all a {
  font-style: italic;
  color: var(--accent);
  margin-top: .1rem;
  font-variation-settings: 'opsz' 24, 'WONK' 1;
}

.nav__mega-foot {
  border-top: 1px solid rgba(26, 23, 20, 0.07);
  padding: .9rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bone-soft);
  flex-shrink: 0;
}
.nav__mega-foot p {
  font-size: .85rem;
  color: var(--mute);
  margin: 0;
}
.nav__mega-foot p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.nav__mega-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.nav__mega-cta:hover { background: var(--accent); transform: translateY(-1px); }


/* ────── Mobile drawer accordion ────── */
@media (max-width: 880px) {
  .nav__menu, .nav__mega { display: none !important; }
  .nav__link--has-menu { display: none; }

  .nav__drawer {
    align-items: stretch;
    overflow-y: auto;
    padding-bottom: 4rem;
  }
  .nav__drawer-group {
    border-bottom: 1px solid rgba(26, 23, 20, 0.10);
    padding: .25rem 0 .85rem;
  }
  .nav__drawer-group summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1;
    font-variation-settings: 'opsz' 48, 'SOFT' 50;
    padding: .5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__drawer-group summary::-webkit-details-marker { display: none; }
  .nav__drawer-group summary::after {
    content: '+';
    font-family: var(--sans);
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform .25s var(--ease);
  }
  .nav__drawer-group[open] summary::after { transform: rotate(45deg); }
  .nav__drawer-group a {
    display: block;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    padding: .35rem .25rem;
    letter-spacing: 0;
    font-variation-settings: normal;
    color: var(--ink);
  }
  .nav__drawer-group .nav__drawer-all {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    margin-top: .4rem;
    font-variation-settings: 'opsz' 24, 'WONK' 1;
  }
  .nav__drawer-hint {
    font-size: .8rem;
    color: var(--mute);
    padding: .3rem .25rem 0;
    margin: 0;
  }
  .nav__drawer-direct {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1;
    padding: .9rem 0;
    font-variation-settings: 'opsz' 48, 'SOFT' 50;
  }
}


/* ────── Responsive: shrink mega menu on smaller desktops ────── */
@media (max-width: 1180px) and (min-width: 881px) {
  .nav__mega {
    width: min(64rem, calc(100vw - 1.5rem));
  }
  .nav__mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav__mega-region {
    border-right: 0;
    border-bottom: 1px solid rgba(26, 23, 20, 0.06);
  }
  .nav__mega-region:last-child { border-bottom: 0; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LOCATIONS DIRECTORY (paired with the mega menu anchors)
   ═══════════════════════════════════════════════════════════════════════════ */
.locations-dir {
  display: grid;
  gap: 3rem;
}
.locations-dir__region {
  display: grid;
  gap: 1.5rem;
}
.locations-dir__region-head {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.10);
}
.locations-dir__state {
  background: var(--bone);
  border: 1px solid rgba(26, 23, 20, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.4rem 1.4rem;
  scroll-margin-top: 7rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.locations-dir__state:target {
  box-shadow: 0 0 0 2px var(--accent), 0 12px 32px rgba(196, 89, 63, 0.18);
  transform: translateY(-2px);
}
.locations-dir__state-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.07);
}
.locations-dir__state-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  margin: 0;
}
.locations-dir__state-code {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: 0.18em;
  color: var(--mute);
  font-weight: 500;
}
.locations-dir__cities {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: .25rem .75rem;
}
.locations-dir__cities li {
  scroll-margin-top: 7rem;
  border-radius: 6px;
  transition: background .25s var(--ease);
}
.locations-dir__cities li:target {
  background: rgba(196, 89, 63, 0.10);
}
.locations-dir__cities a {
  display: block;
  padding: .35rem .5rem;
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.locations-dir__cities a:hover {
  background: var(--bone-soft);
  color: var(--accent);
}
.locations-dir__state-note {
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(26, 23, 20, 0.05);
  font-size: .85rem;
  color: var(--mute);
}
.locations-dir__state-note a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'WONK' 1;
}

@media (max-width: 700px) {
  .locations-dir__cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

