/* Mobile Mechanic Monty — site styles
   Dark industrial palette pulled from the logo: black, white, brand red.
   No framework, no build step. */

:root {
  --bg:          #0d0d0f;
  --surface:     #16161a;
  --surface-2:   #1d1d23;
  --surface-3:   #26262e;
  --border:      #2e2e38;
  --border-soft: #22222a;

  --text:        #f4f4f6;
  --text-muted:  #b3b3bf;
  --text-dim:    #8a8a97;

  /* Brand red. --brand is for accents and large text; --brand-btn is the darker
     fill that keeps white button labels above 4.5:1. --brand-light is for small
     text on dark, where the mid red falls just short. */
  --brand:       #ed1c24;
  --brand-btn:   #cf1119;
  --brand-hover: #b30e15;
  --brand-light: #ff6b70;

  --radius:    10px;
  --radius-lg: 16px;
  --wrap:      1200px;
  --shadow:    0 10px 30px rgb(0 0 0 / 45%);
  --shadow-lg: 0 24px 60px rgb(0 0 0 / 60%);

  --font-head: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-light); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1rem; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.wrap.narrow { width: min(100% - 2rem, 760px); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-btn); color: #fff; padding: .75rem 1.25rem;
  font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgb(13 13 15 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 56px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: .5rem .85rem; border-radius: var(--radius);
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: .95rem;
}
.site-nav a:hover { background: var(--surface-2); }
.site-nav a[aria-current="page"] { color: var(--brand-light); background: var(--surface-2); }

.header-call { flex: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; margin-left: auto;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; padding: 0 12px;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--border-soft); background: var(--surface); }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem; }
.mobile-nav a {
  display: block; padding: .9rem 1rem; border-radius: var(--radius);
  color: var(--text); text-decoration: none; font-weight: 600;
  font-family: var(--font-head); text-transform: uppercase; font-size: 1.25rem;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { background: var(--surface-2); color: var(--brand-light); }

@media (max-width: 960px) {
  /* .header-call is a .btn, and the .btn display rule is declared later in this
     file at equal specificity — so this hide needs the extra class to win. */
  .header-inner .header-call { display: none; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 46px; }
}

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, transform .1s;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-btn); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--surface-2); color: #fff; border-color: var(--brand); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-3); color: #fff; }
.btn-dark { background: #000; color: #fff; border-color: #333; }
.btn-dark:hover { background: var(--surface-2); color: #fff; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }
.btn-block + .btn-block { margin-top: .6rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-row.cta-lg .btn { padding: 1.05rem 1.9rem; font-size: 1.1rem; }

/* -------------------------------------------------------------------- hero */

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgb(13 13 15 / 96%) 0%, rgb(13 13 15 / 88%) 45%, rgb(13 13 15 / 55%) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 40%);
}
.hero-inner { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem); max-width: 760px; }
.hero h1 { margin-bottom: .35em; }
.hero h1::after {
  content: ''; display: block; width: 92px; height: 5px;
  background: var(--brand); margin-top: .45rem; border-radius: 3px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .85rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-light); margin-bottom: .9rem;
}
.lede { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--text-muted); max-width: 62ch; }
.hero-note, .cta-note {
  display: flex; align-items: center; gap: .45rem;
  margin-top: 1.1rem; color: var(--text-dim); font-size: .92rem;
}

/* --------------------------------------------------------------- sections */

.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border-soft); }
.section-head { max-width: 62ch; margin-bottom: 2.25rem; }
.section-head p { color: var(--text-muted); margin: 0; }

.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-head h1 { margin-bottom: .4em; }
.page-head .cta-row { margin-top: 1.5rem; }
.page-head-media { border-bottom: 1px solid var(--border-soft); }

.split { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
.split-wide { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split-wide { grid-template-columns: minmax(0, 1.6fr) minmax(280px, .9fr); }
}
.split-media .shot { margin: 0; }

.prose > h2 { margin-top: 2.25rem; }
.prose > h2:first-child { margin-top: 0; }
.prose p { color: var(--text-muted); max-width: 68ch; }

/* --------------------------------------------------------------- promises */

.promise-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.promise {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 1.6rem;
  border-top: 3px solid var(--brand);
}
.promise-icon { width: 2rem; height: 2rem; color: var(--brand); margin-bottom: .6rem; }
.promise h3 { margin-bottom: .4rem; }
.promise p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------------ cards */

.service-group + .service-group { margin-top: 3rem; }
.group-title {
  font-size: 1.15rem; letter-spacing: .12em; color: var(--brand-light);
  padding-bottom: .6rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
}
/* Counts that would otherwise strand a single card on its own row. */
@media (min-width: 1040px) {
  .card-grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
  .card-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
}
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.card-body h2, .card-body h3 { margin-bottom: .45rem; display: flex; align-items: center; gap: .4rem; }
.card-body h2 .icon, .card-body h3 .icon { color: var(--brand); }
.card-body p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: auto; color: var(--brand-light); font-weight: 700; font-size: .9rem;
}
.card:hover .card-link .icon { transform: translateX(3px); }
.card-link .icon { transition: transform .18s; }

.zips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.zips span {
  font-size: .78rem; padding: .18rem .5rem; border-radius: 5px;
  background: var(--surface-2); color: var(--text-dim); border: 1px solid var(--border-soft);
}
.zips-inline { margin-bottom: 0; }

/* ------------------------------------------------------------------ chips */

.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; font-weight: 600; font-size: .92rem;
}
.chip .icon { color: var(--brand); }
.chip:hover { border-color: var(--brand); background: var(--surface-3); color: #fff; }

/* ------------------------------------------------------------------ steps */

.steps {
  list-style: none; counter-reset: step; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.step-n {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-btn); color: #fff;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
}
.steps h3 { margin-bottom: .3rem; }
.steps p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ------------------------------------------------------------- check list */

.check-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .65rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-muted); }
.check-list .icon { color: var(--brand); margin-top: .3rem; }

/* ----------------------------------------------------------------- panels */

.sidebar { display: grid; gap: 1.25rem; align-content: start; }
@media (min-width: 900px) { .sidebar { position: sticky; top: 100px; } }

.panel {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 1.4rem;
}
.panel h2 {
  font-size: 1.15rem; letter-spacing: .06em; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .45rem;
}
.panel h2 .icon { color: var(--brand); }
.panel p { color: var(--text-muted); font-size: .93rem; }
.panel ul { margin: 0; padding-left: 1.1rem; color: var(--text-muted); font-size: .93rem; }
.panel ul li { margin-bottom: .45rem; }
.panel-alert { border-left: 3px solid var(--brand); }
.panel-cta { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border-color: var(--border); }

.plain-links { list-style: none; padding: 0; }
.plain-links a { display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; font-weight: 600; }
.plain-links .icon { color: var(--brand); }

/* -------------------------------------------------------------------- faq */

.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
}
.faq details[open] { border-color: var(--border); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; flex: none;
  font-family: var(--font-head); font-size: 1.6rem; line-height: 1;
  color: var(--brand); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--surface-2); }
.faq-a { padding: 0 1.25rem 1.15rem; }
.faq-a p { color: var(--text-muted); margin: 0; }

/* ---------------------------------------------------------------- gallery */

.gallery-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
}
@media (min-width: 700px) { .gallery-grid { gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); } }

.shot {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.split-media .shot { aspect-ratio: 5 / 4; }

.shot-btn {
  position: relative; display: block; width: 100%; height: 100%;
  padding: 0; border: 0; background: none; cursor: zoom-in;
}
.shot-zoom {
  position: absolute; right: .5rem; bottom: .5rem;
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: rgb(0 0 0 / 65%); color: #fff;
  opacity: 0; transition: opacity .18s;
}
.shot-btn:hover .shot-zoom, .shot-btn:focus-visible .shot-zoom { opacity: 1; }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.filter {
  padding: .5rem 1rem; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer;
}
.filter:hover { color: #fff; border-color: var(--brand); }
.filter.is-active { background: var(--brand-btn); border-color: var(--brand-btn); color: #fff; }

.gallery-empty { text-align: center; color: var(--text-dim); padding: 2rem 0; }

.lightbox {
  border: 0; padding: 0; max-width: min(96vw, 1100px); max-height: 94vh;
  background: transparent; color: var(--text); overflow: visible;
}
.lightbox::backdrop { background: rgb(0 0 0 / 88%); }
.lightbox img { border-radius: var(--radius); max-height: 82vh; width: auto; margin-inline: auto; box-shadow: var(--shadow-lg); }
.lightbox-caption { text-align: center; color: var(--text-muted); font-size: .92rem; margin: .85rem 0 0; }
.lightbox-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-btn); color: #fff; border: 0;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
@media (max-width: 600px) { .lightbox-close { top: 6px; right: 6px; } }

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

.quote-form {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem);
}
.quote-form h2 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row:has(.field-year) { grid-template-columns: 110px 1fr; }
}
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.req { color: var(--brand-light); }
.opt { color: var(--text-dim); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  font: inherit; font-size: 1rem;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); outline-offset: 0; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--brand); background: rgb(237 28 36 / 7%); }
.field input[type="file"] { padding: .6rem; background: var(--surface-2); cursor: pointer; }
.field-error { color: var(--brand-light); font-size: .85rem; margin: .35rem 0 0; }

.hint { color: var(--text-dim); font-size: .87rem; display: flex; align-items: flex-start; gap: .4rem; margin: .5rem 0 0; }
.hint .icon { margin-top: .2rem; flex: none; color: var(--brand); }
/* No icon here, so keep normal inline flow — flex would break the inline link
   out onto its own line. */
.form-foot { display: block; text-align: center; margin-top: 1rem; }

.thumbs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .85rem; }
.thumb { position: relative; width: 84px; height: 84px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute; top: 2px; right: 2px; width: 22px; height: 22px;
  border-radius: 50%; border: 0; background: rgb(0 0 0 / 78%); color: #fff;
  font-size: .95rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
}

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 1rem 0 0; font-weight: 600; text-align: center; }
.form-status.is-error { color: var(--brand-light); }
.form-status.is-ok { color: #4ade80; }
.is-sending { opacity: .6; pointer-events: none; }

/* ---------------------------------------------------------------- cta band */

.cta-band {
  background: linear-gradient(140deg, #1a0405, var(--surface) 55%);
  border-top: 3px solid var(--brand);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.cta-band p { color: var(--text-muted); max-width: 60ch; margin-inline: auto; }
.cta-band .cta-row { justify-content: center; margin-top: 1.5rem; }
.cta-band .cta-note { justify-content: center; }

/* -------------------------------------------------------------- crumbs */

.crumbs { border-bottom: 1px solid var(--border-soft); background: var(--surface); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: .7rem 0; font-size: .86rem; }
.crumbs li + li::before { content: '/'; color: var(--text-dim); margin-right: .4rem; }
.crumbs a { color: var(--text-dim); text-decoration: none; }
.crumbs a:hover { color: var(--brand-light); }
.crumbs span { color: var(--text-muted); }

/* ----------------------------------------------------------------- footer */

.site-footer { background: #08080a; border-top: 1px solid var(--border-soft); padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }

.foot-col h2 { font-size: 1.05rem; letter-spacing: .1em; color: var(--brand-light); margin-bottom: .9rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .5rem; }
.foot-col a { color: var(--text-muted); text-decoration: none; font-size: .93rem; }
.foot-col a:hover { color: #fff; }

.foot-brand img { height: 52px; width: auto; margin-bottom: .75rem; }
.foot-tagline { color: var(--brand-light); font-weight: 700; letter-spacing: .05em; font-size: .88rem; text-transform: uppercase; }
.foot-blurb { color: var(--text-muted); font-size: .93rem; max-width: 40ch; }
.foot-hours { display: flex; align-items: flex-start; gap: .45rem; color: var(--text-dim); font-size: .88rem; margin-top: .75rem; }
.foot-hours .icon { margin-top: .2rem; color: var(--brand); }

.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  border-top: 1px solid var(--border-soft); margin-top: 2.5rem; padding-top: 1.25rem;
  color: var(--text-dim); font-size: .85rem;
}
.foot-bottom p { margin: 0; }
.foot-bottom a { color: var(--text-dim); }

/* ------------------------------------------------------------- sticky cta */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .5rem; padding: .6rem .75rem;
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  background: rgb(8 8 10 / 96%); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { flex: 1; padding: .8rem .5rem; }
@media (max-width: 960px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ------------------------------------------------------------ small pages */

.center-page { text-align: center; padding-block: clamp(3rem, 9vw, 6rem); }
.center-page .lede { margin-inline: auto; }
.center-page .cta-row { justify-content: center; }
.center-page .btn + .btn { margin-left: .5rem; }
.big-check {
  width: 84px; height: 84px; margin: 0 auto 1.5rem;
  display: grid; place-items: center; border-radius: 50%;
  background: rgb(74 222 128 / 12%); border: 2px solid #4ade80; color: #4ade80;
}
.big-check .icon { width: 42px; height: 42px; stroke-width: 2.5; }
.page-plain .site-header { position: static; }
