:root {
  --bg: #070707;
  --surface: #111111;
  --surface-2: #171717;
  --text: #f7f7f7;
  --muted: #a9a9a9;
  --red: #ff1111;
  --red-dark: #b90808;
  --line: rgba(255,255,255,.09);
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family:Inter,system-ui,-apple-system,sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
.container { width:min(1180px, calc(100% - 40px)); margin:auto; }
.site-header { position:fixed; inset:0 0 auto; z-index:50; border-bottom:1px solid transparent; transition:.25s; }
.site-header.scrolled { background:rgba(7,7,7,.86); backdrop-filter:blur(20px); border-color:var(--line); }
.nav-wrap { height:86px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:900; font-size:1.35rem; letter-spacing:-.04em; }
.brand img { width:118px; height:50px; object-fit:contain; border-radius:10px; }
.main-nav { display:flex; align-items:center; gap:8px; }
.main-nav a { color:#d5d5d5; padding:10px 14px; border-radius:999px; font-size:.94rem; font-weight:600; transition:.2s; }
.main-nav a:hover,.main-nav a.active { color:white; background:rgba(255,255,255,.08); }
.main-nav .nav-admin { background:var(--red); color:white; margin-left:6px; }
.main-nav .nav-admin:hover { background:#ff3434; }
.menu-toggle { display:none; background:none; border:0; padding:8px; }
.menu-toggle span { display:block; width:25px; height:2px; background:white; margin:5px; }
.hero { min-height:820px; display:grid; align-items:center; position:relative; overflow:hidden; padding:155px 0 80px; background:radial-gradient(circle at 80% 20%, rgba(255,17,17,.22), transparent 36%); }
.hero::after { content:""; position:absolute; width:520px; height:520px; right:-130px; top:150px; border-radius:50%; border:1px solid rgba(255,255,255,.08); box-shadow:0 0 0 100px rgba(255,255,255,.015),0 0 0 200px rgba(255,255,255,.01); }
.hero-grid { display:grid; grid-template-columns:1.03fr .97fr; gap:56px; align-items:center; position:relative; z-index:1; }
.eyebrow { color:#ff4b4b; text-transform:uppercase; letter-spacing:.16em; font-size:.78rem; font-weight:800; }
h1 { font-size:clamp(3.5rem,8vw,7.4rem); line-height:.9; letter-spacing:-.075em; margin:18px 0 26px; max-width:850px; }
.hero p { max-width:650px; color:#bdbdbd; font-size:1.08rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:0 22px; border-radius:999px; background:white; color:#111; font-weight:800; border:1px solid white; transition:.2s; cursor:pointer; }
.btn:hover { transform:translateY(-2px); }
.btn-red { background:var(--red); color:white; border-color:var(--red); }
.btn-ghost { background:transparent; color:white; border-color:var(--line); }
.hero-card { background:linear-gradient(155deg,#1c1c1c,#0c0c0c); border:1px solid var(--line); border-radius:32px; padding:14px; box-shadow:var(--shadow); transform:rotate(1.2deg); }
.hero-card img { width:100%; height:430px; object-fit:cover; border-radius:23px; }
.hero-card-content { padding:18px 14px 12px; display:flex; justify-content:space-between; gap:20px; align-items:end; }
.hero-card small { color:var(--muted); display:block; }
.hero-card h3 { margin:5px 0 0; font-size:1.35rem; }
.stat { text-align:right; }
.stat strong { display:block; font-size:1.35rem; color:#ff4d4d; }
.section { padding:110px 0; }
.section.alt { background:#0c0c0c; border-block:1px solid var(--line); }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:38px; }
.section-head h2,.page-hero h1 { margin:8px 0 0; font-size:clamp(2.4rem,5vw,4.7rem); line-height:1; letter-spacing:-.06em; }
.section-head p { max-width:560px; color:var(--muted); margin:0; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:.25s; }
.card:hover { transform:translateY(-5px); border-color:rgba(255,17,17,.32); }
.card-media { aspect-ratio:16/10; overflow:hidden; background:#222; }
.card-media img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.card:hover .card-media img { transform:scale(1.035); }
.card-body { padding:24px; }
.card-body h3 { margin:5px 0 8px; font-size:1.35rem; }
.card-body p { color:var(--muted); margin:0; }
.meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.chip { padding:7px 10px; border-radius:999px; background:rgba(255,255,255,.055); color:#d2d2d2; font-size:.8rem; border:1px solid var(--line); }
.page-hero { padding:175px 0 70px; background:radial-gradient(circle at 78% 0, rgba(255,17,17,.19), transparent 35%); border-bottom:1px solid var(--line); }
.page-hero p { color:var(--muted); max-width:700px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.vehicle-card { display:grid; grid-template-columns:1.05fr .95fr; min-height:330px; }
.vehicle-card .card-media { aspect-ratio:auto; height:100%; }
.vehicle-card .card-body { display:flex; flex-direction:column; justify-content:center; }
.person-card .card-media { aspect-ratio:4/4.6; }
.role { color:#ff4b4b; font-weight:700; }
.news-card .date { color:#ff4b4b; font-size:.82rem; font-weight:800; }
.news-detail { width:min(860px, calc(100% - 40px)); margin:auto; padding:160px 0 100px; }
.news-detail h1 { font-size:clamp(2.6rem,6vw,5.4rem); }
.news-detail .lead { color:#c5c5c5; font-size:1.2rem; }
.news-detail-cover { border-radius:30px; width:100%; max-height:560px; object-fit:cover; margin:32px 0; }
.prose { color:#d1d1d1; font-size:1.04rem; white-space:pre-line; }
.cta { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:50px; border-radius:32px; background:linear-gradient(120deg,#ff1111,#9e0000); }
.cta h2 { font-size:clamp(2rem,4vw,3.6rem); margin:0; line-height:1; }
.cta p { margin:10px 0 0; color:#ffd4d4; }
.site-footer { padding:64px 0 22px; border-top:1px solid var(--line); background:#050505; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; }
.footer-grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer-grid p,.footer-grid a { color:var(--muted); }
.footer-grid a:hover { color:white; }
.footer-brand img { width:120px; height:auto; }
.footer-bottom { margin-top:44px; padding-top:20px; border-top:1px solid var(--line); color:#747474; font-size:.9rem; }
.empty { padding:34px; border:1px dashed rgba(255,255,255,.16); border-radius:24px; color:var(--muted); text-align:center; }
.reveal { opacity:0; transform:translateY(18px); transition:.65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .main-nav { position:absolute; top:76px; left:20px; right:20px; display:none; flex-direction:column; align-items:stretch; padding:14px; border-radius:22px; background:#111; border:1px solid var(--line); box-shadow:var(--shadow); }
  .main-nav.open { display:flex; }
  .main-nav .nav-admin { margin-left:0; text-align:center; }
  .menu-toggle { display:block; }
  .hero { min-height:auto; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-card img { height:360px; }
  .cards { grid-template-columns:1fr 1fr; }
  .vehicle-card { grid-template-columns:1fr; }
  .vehicle-card .card-media { aspect-ratio:16/9; }
  .section-head,.cta { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 24px,1180px); }
  .nav-wrap { height:74px; }
  .brand img { width:100px; height:42px; }
  h1 { font-size:3.6rem; }
  .hero { padding-top:130px; }
  .hero-card img { height:290px; }
  .section { padding:80px 0; }
  .cards,.grid-2,.footer-grid { grid-template-columns:1fr; }
  .cta { padding:32px 25px; }
}
