* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #172033;
  background: #f7f9fc;
  line-height: 1.6;
}
a { color: inherit; }
.hero, .page-hero {
  background:
    radial-gradient(circle at top right, rgba(237, 28, 36, .23), transparent 36%),
    linear-gradient(135deg, #171414 0%, #343030 55%, #5b1518 100%);
  color: white;
  padding: 28px;
}
.hero { min-height: 640px; }
.page-hero { min-height: 230px; }
.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand img {
  width: 172px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.20));
}
.brand span {
  color: #ffffff;
  border-left: 2px solid rgba(255,255,255,.32);
  padding-left: 14px;
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.hero-content, .page-title {
  max-width: 900px;
  margin: 135px auto 0;
}
.page-title { margin-top: 62px; }
.eyebrow {
  color: #ffd4d6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}
h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
  margin: 12px 0 22px;
  letter-spacing: -.055em;
}
.page-title h1 { font-size: clamp(36px, 5vw, 56px); }
.lead {
  font-size: clamp(18px, 2.4vw, 24px);
  max-width: 760px;
  color: #e4efff;
}
.actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  background: white;
  color: #4b1417;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn.small {
  padding: 10px 16px;
  box-shadow: none;
}
.btn.red {
  background: #5b1518;
  color: white;
}
.link {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,.55);
}
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 28px;
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card, .box, .legal-card {
  background: white;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(23,32,51,.08);
}
.card h3 { margin-top: 0; font-size: 22px; }
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.box ul { padding-left: 20px; margin-bottom: 0; }
.contact {
  text-align: center;
  padding-top: 45px;
}
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
}
.back-link {
  display: inline-block;
  margin-top: 26px;
  font-weight: 800;
  color: #5b1518;
  text-decoration: none;
}
footer {
  padding: 32px 28px;
  text-align: center;
  background: #171414;
  color: #f5eded;
}
footer a { color: #f5eded; }
@media (max-width: 820px) {
  .hero-content { margin-top: 90px; }
  .cards, .split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { align-items: flex-start; }
  .brand img { width: 138px; }
  .brand span { display: none; }
  .nav-links { justify-content: flex-end; gap: 12px; }
}
