/* Accessible Austin Initiative — shared styles
   Design system: "Civic Warmth"
   Brand teal #1F4E5F expanded into a token scale, warm paper surfaces,
   burnt-amber accent. Goals: exemplary accessibility (AA+ contrast,
   visible focus, reduced-motion support), warm/trustworthy civic feel. */

:root {
  /* Brand scale */
  --brand-950: #0B222A;
  --brand-900: #123540;
  --brand-800: #17414F;
  --brand-700: #1F4E5F;   /* core brand teal */
  --brand-600: #2A6174;
  --brand-100: #D9E6EA;
  --brand-50:  #EDF3F5;

  /* Accent (burnt amber) */
  --accent-700: #92400E;
  --accent-800: #7A3408;
  --accent-100: #FBE9D7;
  --accent-50:  #FDF4EA;

  /* Neutrals */
  --paper: #FAF8F4;
  --surface: #FFFFFF;
  --ink: #1D2B30;
  --ink-soft: #46585E;
  --line: #DFE5E4;
  --line-strong: #C6D0D1;

  /* Focus ring — warm gold, visible on light and dark surfaces */
  --focus: #D97706;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", "Segoe UI", Arial, Helvetica, sans-serif;

  /* Layout */
  --max-width: 1120px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(18, 43, 51, 0.06), 0 1px 3px rgba(18, 43, 51, 0.08);
  --shadow-md: 0 4px 12px rgba(18, 43, 51, 0.08), 0 2px 4px rgba(18, 43, 51, 0.06);
  --shadow-lg: 0 12px 32px rgba(18, 43, 51, 0.14);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 200ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand-900);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 0.5em; }
h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin: 1.6em 0 0.55em; }
h3 { font-size: 1.2rem; margin: 1.2em 0 0.4em; }

p { margin: 0 0 1em; max-width: 66ch; }

a {
  color: var(--brand-600);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease-out);
}
a:hover { color: var(--brand-900); }

strong { color: var(--brand-950); }

/* Visible focus for keyboard navigation everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--brand-100); color: var(--brand-950); }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--brand-950);
  color: #fff;
  padding: 14px 22px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- Header ---------- */

header.site-header {
  background: var(--brand-950);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: #fff; opacity: 0.92; }
.brand svg { flex-shrink: 0; }

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  touch-action: manipulation;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

nav.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

nav.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
nav.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--focus);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: background var(--dur) var(--ease-out);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { display: block; }

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

.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(42, 97, 116, 0.55) 0%, rgba(42, 97, 116, 0) 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(146, 64, 14, 0.28) 0%, rgba(146, 64, 14, 0) 55%),
    linear-gradient(150deg, var(--brand-900) 0%, var(--brand-950) 100%);
  color: #fff;
  padding: 88px 24px 120px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #F3E9DC;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero .eyebrow-pill svg { flex-shrink: 0; }

.hero h1 {
  color: #fff;
  max-width: 17ch;
  margin-bottom: 0.45em;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 58ch;
  color: #CDDCE1;
  line-height: 1.7;
}

.hero-arc {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  pointer-events: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--accent-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  background: var(--surface);
  color: var(--brand-700);
  border-color: var(--brand-600);
}
.btn-outline:hover {
  background: var(--brand-50);
  color: var(--brand-900);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-700);
  border-bottom: 2px solid var(--brand-100);
  padding-bottom: 2px;
  transition: gap var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.arrow-link:hover { gap: 10px; border-color: var(--brand-600); color: var(--brand-900); }

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

.stat-strip {
  max-width: var(--max-width);
  margin: -56px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.stat-grid > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px 20px 22px;
  text-align: center;
}
.stat-grid .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--brand-700);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-grid .label { color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; }

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

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: 10px;
}
.eyebrow + h1, .eyebrow + h2 { margin-top: 0; }

.band {
  background: var(--brand-50);
  border-top: 1px solid var(--brand-100);
  border-bottom: 1px solid var(--brand-100);
}
.band .section { padding-top: 56px; padding-bottom: 56px; }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 28px 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-md); }

.card h3 { margin-top: 14px; }
.card h2 { margin-top: 0; }

.card-accent-full { border-top: 4px solid var(--brand-600); }
.card-accent-progress { border-top: 4px solid var(--accent-700); }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  margin-bottom: 4px;
}
.icon-badge-accent { background: var(--accent-50); color: var(--accent-700); }

/* ---------- Badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 6px;
  padding: 7px 13px 6px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.badge svg { flex-shrink: 0; }
.badge-full {
  background: var(--brand-700);
  color: #fff;
}
.badge-progress {
  background: var(--accent-50);
  color: var(--accent-800);
  border: 1.5px solid var(--accent-700);
}

/* ---------- Tables ---------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 2em;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
th, td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { background: var(--brand-50); color: var(--brand-900); font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* ---------- Disclaimer / note ---------- */

.disclaimer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-600);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.disclaimer svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-600); }
.disclaimer strong { color: var(--brand-900); }
.disclaimer > div { max-width: 70ch; }

/* ---------- How it works steps ---------- */

ol.steps {
  list-style: none;
  counter-reset: step;
  margin: 28px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
ol.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
ol.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
ol.steps li strong { color: var(--brand-900); }
ol.steps li { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.6; }
ol.steps li::before { display: flex; }

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

footer.site-footer {
  background: var(--brand-950);
  color: #C4D4D9;
  padding: 56px 24px 40px;
  margin-top: 72px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
footer.site-footer strong { color: #fff; font-size: 1.05rem; }
footer.site-footer a { color: #E4EDF0; text-underline-offset: 3px; }
footer.site-footer a:hover { color: #fff; }
footer.site-footer small { color: #9FB6BC; line-height: 1.6; }
footer.site-footer nav a {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  font-weight: 500;
}
footer.site-footer nav a:hover { text-decoration: underline; }
.footer-heading {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8FAAB1;
  margin-bottom: 10px;
}
.footer-note { max-width: 320px; text-wrap: pretty; }

/* ---------- Directory ---------- */

.directory-controls {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--brand-900); }
.field input, .field select {
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--ink);
  min-width: 220px;
  min-height: 46px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field input:hover, .field select:hover { border-color: var(--brand-600); }
.field input:focus, .field select:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--brand-100);
  outline: none;
}
.field input:focus-visible, .field select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.field input::placeholder { color: #7C8B90; }

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.listing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.listing-card img,
.listing-card .listing-photo-placeholder {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  background: var(--brand-50);
}
.listing-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-600);
}
.listing-body { padding: 20px; }
.listing-body h3 { margin: 0 0 4px; font-size: 1.15rem; }
.listing-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 10px; }
.listing-highlight { font-size: 0.95rem; margin: 0; color: var(--ink-soft); }

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
}
.empty-state svg { color: var(--brand-600); }
.empty-state p { margin: 0; max-width: 46ch; }

/* ---------- Sign-up form ---------- */

form.signup {
  display: grid;
  gap: 20px;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
form.signup > * { min-width: 0; }
form.signup .field { width: 100%; }
form.signup input, form.signup select, form.signup textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
  min-height: 46px;
  background: var(--surface);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
form.signup textarea { min-height: 110px; resize: vertical; }
form.signup input:hover, form.signup select:hover, form.signup textarea:hover {
  border-color: var(--brand-600);
}
form.signup input:focus, form.signup select:focus, form.signup textarea:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--brand-100);
  outline: none;
}
form.signup input:focus-visible, form.signup select:focus-visible, form.signup textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
form.signup fieldset {
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
form.signup legend {
  font-weight: 600;
  color: var(--brand-900);
  font-size: 0.95rem;
  padding: 0 8px;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
  float: none;
}
form.signup .radio-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
form.signup .radio-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  white-space: normal;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
form.signup .radio-row label:hover {
  border-color: var(--brand-600);
  background: var(--brand-50);
}
form.signup .radio-row label:has(input:checked) {
  border-color: var(--brand-700);
  background: var(--brand-50);
  box-shadow: inset 0 0 0 1px var(--brand-700);
}
form.signup .radio-row input[type="radio"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0;
  accent-color: var(--brand-700);
}
.required-mark { color: var(--accent-700); font-weight: 700; }

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

.faq-item {
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out);
}
.faq-item:hover { border-color: var(--brand-600); }
.faq-item[open] { border-color: var(--brand-600); }
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  padding: 16px 20px;
  color: var(--brand-900);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  touch-action: manipulation;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand-600);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Contact card ---------- */

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card h2 { margin: 0 0 4px; font-size: 1.25rem; }
.contact-card p { margin: 0; }

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Header: keep brand + menu button on ONE line; nav collapses into a dropdown */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
  }
  .brand { font-size: 1rem; gap: 8px; }
  .brand svg { width: 28px; height: 28px; }

  .nav-toggle { display: flex; }

  nav.site-nav {
    display: none;
    width: 100%;
    order: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 8px;
    margin-top: 4px;
    padding-bottom: 6px;
  }
  nav.site-nav.is-open { display: block; }
  nav.site-nav ul {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  nav.site-nav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  nav.site-nav a[aria-current="page"]::after {
    left: 14px;
    right: auto;
    width: 28px;
  }

  .hero { padding: 48px 16px 96px; }
  .hero-arc { display: none; }

  .stat-strip { margin-top: -48px; padding: 0 16px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-grid > div { padding: 18px 12px 16px; }
  .stat-grid .num { font-size: 1.6rem; }
  .stat-grid .label { font-size: 0.84rem; }

  .section, .section-narrow { padding: 44px 16px; }

  .btn { width: 100%; text-align: center; padding: 14px 18px; }
  .btn-row { flex-direction: column; gap: 12px; }
  .btn-row .btn { width: 100%; }

  .card-grid { gap: 16px; }
  .card { padding: 22px; }

  ol.steps { gap: 14px; }

  footer.site-footer { padding: 40px 16px 32px; margin-top: 48px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-note { max-width: 100%; }

  .directory-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
    gap: 14px;
  }
  .directory-controls .field { width: 100%; }
  .field input, .field select { min-width: 0; width: 100%; }

  .directory-grid { gap: 16px; }

  form.signup { max-width: 100%; gap: 16px; padding: 20px 16px; }
  form.signup fieldset { padding: 14px; }

  .disclaimer { padding: 16px; font-size: 0.92rem; }
}
