:root {
  --bg: #0a0a0a;
  --bg-alt: #111;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --red: #c41e3a;
  --line: #242424;
  --card: #141414;
  --max: 1080px;
  --radius: 8px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
em { color: var(--red); font-style: normal; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand:hover { text-decoration: none; opacity: 0.9; }
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--fg); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34ch;
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn:hover { border-color: var(--muted); text-decoration: none; }
.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn.primary:hover { filter: brightness(1.08); }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.hero.stealth {
  min-height: 60vh;
}
.hero-media.logo-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media.logo-hero img {
  width: min(100%, 360px);
  border-radius: 12px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-left: 0;
  padding-right: 0;
}
.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.section-head { margin-bottom: 1.75rem; }
.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.center { text-align: center; }
.tagline { color: var(--red); font-weight: 600; margin: 0.25rem 0 0.75rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.product-card.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.product-main {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.thumbs img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.product-body h3 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}
.facts {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.facts li { margin: 0.3rem 0; }

.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.coming-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}
.coming-card h4 { margin: 0 0 0.4rem; font-size: 1rem; }
.coming-card p { margin: 0; font-size: 0.92rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.service h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.service .price {
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.service p:last-child { margin: 0; color: var(--muted); font-size: 0.92rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}
.about-grid h2 { margin-top: 0; }
.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.about-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.tagline-studio {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  max-width: 420px;
}
.contact-box p { margin: 0 0 1rem; }
.contact-box .btn { margin-top: 0.25rem; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer p { margin: 0.25rem 0; }

@media (max-width: 860px) {
  .hero,
  .product-card.featured,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .coming-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .nav { font-size: 0.8rem; }
  .hero { padding-top: 1.5rem; }
}
