:root {
  --bg: #111214;
  --surface: #1b1d21;
  --surface-2: #23262b;
  --ink: #f5f6f8;
  --primary: #c62839;
  --primary-dark: #8f1a28;
  --gold: #d4af37;
  --muted: #c6cad1;
  --border: #343842;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(circle at top, #24272d 0, var(--bg) 52%);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, .brand { font-family: "Montserrat", sans-serif; line-height: 1.2; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: 8px 10px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 20, 24, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 96px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; color: var(--ink); }
.brand-logo { height: 72px; width: auto; display: block; object-fit: contain; }
.brand-text { font-size: 1rem; color: var(--gold); }

nav { display: flex; align-items: center; gap: 20px; }
nav a { text-decoration: none; color: #ececec; font-weight: 600; }

.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: #f1f1f1; }

.hero { padding: 84px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: stretch; }

.eyebrow {
  display: inline-block;
  background: #181818;
  color: var(--gold);
  border: 1px solid #343434;
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 14px; }
.hero-text { color: var(--muted); font-size: 1.12rem; max-width: 58ch; }
.hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--primary-dark); box-shadow: 0 8px 16px rgba(198, 40, 57, 0.25); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-small { padding: 9px 14px; font-size: 0.95rem; }

.hero-card, .card, .differentials > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.hero-card { box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35); }

.section { padding: 70px 0; }
.section h2 { color: var(--gold); }
.section-intro, .hero-card li, .card p { color: var(--muted); }

.section-alt { background: #171a1f; border-block: 1px solid #2b3038; }
.cards, .differentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: center; }

.stats { display: grid; gap: 10px; }
.stats div {
  background: var(--surface-2);
  border: 1px solid #303030;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 12px 14px;
}
.stats strong { display: block; font-size: 1.35rem; color: #fff; }

.section-cta { background: #1a1d22; color: #f1f1f1; }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

.contact-form {
  background: var(--surface-2);
  border: 1px solid #353535;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 10px;
}
.contact-form label { font-weight: 600; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  padding: 10px 12px;
  background: #191c22
  color: #fff;
  font: inherit;
}

a { color: #ffd76a; }
input:focus, textarea:focus, a:focus, button:focus { outline: 2px solid #ffd76a; outline-offset: 2px; }
.legal-note { font-size: 0.97rem; color: #cfcfcf; }
.legal-note a { color: #ffd76a; font-weight: 700; }
.status { min-height: 18px; margin: 0; font-size: 0.95rem; }

footer { background: #121418; color: #e3e6eb; padding: 16px 0; border-top: 1px solid #2a2f37; }
.footer-wrap { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
footer a { color: #ffd76a; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .cta-wrap, .cards, .differentials { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .menu-toggle { display: block; }
  nav {
    position: absolute;
    top: 74px;
    right: 4%;
    left: 4%;
    background: #101010;
    border: 1px solid #3a3f48
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 8px;
  }
  nav a, .btn-small { width: 100%; }
  nav.open { display: flex; }
}

@media (max-width: 600px) {
  .container { width: min(1120px, 94%); }
  .nav-wrap { min-height: 66px; }
  .brand-logo { height: 56px; }
  .brand-text { font-size: 0.9rem; }
  .hero { padding: 52px 0 40px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  h2 { font-size: 1.45rem; }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 54px 0; }
  .card, .differentials > div, .hero-card { padding: 16px; }
  .contact-form { padding: 14px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

.legal-page {
  padding-top: 40px;
}

.legal-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.legal-wrap h1 {
  margin-top: 0;
}

.legal-wrap h2 {
  margin-top: 22px;
  color: var(--gold);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}
