﻿:root {
  --bg: #090909;
  --text: #fafafa;
  --muted: #b7b7b7;
  --panel: #121212;
  --line: #2b2b2b;
  --accent: #ff0000;
  --accent-soft: #ff4040;
  --ok: #72dd9b;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: radial-gradient(circle at 10% 10%, #1f1f1f 0%, #090909 45%, #050505 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
.eyebrow,
.site-nav a,
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.24;
  animation: drift 12s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: #ff0000;
  top: -80px;
  right: -60px;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: #4d4d4d;
  bottom: 5%;
  left: -80px;
  animation-delay: 2s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(18px) translateX(12px);
  }
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: #1e1e1e;
}

.menu-toggle {
  display: none;
  background: #1a1a1a;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-short {
  padding-top: 3.25rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8d8d8;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  max-width: 14ch;
  margin: 0.3rem 0 0.85rem;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-small {
  padding: 0.42rem 0.74rem;
  font-size: 0.88rem;
  background: #1a1a1a;
  color: var(--text);
  border: 1px solid var(--line);
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.card,
.contact-panel {
  background: linear-gradient(170deg, #151515 0%, #0f0f0f 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.text-link {
  color: #f6d6d6;
}

.section {
  margin-top: 1.8rem;
}

.section-head h2 {
  margin-bottom: 0.3rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.8rem;
}

.video-meta h3 {
  margin: 0;
  font-size: 0.97rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, calc(100vw - 2rem));
  display: flex;
  flex-direction: column-reverse;
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  background: linear-gradient(170deg, #131313 0%, #0a0a0a 100%);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid #2b2b2b;
}

.video-modal__title {
  margin: 0;
  font-weight: 600;
  color: #f0f0f0;
}

.video-modal__close {
  border: 1px solid #353535;
  background: #151515;
  color: #fafafa;
  border-radius: 8px;
  padding: 0.4rem 0.72rem;
  font: inherit;
  cursor: pointer;
}

.video-modal__close:hover {
  border-color: #5a5a5a;
}

.video-modal__frame-wrap {
  background: #000;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.contact-form textarea,
.contact-form select,
.contact-form input {
  width: 100%;
  background: #090909;
  color: var(--text);
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.contact-form textarea,
.contact-form label:has(textarea),
.turnstile-container,
.contact-form button,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.turnstile-widget {
  min-height: 65px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.form-status {
  margin: 0;
  min-height: 1.3em;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status.ok {
  color: var(--ok);
}

.form-status.error {
  color: #ff8f8f;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 1rem 2rem;
  max-width: var(--max);
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-footer img {
  width: 28px;
  height: 28px;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 920px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 1rem;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 20;
  }

  .site-nav.open {
    display: flex;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-modal__dialog {
    width: calc(100vw - 1rem);
  }
}
