:root {
  --red: #CE1126;
  --black: #0e0e10;
  --ink: #1a1a1d;
  --gray: #5b5b63;
  --light: #f6f6f7;
  --line: #e3e3e6;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header img.logo { height: 46px; width: auto; display: block; }
.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-left: 28px;
  letter-spacing: .3px;
}
.nav a:hover { color: var(--red); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #15151a 0%, #0e0e10 100%);
  color: #fff;
  padding: 84px 0 92px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  max-width: 720px;
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
  margin-top: 20px;
  font-size: 19px;
  color: #c9c9cf;
  max-width: 640px;
}
.hero .tagline {
  margin-top: 28px;
  font-style: italic;
  color: #8c8c95;
  font-size: 15px;
}
.btns { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #a50e1f; text-decoration: none; }
.btn-ghost { border: 1px solid #44444c; color: #fff; }
.btn-ghost:hover { border-color: var(--red); color: #fff; text-decoration: none; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.4px; margin-top: 8px; }
.section-intro { margin-top: 14px; max-width: 680px; color: var(--gray); font-size: 17px; }

/* Services grid */
.grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.08); border-color: #d2d2d6; }
.card .ico {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(206,17,38,.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .ico svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; }
.card h3 { font-size: 18px; font-weight: 700; }
.card p { margin-top: 8px; color: var(--gray); font-size: 15px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about-grid p { color: var(--gray); font-size: 17px; margin-top: 16px; }
.about-grid p:first-child { margin-top: 0; }
.stat-box { background: var(--black); color: #fff; border-radius: 12px; padding: 34px; text-align: center; }
.stat-box .num { font-size: 46px; font-weight: 800; color: var(--red); line-height: 1; }
.stat-box .label { margin-top: 8px; color: #c9c9cf; font-size: 15px; }
.stat-box hr { border: none; border-top: 1px solid #2a2a30; margin: 24px 0; }

/* Contact strip */
.contact-strip { background: var(--black); color: #fff; text-align: center; }
.contact-strip h2 { color: #fff; }
.contact-strip p { color: #c9c9cf; margin-top: 14px; font-size: 17px; }
.contact-methods { margin-top: 30px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.contact-methods .item { font-size: 16px; }
.contact-methods .item span { display: block; color: #8c8c95; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-methods .item a { color: #fff; font-weight: 700; }
.contact-methods .item a:hover { color: var(--red); }

/* Support page */
.support-hero { background: var(--black); color: #fff; padding: 64px 0; border-bottom: 3px solid var(--red); }
.support-hero h1 { font-size: 36px; font-weight: 800; }
.support-hero p { margin-top: 12px; color: #c9c9cf; max-width: 620px; font-size: 17px; }
.support-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.support-card { border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.support-card h3 { font-size: 19px; font-weight: 700; }
.support-card p { color: var(--gray); margin-top: 8px; font-size: 15px; }
.support-card .big { font-size: 22px; font-weight: 700; color: var(--ink); margin-top: 14px; display: block; }
.hours { margin-top: 14px; color: var(--gray); font-size: 15px; }

/* Footer */
.site-footer { background: #0a0a0c; color: #8c8c95; padding: 40px 0; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.site-footer img { height: 30px; opacity: .9; }
.site-footer a { color: #b9b9c0; }
.site-footer .legal { color: #6a6a72; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 33px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .nav a { margin-left: 16px; font-size: 14px; }
  .site-header img.logo { height: 38px; }
}
