:root {
  --anthracite: #1e232b;
  --anthracite-2: #2a313c;
  --accent: #b4232a;
  --accent-dark: #8f1a20;
  --ink: #1a1d22;
  --muted: #5b6572;
  --line: #e2e6eb;
  --bg: #ffffff;
  --bg-soft: #f5f7f9;
  --max: 1120px;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(20, 25, 33, .08), 0 8px 24px rgba(20, 25, 33, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--anthracite);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.btn-ghost { border-color: var(--line); color: var(--anthracite); background: #fff; }
.btn-ghost:hover { border-color: var(--muted); text-decoration: none; }

/* Top contact bar */
.topbar {
  background: var(--anthracite);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar svg { width: 15px; height: 15px; stroke: var(--accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--anthracite);
}
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; display: block; }
.brand-text { line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 1rem; color: var(--anthracite); }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--anthracite);
  font-weight: 500;
  font-size: .95rem;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthracite);
  margin: 5px 0;
  transition: .2s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 84px 0 92px;
  max-width: 720px;
}
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Sections */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Grid cards */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(180,35,42,.08);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Info strip */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact { background: #fff; padding: 24px; }
.fact .val { font-size: 1.4rem; font-weight: 700; color: var(--anthracite); }
.fact .lbl { font-size: .85rem; color: var(--muted); }

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  vertical-align: top;
}
.data-table th {
  width: 38%;
  color: var(--anthracite);
  font-weight: 600;
  background: var(--bg-soft);
}
.data-table td { color: var(--ink); }
.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: 0; }

/* Two column layout */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact */
.contact-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { color: var(--accent); flex: 0 0 24px; }
.contact-row .ic svg { width: 22px; height: 22px; stroke: var(--accent); }
.contact-row .lbl { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-row .txt { font-weight: 600; color: var(--anthracite); }

/* Legal / prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; color: var(--ink); }
.prose li { margin-bottom: .4rem; }
.prose .lead { font-size: 1.1rem; color: var(--muted); }

/* Page hero (inner) */
.page-hero {
  background: var(--anthracite);
  color: #fff;
  padding: 56px 0;
}
.page-hero h1 { color: #fff; margin: 0; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,.85); }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 56px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,.72);
  padding: 56px 0 28px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: #fff; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand .brand-name { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 860px) {
  .topbar-inner { justify-content: center; gap: 16px; font-size: .8rem; min-height: 0; padding: 8px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .data-table th { width: 42%; }
}
