:root {
  --ink: #1c2733;
  --ink-soft: #40525f;
  --brand: #b8322f;      /* urgent red */
  --brand-dk: #8f2523;
  --accent: #1f6f78;     /* teal */
  --bg: #ffffff;
  --bg-soft: #f4f1ea;
  --bg-dark: #16232c;
  --line: #e2ddd2;
  --radius: 10px;
  --wrap: 1120px;
  --narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; color: var(--ink); }
a { color: var(--accent); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: var(--narrow); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--brand);
  cursor: pointer;
  font-size: 16px;
  transition: background .15s, transform .05s;
}
.btn:hover { background: var(--brand-dk); border-color: var(--brand-dk); }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 30px; font-size: 18px; }
.btn--sm { padding: 8px 16px; font-size: 15px; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--twitter { background: #1d9bf0; border-color: #1d9bf0; }
.btn--twitter:hover { background: #1783cc; border-color: #1783cc; }
.btn--facebook { background: #1877f2; border-color: #1877f2; }
.btn--facebook:hover { background: #135fc0; border-color: #135fc0; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 22px; gap: 16px; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand__name { font-family: "Playfair Display", serif; font-weight: 800; font-size: 19px; color: var(--brand); }
.brand__tag { font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); text-transform: lowercase; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 16px; }
.site-nav a:hover { color: var(--brand); }
.site-nav a.btn { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(184,50,47,.28), transparent 55%),
    linear-gradient(160deg, #1b2a34 0%, #16232c 60%, #0f1a21 100%);
  color: #fff;
  padding: 96px 0 104px;
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 700; color: #e7b7b5; margin: 0 0 18px; }
.hero__title { font-size: clamp(42px, 7vw, 82px); font-weight: 800; margin: 0 0 22px; color: #fff; }
.hero__lead { font-size: clamp(19px, 2.4vw, 24px); max-width: 620px; margin: 0 0 34px; color: #dfe6ea; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Sections ===== */
.section { padding: 76px 0; }
.section--values { background: var(--bg-soft); }
.section--learn { background: var(--bg-soft); }
.section--contact { background: var(--bg-soft); }
.section__title { font-size: clamp(28px, 4vw, 40px); margin: 0 0 32px; }
.section h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 20px; }
.section h3 { font-size: 24px; margin: 34px 0 14px; }
.section h4 { font-size: 19px; margin: 0 0 6px; color: var(--brand-dk); font-family: "Source Sans 3", sans-serif; font-weight: 700; }
.section p { margin: 0 0 18px; color: var(--ink-soft); }
.lead { font-size: 22px; color: var(--ink) !important; font-weight: 600; }
.emphasis { font-size: 20px; font-weight: 700; color: var(--brand-dk) !important; border-left: 4px solid var(--brand); padding-left: 18px; }

/* ===== Help cards ===== */
.cards { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(22,35,44,.05);
  display: flex; flex-direction: column;
}
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0 0 18px; }
.card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.address { font-style: normal; line-height: 1.7; color: var(--ink); background: var(--bg-soft); border-radius: 8px; padding: 14px 16px; margin-top: auto; }
.card--form { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }
.card--form h3, .card--form p { color: #fff; }
.signup { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.signup input {
  padding: 12px 14px; border-radius: 8px; border: 1px solid #33454f;
  background: #0f1a21; color: #fff; font-size: 16px; font-family: inherit;
}
.signup input::placeholder { color: #93a3ac; }
.signup input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.signup__msg { color: #7fe0b0; font-weight: 600; margin: 4px 0 0; }

/* ===== Consequences list ===== */
.consequences { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.consequences li { border-left: 4px solid var(--accent); padding: 4px 0 4px 20px; }
.consequences p { margin: 0; }

/* ===== Stats ===== */
.stats { display: flex; flex-wrap: wrap; gap: 18px; margin: 30px 0 34px; }
.stat {
  flex: 1 1 200px; background: #fff; border: 1px solid var(--line);
  border-top: 5px solid var(--brand); border-radius: var(--radius);
  padding: 24px 22px; text-align: center;
}
.stat__num { display: block; font-family: "Playfair Display", serif; font-weight: 800; font-size: 46px; color: var(--brand); line-height: 1; margin-bottom: 10px; }
.stat__label { display: block; font-size: 15px; color: var(--ink-soft); }

/* ===== Reasons / bullets ===== */
.reasons, .bullets { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.reasons li, .bullets li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.reasons li::before, .bullets li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 12px; height: 12px; border-radius: 3px; background: var(--brand); transform: rotate(45deg);
}
.bullets li::before { background: var(--accent); border-radius: 50%; transform: none; top: 12px; width: 9px; height: 9px; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dk) 100%);
  color: #fff; text-align: center; padding: 70px 0;
}
.cta-banner h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin: 0 0 28px; }
.cta-banner .btn { background: #fff; color: var(--brand-dk); border-color: #fff; }
.cta-banner .btn:hover { background: #f1e9e9; border-color: #f1e9e9; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); color: #cdd8de; padding: 48px 0; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; flex-direction: column; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: #8ea1ab; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a { color: #cdd8de; text-decoration: none; font-weight: 600; font-size: 15px; }
.footer__nav a:hover { color: #fff; }
.footer__copy { width: 100%; margin: 8px 0 0; font-size: 14px; color: #7f929c; border-top: 1px solid #24333c; padding-top: 18px; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 22px 18px; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.btn { text-align: center; margin-top: 10px; border: 2px solid var(--brand); }
  .hero { padding: 64px 0 72px; }
  .section { padding: 56px 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
