/* =====================================================================
   Bright Star Bookkeeping LLC — stylesheet
   Plain CSS, no build step. Organized as:
   1. Tokens  2. Reset  3. Layout  4. Header  5. Components
   6. Sections  7. Footer  8. Utilities  9. Responsive
   ===================================================================== */

/* 1. Tokens ---------------------------------------------------------- */
:root {
  --navy-900: #0b1524;
  --navy-800: #12253f;

  --bg:        #ffffff;
  --surface:   #f6f9fc;
  --surface-2: #eef3f9;
  --line:      #e1e8f2;
  --text:      #16233a;
  --muted:     #55637b;

  --accent:      #2f6b41;
  --accent-soft: #e9f3ec;
  --gold:        #b8912f;
  --gold-soft:   #fbf3dd;

  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 1px 2px rgba(16, 33, 58, .05), 0 12px 28px -14px rgba(16, 33, 58, .18);
  --shadow-lg: 0 2px 4px rgba(16, 33, 58, .05), 0 26px 50px -20px rgba(16, 33, 58, .28);

  --container: 1120px;
  --header-h:  74px;

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0b1524;
    --surface:   #101e33;
    --surface-2: #16273f;
    --line:      #22334d;
    --text:      #e9eff8;
    --muted:     #a3b4cc;

    --accent:      #5fbb79;
    --accent-soft: #14301f;
    --gold:        #eaca72;
    --gold-soft:   #33290f;

    --shadow:    0 1px 2px rgba(0, 0, 0, .4), 0 12px 28px -14px rgba(0, 0, 0, .7);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, .4), 0 26px 50px -20px rgba(0, 0, 0, .8);
  }
}

/* 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--text);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.05rem, 4.8vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration: none; }

ul { margin: 0 0 1rem; padding-left: 1.1rem; }
li { margin-bottom: .35rem; }

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

/* 3. Layout ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container--narrow { max-width: 820px; }

.section { padding: clamp(54px, 8vw, 94px) 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section--tight { padding-block: clamp(40px, 6vw, 64px); }

.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .7rem;
}

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* 4. Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.15;
}
.brand__mark { width: 44px; height: 44px; flex: none; object-fit: contain; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.02em;
  display: block;
}
.brand__tag {
  display: block;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li { margin: 0; }
.nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .96rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .16s ease, background .16s ease;
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav__cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* 5. Components ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, background .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(47, 107, 65, .8);
}
.btn--primary:hover { background: #255536; }

@media (prefers-color-scheme: dark) {
  .btn--primary { color: var(--navy-900); box-shadow: none; }
  .btn--primary:hover { background: #7cd095; }
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--muted); background: var(--surface-2); }

.btn--sm { padding: 9px 17px; font-size: .9rem; }
.btn--block { width: 100%; }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.card--flat { box-shadow: none; }

.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.card__icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.card__link:hover { text-decoration: underline; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .55rem;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%232f6b41%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpolyline points=%2220 6 9 17 4 12%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.check-list--tight li { margin-bottom: .3rem; font-size: .96rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #7d5f14;
  font-size: .79rem;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) { .badge { color: var(--gold); } }

/* 6. Sections -------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 98px) 0 clamp(48px, 7vw, 84px);
  background:
    radial-gradient(900px 420px at 80% -10%, var(--accent-soft), transparent 62%),
    radial-gradient(700px 380px at 2% 4%, var(--gold-soft), transparent 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero__lede {
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__note { font-size: .91rem; color: var(--muted); margin: 0; }

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.panel__title {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.ledger { list-style: none; margin: 0; padding: 0; }
.ledger li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  margin: 0;
  font-size: .95rem;
}
.ledger li:last-child { border-bottom: 0; padding-bottom: 0; }
.ledger__label { color: var(--muted); }
.ledger__value { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.ledger__value--ok { color: var(--accent); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
}
.stat__label { font-size: .89rem; color: var(--muted); }

.step { position: relative; padding-left: 60px; }
.step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .step__num { background: var(--accent); color: var(--navy-900); }
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .97rem; }

/* Detailed service blocks (services page) */
.service-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}
.service-block + .service-block { margin-top: 22px; }
.service-block__intro p { color: var(--muted); font-size: .97rem; }
.service-block__list { columns: 2; column-gap: 34px; }
.service-block__list li { break-inside: avoid; }

.bundle {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  font-size: .93rem;
}
.bundle strong { font-weight: 600; }

.note-band {
  border: 1px dashed color-mix(in srgb, var(--accent) 45%, var(--line));
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.note-band h3 { margin-bottom: .35rem; }
.note-band p { margin-bottom: 0; }

/* About / bio */
.bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.bio__aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}
.bio__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (prefers-color-scheme: dark) {
  .bio__avatar { background: var(--accent); color: var(--navy-900); }
}
.bio__name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: .1rem; }
.bio__role { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 26px 26px;
  margin: 0;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
}
.timeline h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.timeline p { color: var(--muted); font-size: .97rem; margin: 0; }
.timeline .timeline__org {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .25rem;
}

.cta-band {
  background: var(--navy-800);
  color: #fff;
  border-radius: 18px;
  padding: clamp(32px, 5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { color: #bccbe0; margin: 0; max-width: 48ch; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .38); }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .65); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (prefers-color-scheme: dark) { .cta-band { border: 1px solid var(--line); } }

.page-head {
  padding: clamp(42px, 6vw, 70px) 0 clamp(30px, 4vw, 46px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-head p { color: var(--muted); font-size: 1.05rem; max-width: 62ch; margin-bottom: 0; }

.prose p { color: var(--muted); }
.prose h2 { margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 2px 22px;
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  color: var(--muted);
  font-size: .97rem;
  padding-bottom: 18px;
  margin: 0;
  max-width: 70ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: .97rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.form-note { font-size: .86rem; color: var(--muted); margin-top: 14px; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  font-size: .93rem;
}
.form-status.is-visible { display: block; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.info-list li:last-child { border-bottom: 0; }
.info-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  font-weight: 600;
}
.info__value { font-weight: 500; overflow-wrap: anywhere; }
.info-list a { color: var(--text); text-decoration: none; }
.info-list a:hover { color: var(--accent); text-decoration: underline; }

/* 7. Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 54px 0 26px;
  font-size: .94rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.site-footer p { color: var(--muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; overflow-wrap: anywhere; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .87rem;
}

/* 8. Utilities ------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Scroll reveal. The hidden state is scoped to .js — a class the page adds to
   <html> before first paint — so if scripting is off or main.js fails to load,
   the content is simply visible rather than stuck at opacity 0. */
.reveal { transition: opacity .5s ease, transform .5s ease; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* 9. Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .service-block { grid-template-columns: 1fr; gap: 22px; }
  .bio { grid-template-columns: 1fr; }
  .bio__aside { position: static; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 22px 20px;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 12px 10px; font-size: 1rem; }
  .nav__cta { margin: 10px 0 0; }
  .nav__cta .btn { width: 100%; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .service-block__list { columns: 1; }
  .service-block { padding: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
}

/* 10. Phone refinements ----------------------------------------------- */
@media (max-width: 700px) {
  /* iOS zooms the viewport when a focused field is under 16px. */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* Full-width calls to action are easier to hit with a thumb. */
  .hero__actions .btn,
  .cta-band__actions .btn { flex: 1 1 100%; }

  /* Roomier footer link targets. */
  .site-footer li { margin-bottom: .85rem; }
  .site-footer a { display: inline-block; padding-block: 3px; }

  /* "See what is included" sits alone at the foot of a card — give it a
     thumb-sized strike area rather than the bare 24px line box. */
  .card__link { padding-block: 7px; }
}

@media (max-width: 400px) {
  .container { padding-inline: 18px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1rem; }
  .brand__tag { font-size: .63rem; letter-spacing: .1em; }
  .card, .service-block { padding: 20px; }
  .panel { padding: 22px; }
  .ledger li { font-size: .9rem; }
}
