/* ==========================================================
   Bad Ash Notary
   Visual language: a legal instrument. Ink navy, parchment,
   wax-seal red, brass. Serif headings, ruled margins,
   section marks, an embossed seal, signature rules.
   ========================================================== */

:root {
  --ink:       #0F1A2B;
  --ink-2:     #172439;
  --ink-3:     #22334D;
  --parch:     #F7F4EC;
  --parch-2:   #EFE9DB;
  --wax:       #8C2233;   /* wax as TEXT (eyebrows, rules) */
  --wax-lit:   #A82D40;
  --wax-btn:   #8C2233;   /* wax as a BUTTON GROUND under white text */
  --wax-btn-h: #A82D40;   /* ...and its hover */
  --brass:     #B0873F;   /* fills, bullets, borders — decorative only */
  --brass-text:#866631;   /* the same gold, dark enough to be TEXT (4.83:1) */
  --brass-lit: #D2A657;

  --bg:        var(--parch);
  --fg:        var(--ink);
  --fg-soft:   #4B5A70;
  --muted:     #5F6977;   /* AA on parchment (4.58:1) — #7A8798 was 3.32 and failed */
  --surface:   #FFFFFF;
  --surface-2: var(--parch-2);
  --border:    rgba(15,26,43,.14);
  --rule:      rgba(15,26,43,.09);

  --r:    10px;
  --r-lg: 16px;
  --wrap: 1140px;
  --shadow:    0 1px 2px rgba(15,26,43,.06), 0 10px 26px rgba(15,26,43,.07);
  --shadow-lg: 0 3px 8px rgba(15,26,43,.08), 0 26px 60px rgba(15,26,43,.16);

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           ui-serif, Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Consolas,
          "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0B131F;
    --fg:        #E8EDF5;
    --fg-soft:   #A9B6C8;
    --muted:     #7D8B9E;
    --surface:   #131E2E;
    --surface-2: #182436;
    --border:    rgba(232,237,245,.16);
    --rule:      rgba(232,237,245,.10);
    --wax:       #D8566B;   /* lightened so it stays readable AS TEXT on the dark ground */
    --wax-lit:   #E9788A;
    /* ...but that same light red fails under white BUTTON text (3.84:1), so the
       button ground stays deep. 5.65:1 for the label, 3.29:1 against the page. */
    --wax-btn:   #B8384E;
    --wax-btn-h: #C24457;
    --brass:     #D2A657;
    --brass-text:#D2A657;   /* 8.28:1 on the dark ground — no separate value needed */
    --brass-lit: #E4BF7C;
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 10px 26px rgba(0,0,0,.45);
    --shadow-lg: 0 3px 8px rgba(0,0,0,.45), 0 26px 60px rgba(0,0,0,.6);
  }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 78px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.sr, .skip:not(:focus) {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus {
  position: fixed; z-index: 999; top: 12px; left: 12px;
  background: var(--wax-btn); color: #fff; padding: 10px 16px; border-radius: 8px;
}
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--brass-text);
  outline-offset: 2px;
  border-radius: 5px;
}

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.012em;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); line-height: 1.04; }
h1 em { font-style: italic; color: var(--brass); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1.05em; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--wax); margin: 0 0 1em;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--fg-soft); max-width: 36em; }
.fine { font-size: .86rem; color: var(--muted); line-height: 1.55; }

/* section marks */
.sec-head { max-width: 46em; margin-bottom: 2.4rem; }
.sec-head .mark {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .16em;
  color: var(--brass-text); text-transform: uppercase; display: block; margin-bottom: .9rem;
}
.sec-head p { color: var(--fg-soft); margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--wax-btn);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r);
  padding: .78em 1.35em;
  font: inherit; font-weight: 600; font-size: .97rem;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 1px 2px rgba(15,26,43,.16);
}
.btn:hover { background: var(--wax-btn-h); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: .95em 1.7em; font-size: 1.03rem; }
.btn-sm { padding: .5em .95em; font-size: .87rem; }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--fg);
  border-color: var(--border); box-shadow: none;
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--fg-soft); }
.btn-brass { --btn-bg: var(--brass); --btn-fg: #1A1206; }
.btn-brass:hover { background: var(--brass-lit); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.head-inner { display: flex; align-items: center; gap: 1.2rem; height: 78px; }
.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo-mark { color: var(--wax); display: grid; place-items: center; }
.logo-type { display: grid; line-height: 1.05; }
.logo-type b { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; letter-spacing: -.01em; }
.logo-type i {
  font-style: normal; font-family: var(--mono);
  font-size: .63rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-text);
}

.nav { margin-left: auto; display: flex; align-items: center; }
.nav ul {
  display: flex; align-items: center; gap: .35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  text-decoration: none; padding: .5em .78em; border-radius: 8px;
  font-size: .93rem; font-weight: 500; color: var(--fg-soft);
}
.nav a:hover { color: var(--fg); background: var(--surface-2); }
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 9px; padding: .55em .6em; cursor: pointer; color: inherit;
}
.bars, .bars::before, .bars::after {
  display: block; width: 19px; height: 2px; background: currentColor; border-radius: 2px;
}
.bars { position: relative; }
.bars::before, .bars::after { content: ""; position: absolute; left: 0; }
.bars::before { top: -6px; }
.bars::after  { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav ul {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: .7rem 1.1rem 1.1rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav ul.open { display: flex; }
  .nav a { padding: .8em .6em; font-size: 1rem; }
  .nav a.btn { justify-content: center; margin-top: .4rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #EAF0F8;
  padding: clamp(3.4rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to bottom, transparent 0 43px, rgba(234,240,248,.045) 43px 44px);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; gap: clamp(2.4rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: center;
}
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; } }

.hero .eyebrow { color: var(--brass-lit); }
.hero h1 { color: #FFFFFF; }
.hero h1 em { color: var(--brass-lit); }
.hero .lede { color: #B9C6D8; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.9rem 0 1.4rem; }
.hero-cta .btn-ghost { --btn-fg: #EAF0F8; border-color: rgba(234,240,248,.28); }
.hero-cta .btn-ghost:hover { background: rgba(234,240,248,.09); border-color: rgba(234,240,248,.5); }

.hero-assure {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .89rem; color: #9FB0C6;
}
.hero-assure li { display: flex; align-items: center; gap: .45rem; }
.hero-assure svg { color: var(--brass-lit); flex: none; }

/* the embossed seal */
.seal-wrap { display: grid; place-items: center; }
.seal {
  position: relative; width: min(330px, 78vw); aspect-ratio: 1;
  display: grid; place-items: center; text-align: center;
  border-radius: 50%;
  color: var(--brass-lit);
  background:
    radial-gradient(circle at 32% 28%, rgba(210,166,87,.16), transparent 62%),
    rgba(255,255,255,.028);
  box-shadow:
    inset 0 0 0 2px rgba(210,166,87,.5),
    inset 0 0 0 11px rgba(210,166,87,.07),
    inset 0 0 0 13px rgba(210,166,87,.34),
    0 22px 60px rgba(0,0,0,.4);
}
.seal::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg, rgba(210,166,87,.42) 0deg 3.2deg, transparent 3.2deg 7.2deg);
  -webkit-mask: radial-gradient(circle, transparent 0 calc(50% - 9px), #000 calc(50% - 9px) 50%, transparent 50%);
          mask: radial-gradient(circle, transparent 0 calc(50% - 9px), #000 calc(50% - 9px) 50%, transparent 50%);
}
.seal-in { padding: 2.2rem 1.4rem; display: grid; gap: .35rem; }
.seal-in .s-top,
.seal-in .s-bot {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(210,166,87,.85);
}
.seal-in .s-name {
  font-family: var(--serif); font-size: 1.42rem; line-height: 1.15;
  color: #F2E4C6; margin: .3rem 0;
}
.seal-in .s-rule {
  width: 62%; height: 1px; background: rgba(210,166,87,.45);
  margin: .45rem auto;
}
.seal-in .s-meta {
  font-family: var(--mono); font-size: .62rem;
  color: rgba(210,166,87,.7); letter-spacing: .08em;
}

/* ---------- generic section ---------- */
.section { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.section-alt { background: var(--surface-2); }
.section + .section { border-top: 1px solid var(--rule); }
.section-alt + .section, .section + .section-alt { border-top: 0; }

/* ---------- trust strip ---------- */
.strip { background: var(--ink-2); color: #DCE5F0; padding: 1.1rem 0; }
.strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.2rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .13em;
  text-transform: uppercase; text-align: center;
}
.strip-inner span { display: inline-flex; align-items: center; gap: .5rem; }
.strip-inner b { color: var(--brass-lit); font-weight: 600; }

/* ---------- services ---------- */
.svc-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.svc {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.7rem 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.svc::before {
  content: ""; position: absolute; left: 26px; top: 0; bottom: 0;
  width: 1px; background: color-mix(in srgb, var(--wax) 22%, transparent);
}
.svc > * { position: relative; }
.svc-n {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  color: var(--brass-text); text-transform: uppercase; margin-bottom: .9rem; display: block;
}
.svc h3 { margin-bottom: .5rem; }
.svc p { color: var(--fg-soft); font-size: .96rem; }
.svc ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .45rem; }
.svc li { position: relative; padding-left: 1.5rem; font-size: .93rem; color: var(--fg-soft); }
.svc li::before {
  content: ""; position: absolute; left: .3rem; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.svc .svc-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rule); }
.svc .price { font-family: var(--serif); font-size: 1.3rem; margin: 0; color: var(--fg); }
.svc .price small { font-family: var(--sans); font-size: .8rem; color: var(--muted); font-weight: 400; }
.svc-feature { border-color: color-mix(in srgb, var(--brass) 45%, var(--border)); }
.flag {
  position: absolute; top: -11px; right: 18px;
  background: var(--brass); color: #1A1206;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .35em .7em; border-radius: 999px; font-weight: 600;
}

/* ---------- fee schedule ---------- */
.fees {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.fees-head {
  background: var(--ink); color: #EAF0F8; padding: 1.15rem 1.6rem;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem;
}
.fees-head h3 { margin: 0; color: #fff; font-size: 1.1rem; }
.fees-head span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brass-lit);
}
.fees table { width: 100%; border-collapse: collapse; }
.fees th, .fees td {
  text-align: left; padding: .92rem 1.6rem;
  border-bottom: 1px solid var(--rule); vertical-align: top;
}
.fees tbody tr:last-child th, .fees tbody tr:last-child td { border-bottom: 0; }
.fees th { font-weight: 600; font-size: .97rem; }
.fees th small { display: block; font-weight: 400; color: var(--muted); font-size: .84rem; margin-top: .15rem; }
.fees td { text-align: right; font-family: var(--mono); font-size: .95rem; white-space: nowrap; color: var(--fg); }
.fees .statutory td { color: var(--wax); }
.fees-note { padding: 1.1rem 1.6rem; background: var(--surface-2); border-top: 1px solid var(--rule); }
@media (max-width: 560px) {
  .fees th, .fees td { padding: .8rem 1.05rem; }
  .fees-head, .fees-note { padding-inline: 1.05rem; }
}

/* ---------- steps ---------- */
.steps { counter-reset: s; display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  position: relative; padding: 1.5rem 1.4rem 1.4rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: 2.1rem; font-weight: 500;
  color: color-mix(in srgb, var(--brass) 40%, transparent);
  display: block; line-height: 1; margin-bottom: .7rem;
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--fg-soft); font-size: .94rem; margin: 0; }

/* ---------- checklist panels ---------- */
.split {
  display: grid; gap: clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start;
}
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.7rem 1.6rem; box-shadow: var(--shadow);
}
.panel h3 { display: flex; align-items: center; gap: .6rem; }
.panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.panel li { position: relative; padding-left: 1.9rem; font-size: .95rem; color: var(--fg-soft); }
.panel li strong { color: var(--fg); font-weight: 600; }
.panel-do li::before {
  content: ""; position: absolute; left: 0; top: .33em;
  width: 1.15em; height: 1.15em; border-radius: 50%;
  background: color-mix(in srgb, var(--brass) 20%, transparent);
  box-shadow: inset 0 0 0 1px var(--brass);
}
.panel-do li::after {
  content: ""; position: absolute; left: .34em; top: .62em;
  width: .42em; height: .22em; border-left: 2px solid var(--brass-text);
  border-bottom: 2px solid var(--brass-text); transform: rotate(-45deg);
}
.panel-dont li::before {
  content: "\00d7"; position: absolute; left: .12em; top: -.02em;
  width: 1.15em; height: 1.15em; border-radius: 50%; text-align: center;
  line-height: 1.15em; font-weight: 700;
  color: var(--wax); background: color-mix(in srgb, var(--wax) 14%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--wax) 50%, transparent);
}

/* ---------- coverage ---------- */
.coverage-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 1.4rem 0 0; padding: 0; }
.coverage-list li {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .04em;
  border: 1px solid var(--border); border-radius: 999px;
  padding: .4em .95em; background: var(--surface); color: var(--fg-soft);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; max-width: 62em; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 600; font-size: 1rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 1.42rem;
  width: 9px; height: 9px;
  border-right: 2px solid var(--brass-text); border-bottom: 2px solid var(--brass-text);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--fg-soft); font-size: .96rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- booking ---------- */
.book { background: var(--ink); color: #E7EEF7; }
.book h2 { color: #fff; }
.book .sec-head p { color: #B3C1D4; }
.book .sec-head .mark { color: var(--brass-lit); }
.book-grid {
  display: grid; gap: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px); align-items: start;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1rem; }
.row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: .86rem; font-weight: 600; letter-spacing: .01em; color: #C7D4E4; }
.field label .req { color: var(--brass-lit); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(231,238,247,.2); border-radius: var(--r);
  padding: .72em .85em; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7E8DA1; }
.field select option { background: var(--ink-2); color: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass-lit); }
.field .hint { font-size: .8rem; color: #93A3B8; }
.field.bad input, .field.bad select, .field.bad textarea { border-color: var(--wax-lit); }
.field .err { font-size: .82rem; color: #FFB3BF; display: none; }
.field.bad .err { display: block; }

.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: .4rem; }
.form-note { font-size: .84rem; color: #93A3B8; margin: 0; }
.form-status {
  display: none; padding: .95rem 1.1rem; border-radius: var(--r);
  background: rgba(210,166,87,.14); border: 1px solid rgba(210,166,87,.45);
  font-size: .93rem; color: #F0E2C4;
}
.form-status.show { display: block; }

.book-aside { display: grid; gap: 1rem; }
.aside-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(231,238,247,.16);
  border-radius: var(--r-lg); padding: 1.35rem;
}
.aside-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.aside-card p { font-size: .92rem; color: #B3C1D4; margin-bottom: .9rem; }
.aside-card .btn { width: 100%; }
.aside-card .btn + .btn { margin-top: .55rem; }
.aside-hours { font-family: var(--mono); font-size: .84rem; color: #C7D4E4; display: grid; gap: .35rem; margin: 0; }
.aside-hours div { display: flex; justify-content: space-between; gap: 1rem; }
.aside-hours span { color: #8E9FB5; }

.sig-rule {
  margin: 2.2rem 0 0; border: 0; border-top: 1px dashed rgba(231,238,247,.3);
  position: relative;
}
.sig-rule::after {
  content: "Signed, sealed, delivered.";
  position: absolute; left: 0; top: -.72em;
  background: var(--ink); padding-right: .8rem;
  font-family: var(--serif); font-style: italic; font-size: .9rem; color: #8E9FB5;
}

/* ---------- unauthorized-practice-of-law notice ---------- */
.upl {
  border-left: 3px solid var(--wax);
  background: color-mix(in srgb, var(--wax) 7%, var(--surface));
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.2rem 1.4rem; max-width: 62em;
}
.upl h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.upl p { margin-bottom: 0; font-size: .94rem; color: var(--fg-soft); }

/* ---------- footer ---------- */
.site-foot {
  background: var(--ink); color: #9FB0C6;
  padding: 3rem 0 2.2rem; font-size: .9rem;
}
.foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.foot-grid h4 {
  color: #E7EEF7; font-size: .95rem; margin-bottom: .7rem;
  font-family: var(--sans); font-weight: 600;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: #fff; text-decoration: underline; }
.foot-commission { font-family: var(--mono); font-size: .78rem; line-height: 1.7; color: #8E9FB5; }
.foot-bottom {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(231,238,247,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center;
  font-size: .84rem;
}
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { text-decoration: underline; color: #fff; }
.foot-bottom .spacer { margin-left: auto; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: .5rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(231,238,247,.16);
}
.callbar .btn { flex: 1; }
@media (max-width: 720px) {
  .callbar.on { display: flex; }
  body.has-callbar { padding-bottom: 72px; }
}

.hidden { display: none !important; }
