/* ── STOP RECKLESS DRIVING — Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --red: #C0392B;
  --red-dark: #922B21;
  --red-light: #FADBD8;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ash: #F5F4F0;
  --white: #FFFFFF;
  --border: #E0DED8;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 66px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--red);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--red); background: var(--red-light); }
.nav-links a.active { color: var(--red); font-weight: 500; }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 3px !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--ash);
  padding: 72px 5vw 60px;
  border-bottom: 1px solid var(--border);
}

.page-header .breadcrumb {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.page-header .breadcrumb a { color: inherit; text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--red); }

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  font-weight: 300;
}

/* ── SECTION BASE ── */
section { padding: 80px 5vw; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before { content:''; display:block; width:20px; height:1px; background:var(--red); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-intro {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--red);
  padding: 13px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 3px;
  border: 1px solid var(--red);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline:hover { background: var(--red); color: white; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: #c0392b55; transform: translateY(-2px); }

.card-body { padding: 28px 24px; }

.card-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 10px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--ink);
}

.card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ── STAT BAR ── */
.stats-bar {
  background: var(--red);
  padding: 56px 5vw;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.stat-item { color: white; }

.stat-item .num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.stat-item .lbl {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
}

.stat-divider { width: 28px; height: 2px; background: rgba(255,255,255,0.35); margin-bottom: 14px; }

/* ── DARK BAND ── */
.dark-band {
  background: var(--ink);
  color: white;
  padding: 80px 5vw;
}

.dark-band .section-label { color: rgba(255,255,255,0.45); }
.dark-band .section-label::before { background: rgba(255,255,255,0.45); }
.dark-band .section-title { color: white; }
.dark-band .section-intro { color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 64px 5vw 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 220px; }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.65s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 5vw; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
