:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #d97706;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Layout */
  --container-max: 1100px;
  --radius: 12px;            /* legacy alias — prefer the scale below */
  --radius-sm: 6px;          /* tags, chips, small inputs */
  --radius-md: 8px;          /* buttons, form fields, alerts */
  --radius-lg: 12px;         /* cards, sections, containers */
  --radius-pill: 999px;      /* pills, badges, circular */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ---------- Icon helper ----------
 * Inline SVGs use this class for consistent sizing. Default 1em (matches
 * surrounding text); override with width/height inline when a fixed size is
 * needed. stroke="currentColor" + stroke-width="1.75" mirrors the Lucide /
 * Heroicons-outline visual language across the app — pick one set, stick to it.
 */
.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Hebrew', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.logo__version {
  display: inline-block;
  margin-inline-start: 0.4rem;
  /* QA C7 — bumped from 0.7rem (= 11.2px below WCAG-AA minimum) to 0.8rem
     (= 12.8px) and opacity from 0.55 → 0.7 to meet the contrast threshold
     while keeping the version label visually subordinate to the brand mark. */
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.02em;
  vertical-align: super;
  color: inherit;
}
/* When the version label is empty (production hide via QA C8), collapse the
   element so it doesn't reserve horizontal space next to the brand mark. */
.logo__version:empty {
  display: none;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  margin-inline-start: auto;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
}

.btn--primary:hover:not([disabled]):not([aria-disabled="true"]) {
  background: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero — flat surface, no gradient. Minimalist style relies on whitespace
 * + typographic hierarchy to draw the eye, not on background color shifts. */
.hero {
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  background: var(--color-bg);
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-block: var(--space-sm) var(--space-md);
}

.hero-meta {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  line-height: 1.7;
}
.hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.hero-meta__item .icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--color-primary);
}
.hero-meta__sep {
  color: var(--color-border);
}

/* Sections */
.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}

.section h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section--alt {
  background: var(--color-bg-alt);
  max-width: none;
}

.section--alt > * {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  list-style: none;
}

.steps li {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* Features */
.features {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.features li {
  padding: var(--space-xs) 0;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.features__check {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.3em;
  color: var(--color-success);
}

/* FAQ */
details {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  padding: var(--space-xs) 0;
}

details[open] summary {
  margin-bottom: var(--space-xs);
}

/* CTA final */
.cta-final {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: var(--color-primary);
  color: white;
}

.cta-final h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-final .btn--primary {
  background: white;
  color: var(--color-primary);
}

.cta-final .btn--primary:hover {
  background: var(--color-bg-alt);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: white;
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.site-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.site-footer a {
  color: white;
  opacity: 0.85;
}

/* Tablet */
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .hero {
    padding: var(--space-xl) var(--space-sm);
  }
}

/* ---------- Order form ---------- */
.form-page {
  background: var(--color-bg-alt);
  min-height: 100vh;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
}

.form-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
}

.form-title {
  text-align: center;
  margin-bottom: var(--space-xs);
}

.form-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* Progress */
.progress {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.progress__bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  transition: background 0.3s;
}

.progress__bar--done {
  background: var(--color-primary);
}

/* Steps */
.form-step {
  display: none;
}

.form-step--active {
  display: block;
}

.form-step__title {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

/* Fields */
.field {
  margin-bottom: var(--space-sm);
}

.field__label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.field__label--required::after {
  content: ' *';
  color: #dc2626;
}

.field__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--color-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field__input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.field__input:focus:not(:focus-visible) {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.field__input[aria-invalid="true"] {
  border-color: #dc2626;
}

.field__hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.field__error {
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 0.25rem;
  min-height: 1.2em;
}

/* Duplicate-order recovery state — same #err-consent slot, but now showing
   an informational message + two action buttons instead of a single red line.
   Switches color from error-red to a softer slate so it doesn't read as
   "you broke something" — duplicates are an expected branch of the flow. */
.field__error--duplicate {
  color: var(--color-text);
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.field__error__msg {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.field__error__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.field__error__actions .btn {
  flex: 1;
  min-width: 140px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* Review box (step 3) */
.review {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem var(--space-sm);
  font-size: 0.95rem;
}

.review dt {
  color: var(--color-text-muted);
}

.review dd {
  font-weight: 500;
}

.review__price {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Consent */
.consent-block {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
}

.consent-checkbox {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
}

.consent-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.consent-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.consent-block .consent-checkbox + .field__error + .consent-checkbox {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

/* Form actions */
.form-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-actions .btn {
  flex: 1;
}

.btn--secondary {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover:not([disabled]):not([aria-disabled="true"]) {
  background: var(--color-bg-alt);
  text-decoration: none;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-footer {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.form-footer__icon {
  width: 1em;
  height: 1em;
  color: var(--color-primary);
  vertical-align: -0.15em;
  margin-inline-end: 0.25rem;
}

.form-footer a {
  color: inherit;
  text-decoration: underline;
}

/* ---------- Step 2 mode toggle ---------- */
.mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.mode-toggle__btn {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0.65rem var(--space-sm);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.mode-toggle__btn:hover:not(.mode-toggle__btn--active) {
  background: rgba(37, 99, 235, 0.05);
  color: var(--color-text);
}

.mode-toggle__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.mode-toggle__btn--active {
  background: white;
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ---------- Full-width button (address lookup CTA) ---------- */
.btn--full {
  width: 100%;
  margin-bottom: var(--space-sm);
}

/* ---------- Address lookup result widget ---------- */
.addr-result {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.addr-result__status {
  padding: 0.75rem var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.addr-result__status:empty {
  display: none;
}

.addr-result__status[data-kind="loading"] {
  color: var(--color-text);
}

.addr-result__status[data-kind="error"] {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.addr-result__confirmed {
  padding: var(--space-sm);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
}

/* T4 (added 2026-04-29) — visual-confirmation gate. The header line + notice
   make this panel read as a "verify before you pay" check, not a passive
   "we found something" badge. */
.addr-confirm__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #065f46;
}

.addr-confirm__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #10b981;
  color: white;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.addr-confirm__title {
  font-size: 0.95rem;
  line-height: 1.4;
}

.addr-confirm__locality {
  color: var(--color-text);
}

.addr-confirm__locality strong {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.addr-confirm__notice {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #065f46;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border-inline-start: 3px solid #10b981;
}

.addr-result__address {
  font-weight: 700;
  font-size: 1rem;
  color: #065f46;
  margin-bottom: 0.25rem;
}

.addr-result__parcel {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.addr-result__parcel strong {
  color: var(--color-primary);
  font-size: 1.05rem;
}

.addr-result__reset {
  appearance: none;
  background: none;
  border: none;
  padding: 0.25rem 0;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
}

.addr-result__reset:hover {
  color: var(--color-text);
}

/* ---------- Candidate picker (ambiguous address results) ---------- */
.addr-candidates {
  padding: var(--space-sm);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.addr-candidates__title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.addr-candidates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.addr-candidates__item {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.6rem 0.75rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.addr-candidates__item:hover,
.addr-candidates__item:focus-visible {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.05);
  outline: none;
}

.addr-candidates__item__city {
  display: inline-block;
  margin-inline-start: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
}

/* Auto-correction diff banner — surfaces silent street/house swaps so the
   user can spot a wrong-property purchase before paying. QA L1, L6.
   :not([hidden]) so the `display: flex` doesn't override the default
   [hidden] { display: none } from the UA stylesheet — without this guard,
   a "Confirmed" green banner and a "Maybe wrong street" red banner can
   render simultaneously after a successful candidate pick (QA C2/C3). */
.addr-diff:not([hidden]) {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-inline-start: 4px solid #dc2626;
  border-radius: var(--radius-md);
  color: #7f1d1d;
  font-size: 0.95rem;
  align-items: flex-start;
}

.addr-diff__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.addr-diff__body {
  flex: 1;
}

.addr-diff__title {
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #991b1b;
}

.addr-diff__text {
  margin: 0 0 0.35rem;
  line-height: 1.5;
}

.addr-diff__text del {
  text-decoration: line-through;
  text-decoration-color: #dc2626;
  color: #7f1d1d;
}

.addr-diff__text ins {
  text-decoration: none;
  background: #fef9c3;
  padding: 0 4px;
  border-radius: 3px;
  color: #92400e;
  font-weight: 700;
}

.addr-diff__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #991b1b;
}

/* "Switch to gush/helka" suggestion shown after parcel_not_found on a
   valid-looking address (QA L8). */
.addr-fallback {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.addr-fallback__text {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ---------- Thank-you page ---------- */
.status-wrapper {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
}

.status-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border);
}

.status-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
}
.status-icon .icon {
  width: 2.25rem;
  height: 2.25rem;
}
.status-icon--success { color: var(--color-success); background: rgba(16, 185, 129, 0.08); }
.status-icon--warning { color: var(--color-warning); background: rgba(217, 119, 6, 0.08); }
.status-icon--neutral { color: var(--color-text-muted); background: var(--color-bg-alt); }

.status-card h1 {
  margin-bottom: var(--space-sm);
}

.status-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.status-card strong {
  color: var(--color-text);
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: var(--space-sm);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Legal pages ---------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
  line-height: 1.8;
}

.legal-page h1 {
  margin-bottom: var(--space-sm);
}

.legal-page h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
  text-align: start;
}

.legal-page p,
.legal-page ul {
  margin-bottom: var(--space-sm);
}

.legal-page ul {
  padding-inline-start: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.25rem;
}

.legal-page__meta {
  background: var(--color-bg-alt);
  border-inline-start: 3px solid var(--color-primary);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Tablet tweaks */
@media (min-width: 768px) {
  .form-card { padding: var(--space-lg); }
}

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

/* Visually hidden but exposed to assistive tech — used for status announcements. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
