/* Bellevue Notary — production port of "Bellevue Notary v2" design canvas.
   Palette: paper/ink with evergreen + terracotta accents; Cormorant Garamond
   display over Archivo body, IBM Plex Mono for wayfinding. */

:root {
  --paper: #f4f2ec;
  --paper-mid: #efeee5;
  --paper-deep: #eaeadf;
  --card: #fbfaf5;
  --ink: #1a241d;
  --ink-75: rgba(26, 36, 29, .75);
  --ink-72: rgba(26, 36, 29, .72);
  /* Muted-ink floor: .66 alpha on this paper is ~4.9:1 — the WCAG AA minimum
     for the small text these tokens are used on. Do not lower. */
  --ink-60: rgba(26, 36, 29, .68);
  --ink-55: rgba(26, 36, 29, .66);
  --ink-50: rgba(26, 36, 29, .66);
  --ink-45: rgba(26, 36, 29, .66);
  --line: rgba(26, 36, 29, .16);
  --green: #1f5940;
  --green-dark: #17422f;
  --green-mid: #2f7355;
  --terracotta: #a54a26;
  --terracotta-dark: #85391b;
  --terracotta-light: #d59470;
  --night: #0f1d16;
  --night-ink: #ece9df;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --edge: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: clip;
}

a { color: var(--green); }
a:hover { color: var(--terracotta); }
::selection { background: rgba(47, 115, 85, .22); }
:focus-visible { outline: 2px solid var(--green-mid); outline-offset: 2px; }
input::placeholder { color: rgba(26, 36, 29, .4); }

/* Paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

@keyframes bnSpin { to { transform: rotate(360deg); } }
@keyframes bnTicker { to { transform: translateX(-50%); } }
@keyframes bnPulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 115, 85, .45); }
  70% { box-shadow: 0 0 0 10px rgba(47, 115, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 115, 85, 0); }
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 300;
  background: var(--green);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus-visible { top: 0; color: var(--paper); }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--edge); padding-right: var(--edge); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nav.is-scrolled {
  background: rgba(244, 242, 236, .84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(26, 36, 29, .12);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-75);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--terracotta); }
.nav-phone {
  flex: none;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--green-dark);
  border: 1px solid rgba(31, 89, 64, .45);
  border-radius: 999px;
  padding: 9px 18px;
  background: rgba(244, 242, 236, .5);
  transition: all .25s ease;
}
.nav-phone:hover { background: var(--green); color: var(--paper); border-color: var(--green); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-mid) 70%, var(--paper-deep) 100%);
}
.hero-glow {
  position: absolute;
  right: 12%;
  bottom: clamp(160px, 30vw, 340px);
  width: clamp(180px, 26vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 197, 164, .75) 0%, rgba(238, 197, 164, .28) 42%, rgba(238, 197, 164, 0) 70%);
}
.wave { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; display: block; }
.wave-1 { height: clamp(170px, 30vw, 320px); }
.wave-2 { height: clamp(120px, 23vw, 245px); }
.wave-3 { height: clamp(80px, 16vw, 175px); }
.wave-4 { height: clamp(44px, 8vw, 90px); bottom: -2px; }
.hero-mist {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(70px, 13vw, 150px);
  height: clamp(80px, 14vw, 160px);
  background: linear-gradient(to bottom, rgba(244, 242, 236, 0), rgba(244, 242, 236, .75), rgba(244, 242, 236, 0));
}

.seal {
  position: absolute;
  top: clamp(90px, 16vh, 160px);
  right: clamp(24px, 7vw, 110px);
  width: clamp(130px, 13vw, 180px);
  z-index: 1;
}
.seal-spin { animation: bnSpin 28s linear infinite; }
.seal svg { display: block; width: 100%; height: auto; }
.seal-text { font-family: var(--mono); font-size: 13.5px; letter-spacing: 3px; fill: var(--terracotta); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(110px, 16vh, 170px) var(--edge) clamp(190px, 30vw, 330px);
}
.eyebrow {
  margin: 0 0 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 8.6vw, 124px);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 12ch;
}
.hero-line-mask { display: block; overflow: hidden; padding-bottom: .06em; }
.hero-line-mask:last-child { padding-bottom: .12em; }
.hero-line { display: block; }
.hero-line em { font-style: italic; font-weight: 500; }
/* A real space precedes .sig-word in the markup (so extracted text keeps the
   word break); the margin only tops it up to the design's .24em gap. */
.sig-word { position: relative; display: inline-block; margin-left: .04em; }
.sig-underline {
  position: absolute;
  left: -2%;
  bottom: -0.08em;
  width: 104%;
  height: auto;
  overflow: visible;
}
.sig-underline path { stroke-dasharray: 230; }
.hero-sub {
  margin: 34px 0 0;
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  line-height: 1.7;
  color: var(--ink-75);
  max-width: 56ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--paper);
  padding: 16px 30px;
  box-shadow: 0 1px 0 rgba(23, 66, 47, .2);
  border: 0;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 66, 47, .25);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  color: var(--ink);
  padding: 15px 28px;
  border: 1px solid rgba(26, 36, 29, .28);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(26, 36, 29, .04); color: var(--ink); }
.btn-outline .icon { color: var(--green); }

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border: 1px solid rgba(47, 115, 85, .35);
  background: rgba(47, 115, 85, .07);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: bnPulse 2.2s infinite;
}

/* ---------- Ticker ---------- */

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 0;
}
.ticker-track { display: flex; width: max-content; animation: bnTicker 38s linear infinite; }
.ticker-track > span {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-right: .5em;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-pause {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(26, 36, 29, .3);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, color .2s ease;
}
.ticker-pause:hover { border-color: var(--terracotta); color: var(--terracotta); }
html.motion-paused .ticker-track,
html.motion-paused .seal-spin,
html.motion-paused .pulse-dot { animation-play-state: paused !important; }

/* ---------- Sections ---------- */

.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-flush-top { padding-top: 0; }
.section-services { padding-top: clamp(60px, 8vw, 110px); }

.sec-label {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.sec-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.sec-title em { font-weight: 500; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.split-tight {
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.split-400 { grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); }

.lede { margin: 26px 0 0; font-size: 16px; line-height: 1.7; color: var(--ink-75); max-width: 52ch; }

/* ---------- Availability form ---------- */

.contact-hint { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.contact-hint .icon { font-size: 26px; color: var(--green-mid); flex: none; }
.contact-hint p { margin: 0; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--ink-60); }

.avail-form {
  background: var(--card);
  border: 1px solid rgba(26, 36, 29, .12);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 24px 60px -30px rgba(26, 36, 29, .25);
}
.field-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
}
.field-label + .field-label, .avail-form .field-gap { margin-top: 18px; }
.addr-row { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid rgba(26, 36, 29, .18);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.loc-btn:hover { border-color: var(--green-mid); background: rgba(47, 115, 85, .08); }
.loc-btn .icon { color: var(--green-mid); }
.text-input {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(26, 36, 29, .18);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.addr-row .text-input { flex: 1 1 200px; min-width: 0; width: auto; }
.text-input:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(47, 115, 85, .16); }
.avail-submit {
  width: 100%;
  margin-top: 22px;
  background: var(--green);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.avail-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(23, 66, 47, .28); }
.avail-submit:active { transform: translateY(0); }
.avail-error { margin: 16px 0 0; font-size: 14px; line-height: 1.5; color: var(--terracotta-dark); }
.avail-result {
  margin-top: 26px;
  border-top: 2px dashed rgba(26, 36, 29, .22);
  padding-top: 20px;
  position: relative;
}
.avail-result-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.avail-result-time {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1;
  color: var(--green-dark);
}
.avail-result-copy { margin: 14px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-75); max-width: 44ch; }
.avail-result-copy strong { color: var(--ink); font-weight: 600; }
.avail-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all .25s ease;
}
.avail-send:hover { background: var(--green-dark); color: var(--paper); transform: translateY(-1px); }
.avail-alt { margin: 12px 0 0; font-size: 13px; line-height: 1.5; color: var(--ink-60); }
.stamp {
  position: absolute;
  top: 24px;
  right: 0;
  transform: rotate(-8deg);
  border: 2px solid var(--terracotta);
  border-radius: 6px;
  box-shadow: inset 0 0 0 3px var(--card), inset 0 0 0 4px var(--terracotta);
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(251, 250, 245, .6);
}

/* ---------- Services ---------- */

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px) 12px;
  margin: 0 -12px;
  transition: background .3s ease;
}
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row:hover { background: rgba(47, 115, 85, .045); }
.service-num { flex: 0 0 52px; font-family: var(--mono); font-size: 12px; color: var(--terracotta); padding-top: 10px; }
.service-name { flex: 1 1 220px; margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.1; }
.service-desc { flex: 1.6 1 320px; margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-72); max-width: 58ch; }
.service-row .icon { flex: none; font-size: 30px; color: var(--green-mid); padding-top: 6px; }
.services-head { margin-bottom: clamp(36px, 4vw, 56px); }

/* ---------- Steps ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 34px; }
.steps li { position: relative; display: flex; gap: 22px; }
.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: -30px;
  border-left: 1px dashed rgba(26, 36, 29, .28);
}
.step-num {
  flex: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26, 36, 29, .32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.step-title { margin: 2px 0 8px; font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.1; }
.step-copy { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-72); max-width: 44ch; }
.steps-head { margin-bottom: clamp(30px, 3.4vw, 46px); }

.photo-figure { margin: 0; }
.photo-card {
  background: var(--card);
  border: 1px solid rgba(26, 36, 29, .12);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 30px 70px -34px rgba(26, 36, 29, .35);
  transform: rotate(.6deg);
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 986 / 660;
  object-fit: cover;
  border-radius: 10px;
}
.photo-credit {
  margin: 14px 4px 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ---------- On call (night section) ---------- */

.oncall {
  background: var(--night);
  background-image:
    radial-gradient(circle at 84% 16%, rgba(238, 197, 164, .14), transparent 40%),
    radial-gradient(2px 2px at 18% 24%, rgba(244, 242, 236, .5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 32% 12%, rgba(244, 242, 236, .4) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 56% 20%, rgba(244, 242, 236, .35) 50%, transparent 51%),
    radial-gradient(2px 2px at 72% 32%, rgba(244, 242, 236, .3) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 90% 44%, rgba(244, 242, 236, .35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 8% 52%, rgba(244, 242, 236, .28) 50%, transparent 51%);
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.oncall-wave {
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(60px, 10vw, 120px);
  display: block;
  opacity: .55;
}
.oncall-inner { position: relative; padding-top: clamp(90px, 11vw, 150px); padding-bottom: clamp(90px, 11vw, 150px); }
.oncall .sec-label { color: var(--terracotta-light); }
.oncall-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--night-ink);
  max-width: 16ch;
}
.oncall-title em { font-weight: 500; }
.oncall-copy { margin: 28px 0 0; font-size: 16px; line-height: 1.7; color: rgba(236, 233, 223, .72); max-width: 56ch; }
.night-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236, 233, 223, .65);
}
.night-pill .pulse-dot { background: #74b493; }
.night-pill .night-clock { color: var(--night-ink); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 28px;
  margin-top: clamp(44px, 5vw, 70px);
}
.stat { border-left: 1px solid rgba(236, 233, 223, .18); padding-left: 22px; }
.stat-value {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--night-ink);
}
.stat-label {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(236, 233, 223, .55);
}
.oncall-cta { margin-top: clamp(40px, 5vw, 60px); }
.btn-light {
  background: var(--night-ink);
  color: #10201a;
  padding: 16px 30px;
}
.btn-light:hover { background: #fff; color: #10201a; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .35); }
.btn-light .icon { color: var(--terracotta); }

/* ---------- Pricing ---------- */

.price-list { margin: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 22px 10px;
  margin: 0 -10px;
  transition: background .3s ease;
}
.price-row:last-of-type { border-bottom: 1px solid var(--line); }
.price-row:hover { background: rgba(47, 115, 85, .045); }
.price-item { font-size: 16px; line-height: 1.5; }
.price-leader { flex: 1; border-bottom: 1px dotted rgba(26, 36, 29, .35); min-width: 24px; transform: translateY(-4px); }
.price-amt { margin: 0; font-family: var(--mono); font-size: 18px; font-weight: 500; white-space: nowrap; }
.price-amt small { font-size: 11px; font-weight: 400; color: var(--ink-50); }
.price-fine {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-45);
  line-height: 1.8;
}
.pricing-note { margin: 26px 0 0; font-size: 15.5px; line-height: 1.7; color: rgba(26, 36, 29, .7); max-width: 46ch; }
.callout {
  margin-top: 30px;
  border: 1px dashed rgba(165, 74, 38, .5);
  border-radius: 12px;
  padding: 20px 22px;
  max-width: 44ch;
  background: rgba(165, 74, 38, .04);
}
.callout-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.callout p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: rgba(26, 36, 29, .8); }
.callout strong { font-weight: 600; color: var(--ink); }

/* ---------- Service area ---------- */

.legend { display: grid; gap: 12px; margin-top: 30px; }
.legend-row { display: flex; align-items: center; gap: 12px; }
.legend-dot-home {
  flex: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--card);
  box-shadow: 0 0 0 1px rgba(165, 74, 38, .4);
}
.legend-dot-run {
  flex: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(47, 115, 85, .28);
  border: 2px solid var(--green);
}
.legend-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(26, 36, 29, .65);
}
.area-map { display: block; width: 100%; max-width: 520px; height: auto; margin: 0 auto; }
.map-lake-label { font-family: var(--serif); font-style: italic; font-size: 16px; fill: var(--ink-55); }
.map-lake-label-sm { font-family: var(--serif); font-style: italic; font-size: 12.5px; fill: var(--ink-55); }
.map-road { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; fill: var(--ink-55); }
.map-n { font-family: var(--mono); font-size: 10px; fill: var(--ink-55); }
.map-city {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  fill: var(--ink);
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: 3.5px;
  stroke-linejoin: round;
}
.map-city-home { font-size: 12.5px; font-weight: 600; }

/* ---------- FAQ ---------- */

.faq-wrap { max-width: 900px; margin: 0 auto; padding: 0 var(--edge); }
.faq-head { margin-bottom: clamp(26px, 3vw, 40px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-h { margin: 0; font: inherit; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.faq-q { font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.2vw, 25px); line-height: 1.2; }
.faq-btn .icon { flex: none; font-size: 20px; color: var(--green-mid); transition: transform .4s ease; }
.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .5s cubic-bezier(.2, .8, .2, 1);
}
html.js .faq-panel { grid-template-rows: 0fr; }
.faq-panel-inner { overflow: hidden; min-height: 0; }
/* A collapsed panel is also marked `inert` from main.js, which is what actually
   takes it out of the accessibility tree, the focus order and find-in-page —
   `grid-template-rows: 0fr` only clips it visually. Kept in JS rather than CSS
   because it must not fight the collapse animation. */
.faq-a { margin: 0; padding: 0 0 24px; font-size: 15.5px; line-height: 1.7; color: var(--ink-72); max-width: 62ch; }

/* ---------- Contact / close ---------- */

.contact { padding: 0 0 clamp(70px, 8vw, 110px); }
.contact-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.contact-title em { font-weight: 500; position: relative; display: inline-block; }
.contact-title .sig-underline { left: -1%; bottom: -0.1em; width: 102%; }
.contact-copy { margin: 30px 0 0; font-size: 16px; line-height: 1.7; color: var(--ink-75); max-width: 56ch; }
.contact-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.contact-ctas .btn-primary { font-size: 16px; padding: 18px 34px; }
.contact-ctas .btn-outline { font-size: 16px; padding: 17px 32px; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid rgba(26, 36, 29, .14); }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 3.4vw, 44px) var(--edge);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-name { font-family: var(--serif); font-weight: 600; font-size: 18px; }
.footer-url {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-55);
  text-decoration: none;
  margin-left: 8px;
}
.footer-url:hover { color: var(--terracotta); }
.footer-legal {
  margin: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-50);
  line-height: 1.8;
  max-width: 64ch;
}

/* ---------- Icons ---------- */

.icon { width: 1em; height: 1em; flex: none; display: inline-block; vertical-align: -0.12em; }
.icon-lg { font-size: 17px; }

/* ---------- Responsive ---------- */

@media (max-width: 799px) {
  .nav-links { display: none; }
  .seal { display: none; }
  .stamp { position: static; display: inline-block; margin-top: 16px; }
}

/* ---------- Print ---------- */

@media print {
  [data-reveal], [data-reveal-fade], [data-fadein], [data-heroline] {
    opacity: 1 !important;
    transform: none !important;
  }
  /* `!important` beats the inline 0fr JS leaves on a collapsed panel. `inert`
     needs no undoing here — it hides a panel from assistive tech, not from ink. */
  html.js .faq-panel { grid-template-rows: 1fr !important; }
  .nav, .skip-link, .ticker, .faq-btn .icon { display: none; }
  .hero { min-height: 0; }
  body::after { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker-track { animation: none; }
  .seal-spin { animation: none; }
  .ticker-pause { display: none; }
}
