/* ------------------------------------------------------------------
   TOKENS
------------------------------------------------------------------ */
:root {
  /* Type */
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Warm paper palette */
  --paper:        #f6f2ea;
  --paper-2:      #efe9dc;
  --surface:      #fdfbf7;
  --ink:          #1a1814;
  --ink-2:        #2c2820;
  --muted:        #756e62;
  --muted-2:      #9a9285;
  --rule:         #e3dccb;
  --rule-soft:    #ece5d4;

  /* Accent (navy default) */
  --accent:       #1e3a5f;
  --accent-ink:   #14283f;
  --accent-soft:  #e4ebf4;

  /* Geometry */
  --max:   1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  /* Density (spacious default) */
  --section-y: clamp(80px, 9vw, 144px);
  --stack-lg:  56px;
  --stack-md:  32px;
  --stack-sm:  18px;
}

[data-accent="clay"] {
  --accent: #a8501f;
  --accent-ink: #803c14;
  --accent-soft: #f3e6da;
}
[data-accent="forest"] {
  --accent: #3f6b3a;
  --accent-ink: #2e4f2a;
  --accent-soft: #e6ede2;
}
[data-accent="ink"] {
  --accent: #1a1814;
  --accent-ink: #000;
  --accent-soft: #ece5d4;
}

[data-density="compact"] {
  --section-y: clamp(56px, 6vw, 96px);
  --stack-lg: 36px;
  --stack-md: 22px;
  --stack-sm: 14px;
}

/* ------------------------------------------------------------------
   RESET
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------------
   PRIMITIVES
------------------------------------------------------------------ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}
h3 {
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p { margin: 0; text-wrap: pretty; }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  font-weight: 300;
}

.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap .2s ease;
}
.btn-link:hover { gap: 12px; }

.tel {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ------------------------------------------------------------------
   HEADER
------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: visible;
  min-width: 0;
}
.logo--brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
  text-decoration: none;
}
.logo-pronunciation {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #7a3d1e;
  line-height: 1;
  padding-left: 4px;
  white-space: nowrap;
}
.footer .logo-pronunciation {
  font-size: 14px;
}
.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.logo-img--footer {
  height: 48px;
}
@media (max-width: 960px) {
  .logo-pronunciation {
    font-size: 11px;
  }
  .logo-img {
    height: 38px;
    max-width: calc(100vw - 11rem);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 450;
  letter-spacing: -0.003em;
  transition: color .15s ease;
}
.nav a:hover { color: var(--accent); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-size: 14.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.header-phone svg { color: var(--accent); }
.header .btn { padding: 10px 18px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
}

@media (max-width: 960px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--surface);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
  padding: 24px 28px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer.is-open { transform: translateX(0); }
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(20,18,14,.36);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer-close {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  padding: 4px 6px;
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.drawer nav a {
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  border-bottom: 1px solid var(--rule-soft);
}
.drawer .drawer-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */
.hero {
  padding-top: clamp(70px, 9vw, 140px);
  padding-bottom: clamp(60px, 7vw, 110px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stack-lg);
}
.hero .eyebrow { margin-bottom: 28px; }

.hero h1 .em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero .sub {
  margin-top: 32px;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink-2);
  letter-spacing: -0.003em;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2);
}
.hero-meta .mono { color: var(--muted); }

/* ------------------------------------------------------------------
   TRUST STRIP
------------------------------------------------------------------ */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--paper-2) 35%, transparent));
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.trust-row .sep {
  width: 1px;
  height: 28px;
  background: var(--rule);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.trust-item .glyph {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex: 0 0 20px;
}
.trust-item .mono {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .trust-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-row .sep { display: none; }
}

/* ------------------------------------------------------------------
   SECTION — generic
------------------------------------------------------------------ */
section.section {
  padding-block: var(--section-y);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: var(--stack-lg);
  align-items: start;
}
.section-head .left {
  position: sticky;
  top: 100px;
}
.section-head .left .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}
.section-head .left .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.section-head h2 { max-width: 760px; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .left { position: static; }
}

/* ------------------------------------------------------------------
   WHO WE HELP
------------------------------------------------------------------ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.who-card {
  background: var(--surface);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background .2s ease;
  cursor: pointer;
}
.who-card:hover { background: color-mix(in srgb, var(--accent-soft) 50%, var(--surface)); }
.who-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.who-card .tag::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.who-card h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  margin-top: 6px;
}
.who-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  flex-grow: 1;
}
.who-card .more {
  margin-top: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.003em;
}
.who-card .more::after {
  content: "→";
  transition: transform .2s ease;
}
.who-card:hover .more::after { transform: translateX(3px); }

.who-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.who-lede {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}
.who-subhead {
  margin: 40px 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.who-subhead:first-of-type {
  margin-top: 28px;
}

@media (max-width: 960px) {
  .who-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   WHY LOCAL
------------------------------------------------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.why-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  display: block;
}
.why-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.why-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ------------------------------------------------------------------
   HOW IT WORKS
------------------------------------------------------------------ */
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step .num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.step h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.012em;
}
.step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 480px;
}

@media (max-width: 820px) {
  .step {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 24px;
  }
  .step p {
    grid-column: 2;
  }
  .step .num { font-size: 36px; }
}

/* ------------------------------------------------------------------
   MARKET CONTEXT
------------------------------------------------------------------ */
.market {
  background: var(--paper-2);
}
.market .wrap {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
}
.market .left .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.market .left h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-top: 14px;
}
.market .right {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.003em;
  max-width: 720px;
}
.market .right p + p { margin-top: 1.1em; }
.market .right h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  margin: 1.5em 0 0.45em;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.market .right h3:first-of-type { margin-top: 1.2em; }
.market .right ul {
  margin: 0.5em 0 0;
  padding-left: 1.25em;
  font-size: 0.92em;
  line-height: 1.55;
}
.market .right li + li { margin-top: 0.45em; }
.market .right a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.market .right strong { color: var(--ink); font-weight: 600; }
.market .right .pullquote {
  display: block;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-style: italic;
  margin: 1.5em 0;
  color: var(--ink);
}
.market .links {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 820px) {
  .market .wrap { grid-template-columns: 1fr; gap: 28px; }
}

/* ------------------------------------------------------------------
   SERVICE AREA
------------------------------------------------------------------ */
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.area-map {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.area-map svg.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-map .placeholder-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
}
.area-map .pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.area-map .pin .dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.area-map .pin .name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: var(--surface);
  padding: 3px 7px;
  border-radius: 3px;
  border: 1px solid var(--rule);
  text-transform: uppercase;
  white-space: nowrap;
}

.area-list h3 {
  font-size: clamp(28px, 2.6vw, 36px);
  margin-bottom: 22px;
}
.area-list .neighborhoods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.area-list .nb {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 4px 14px;
  border-bottom: 1px solid var(--rule-soft);
  transition: padding .2s ease;
  cursor: pointer;
}
.area-list .nb:hover { padding-left: 12px; }
.area-list .nb .name {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.area-list .nb:hover .name { color: var(--accent); }
.area-list .nb .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------------ */
.final {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(80px, 10vw, 160px);
}
.final h2 {
  color: var(--paper);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.022em;
  max-width: 900px;
  line-height: 1.04;
}
.final h2 .em { font-style: italic; color: color-mix(in srgb, var(--accent) 60%, var(--paper) 40%); }
.final .sub {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.5;
}
.final-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.final .btn-primary { background: var(--paper); color: var(--ink); }
.final .btn-primary:hover { background: #fff; }
.final .btn-ghost { color: var(--paper); border-color: rgba(246,242,234,0.25); }
.final .btn-ghost:hover { border-color: var(--paper); }
.final-meta {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------ */
.footer {
  background: var(--paper);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--rule);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 64px;
}
.footer .brand-block .logo { margin-bottom: 20px; }
.footer .brand-block .addr {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 320px;
}
.footer .brand-block .addr .em { color: var(--ink-2); font-weight: 500; display: block; margin-bottom: 4px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: baseline;
  justify-content: space-between;
}
.footer-bottom .legal {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.55;
}
.footer-bottom .copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .brand-block { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ------------------------------------------------------------------
   TWEAKS PANEL
------------------------------------------------------------------ */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 24px 48px -20px rgba(20,18,14,.3);
  padding: 18px;
  z-index: 100;
  font-family: var(--font-sans);
  font-size: 13px;
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel .ttitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweaks-panel .tclose {
  background: none; border: 0; color: var(--muted); font-size: 18px; line-height: 1; padding: 0;
}
.tweaks-panel .trow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
}
.tweaks-panel .trow:first-of-type { border-top: 0; }
.tweaks-panel label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.tweaks-panel .swatches {
  display: flex; gap: 8px;
}
.tweaks-panel .swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--rule);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
}
.tweaks-panel .swatch:hover { transform: scale(1.1); }
.tweaks-panel .swatch.is-on { border-color: var(--ink); }
.tweaks-panel .seg {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 2px;
  background: var(--paper);
}
.tweaks-panel .seg button {
  padding: 5px 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.tweaks-panel .seg button.is-on { background: var(--ink); color: var(--paper); }

/* ------------------------------------------------------------------
   INNER PAGES
------------------------------------------------------------------ */
.page-hero {
  padding-top: clamp(100px, 11vw, 140px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.page-hero .sub {
  margin-top: 20px;
  max-width: 640px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink-2);
}
.page-main {
  padding-bottom: var(--section-y);
}
.prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.prose h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 2.2em 0 0.6em;
}
.prose h2:first-child { margin-top: 0; }
.prose p + p { margin-top: 1.1em; }
.prose ul {
  margin: 1em 0 0;
  padding-left: 1.25em;
}
.prose li + li { margin-top: 0.5em; }
.prose li { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .lede { margin-bottom: 1.5em; }
.license-facts {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 0 2em;
}
.license-facts p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.license-facts p + p { margin-top: 12px; }
.license-facts .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.back-link:hover { gap: 12px; }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--stack-lg);
}
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.teaser-card h3 { font-size: 22px; }
.teaser-card p { color: var(--muted); font-size: 15px; flex-grow: 1; }
@media (max-width: 880px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   CONTACT FORM
------------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-aside h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 14px;
}
.contact-aside p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 20px;
}
.contact-aside .contact-detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.contact-aside .contact-detail strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 1px 0 rgba(20,18,14,.02), 0 24px 60px -40px rgba(20,18,14,.12);
}
.contact-form-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}
.contact-form-card .form-intro {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.003em;
}
.form-field label .req {
  color: var(--accent);
  margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field select:invalid,
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #b45309;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.booking-form .form-grid + .form-check {
  margin-top: 28px;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: var(--accent);
}
.form-check label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.form-check label a {
  color: var(--accent);
  font-weight: 500;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 4px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 36ch;
}
.form-status {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--error {
  background: #fdf4f0;
  border: 1px solid #e8c4b0;
  color: #6b3a1f;
}
.form-status--success {
  background: color-mix(in srgb, var(--accent-soft) 80%, var(--surface));
  border: 1px solid var(--rule);
  color: var(--ink-2);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.contact-form-card.is-submitting .btn-primary {
  opacity: 0.7;
  pointer-events: none;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.booking-step-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 28px 0 16px;
}
.booking-form .booking-step-title:first-of-type {
  margin-top: 0;
}
.booking-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}
.booking-error {
  font-size: 13px;
  color: #8b3a12;
  margin: 8px 0 0;
  min-height: 1.25em;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.slot-btn {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.slot-btn:hover {
  border-color: var(--accent);
  color: var(--accent-ink);
}
.slot-btn.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.form-sms-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 20px 0 0;
}
.form-sms-disclaimer a {
  color: var(--accent);
  font-weight: 500;
}
.booking-summary {
  margin: 12px 0 0;
}
.schedule-benefits {
  margin: 20px 0 0;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.schedule-benefits li + li {
  margin-top: 8px;
}

@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   MISC
------------------------------------------------------------------ */
::selection { background: var(--accent); color: #fff; }

