:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --fg: #f4f4f4;
  --muted: #a1a1a1;
  --line: #1f1f1f;
  --accent: #daff38;
  --accent-fg: #0a0a0a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.6 "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
a { color: inherit; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 16px; }
.top { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; padding-bottom: 24px; }
.brand { color: var(--fg); font-weight: 800; font-size: clamp(20px, 3vw, 26px); text-decoration: none; letter-spacing: -0.01em; }
nav a { margin-left: 20px; text-decoration: none; color: var(--muted); }
nav a:hover { color: var(--fg); }
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(10,10,10,.8) 0%, rgba(10,10,10,.35) 60%, rgba(10,10,10,.1) 100%),
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.1) 25%, rgba(10,10,10,.35) 70%, #0a0a0a 100%),
    var(--hero-img) center 40% / cover no-repeat;
}
.top.over { width: 100%; }
.hero-inner { width: 100%; margin-top: auto; margin-bottom: auto; padding-top: 48px; padding-bottom: 96px; }
.eyebrow { color: var(--accent); margin: 0 0 12px; font-size: 15px; }
h1 { font-size: clamp(40px, 8vw, 88px); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; text-transform: uppercase; margin: 0 0 24px; }
.lead { color: var(--muted); max-width: 60ch; margin: 0 0 32px; }
.btn { display: inline-block; text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px; background: var(--accent); color: var(--accent-fg); padding: 12px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.block { padding: 72px 0; border-bottom: 1px solid var(--line); }
h2 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; text-transform: uppercase; margin: 0 0 16px; }
.block > .lead { margin-bottom: 40px; }
.label { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 20px; }
.num { display: block; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 6px; }
.grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid li { border-bottom: 2px solid var(--line); padding-bottom: 16px; outline: none; cursor: default; transition: border-color .25s ease; }
.grid li .num, .grid li h3 { transition: color .25s ease; }
.grid li .num { color: var(--muted); }
.grid li img { transition: transform .4s ease, filter .4s ease; filter: grayscale(35%); }
.grid li:hover, .grid li:focus-visible, .grid li:active { border-color: var(--accent); }
.grid li:hover .num, .grid li:hover h3, .grid li:focus-visible .num, .grid li:focus-visible h3, .grid li:active h3 { color: var(--accent); }
.grid li:hover img, .grid li:focus-visible img { transform: scale(1.03); filter: grayscale(0); }
.grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
.grid li { overflow: hidden; }
.grid h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 8px; }
.grid p { margin: 0; color: var(--muted); }
.foot { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px !important; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 32px; padding-bottom: 48px; color: var(--muted); font-size: 15px; }
.legal { padding: 48px 0 64px; max-width: 70ch; }
.legal h1 { font-size: clamp(32px, 6vw, 56px); }
.legal h2 { font-size: 20px; margin: 32px 0 8px; }
a:hover { color: var(--accent); }
.btn:hover { color: var(--accent-fg); filter: brightness(1.1); }
@media (max-width: 520px) { .hero { min-height: 85vh; } .hero-inner { padding-bottom: 64px; } }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn.ghost:hover { color: var(--accent); border-color: var(--accent); filter: none; }
.place { color: var(--muted); margin: 24px 0 0; font-size: 15px; }
@media (max-width: 520px) { .brand { font-size: 17px; } nav a { margin-left: 14px; font-size: 14px; } }
.nocase { text-transform: none; letter-spacing: 0.02em; }
.top.over nav a { color: var(--fg); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.top.over nav a:hover { color: var(--accent); }
