/* Mobile-only-first. No breakpoints added for desktop layouts on purpose —
   this just stays a centered single column at any width. No webfonts:
   system stack only, so there is nothing to download before text renders. */

:root {
  --ink: #1a1f24;
  --ink-soft: #4b5563;
  --bg: #ffffff;
  --bg-soft: #f4f6f7;
  --brand: #c0442c;   /* warm, "heat" accent */
  --brand-dark: #96331f;
  --line: #e2e5e7;
  --focus: #1a6fb0;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

a { color: var(--brand-dark); }
a:focus, button:focus { outline: 3px solid var(--focus); outline-offset: 2px; }

.wrap { max-width: 640px; margin: 0 auto; padding: 0 16px; }

/* Header: phone stays above the fold on every page, full width, high contrast. */
header.site-header {
  background: var(--brand);
  color: #fff;
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  white-space: nowrap;
  min-height: 44px;
}
.call-btn:active { transform: translateY(1px); }
.no-number-note {
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.9;
}

main { padding: 20px 0 8px; }
h1 { font-size: 1.5rem; line-height: 1.25; margin: 0 0 12px; }
h2 { font-size: 1.15rem; margin: 28px 0 8px; }
p { margin: 0 0 14px; }

.emergency-banner {
  background: var(--bg-soft);
  border-left: 4px solid var(--brand);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

details.faq {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
details.faq summary {
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}
details.faq p { margin-top: 8px; color: var(--ink-soft); }

.related { background: var(--bg-soft); padding: 14px; border-radius: 8px; margin: 24px 0; }
.related h2 { margin-top: 0; font-size: 1rem; }
.related ul { margin: 0; padding-left: 20px; }
.related li { margin-bottom: 6px; }

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 32px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
footer.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
footer.site-footer .lang-switch { font-weight: 600; }
footer.site-footer .disclaimer { margin-top: 12px; }
