:root {
  --bg: #0a0a0d;
  --bg-alt: #111116;
  --panel: #17171d;
  --border: #2a2a32;
  --text: #f2f2f4;
  --text-dim: #a8a8b3;
  --red: #ff1f2e;
  --red-glow: #ff3b4a;
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Anton', 'Inter', sans-serif; letter-spacing: 0.01em; margin: 0; text-transform: uppercase; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  color: var(--red-glow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.section-title.center { text-align: center; }

.section { padding: 100px 0; position: relative; overflow: hidden; }
.section.alt { background: var(--bg-alt); }

/* Glow orbs */
.glow-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(70px); opacity: 0.35; animation: orbFloat 16s ease-in-out infinite;
}
.orb-red { width: 420px; height: 420px; background: var(--red); top: -120px; right: -100px; }
.orb-blue { width: 380px; height: 380px; background: #2b6cff; bottom: -140px; left: -120px; animation-delay: -8s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.12); }
}
.section > .container { position: relative; z-index: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(255,31,46,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(255,31,46,0.7); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--red-glow); color: var(--red-glow); }

/* Progress bar */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-glow));
  z-index: 1000; transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,13,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand-word {
  font-family: 'Anton', sans-serif; font-size: 1.4rem; letter-spacing: 0.02em;
  color: var(--red); text-shadow: 0 0 18px rgba(255,31,46,0.55);
}
.brand-sub { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-word { display: block; font-size: 1.6rem; }
.nav { display: flex; gap: 32px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-dim); transition: color 0.2s ease; }
.nav a:hover { color: var(--text); }
.header-cta { padding: 10px 22px; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(255,31,46,0.25), transparent 60%),
    linear-gradient(180deg, rgba(10,10,13,0.55) 0%, rgba(10,10,13,0.75) 55%, rgba(10,10,13,0.96) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 100px; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  margin: 6px 0 20px;
}
.hero-title span { color: var(--red); text-shadow: 0 0 30px rgba(255,31,46,0.65); }
.hero-sub { max-width: 560px; color: var(--text-dim); font-size: 1.05rem; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4); border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--red-glow); border-radius: 4px;
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* Stats strip */
.strip { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px; gap: 16px; text-align: center;
}
.strip-item strong { display: block; font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--red-glow); }
.strip-item span { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px;
}
.service-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d; will-change: transform;
}
.service-card:hover { border-color: var(--red); box-shadow: 0 20px 40px -20px rgba(255,31,46,0.35); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-family: 'Inter', sans-serif; text-transform: none; font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0; }

/* Gallery */
.gallery-note {
  text-align: center; color: var(--text-dim); font-size: 0.92rem;
  max-width: 480px; margin: 0 auto;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; margin-top: 46px;
}
.gallery-grid-compact { grid-auto-rows: 280px; }
.gallery-item {
  position: relative; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--panel);
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 0 0 1px var(--border);
  transition: box-shadow 0.25s ease;
}
.gallery-item:hover { box-shadow: 0 0 0 1px var(--red), 0 20px 40px -18px rgba(255,31,46,0.4); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; background: rgba(0,0,0,0.25);
}
.play-badge::after {
  content: ""; position: absolute; width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6); z-index: -1;
}

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-text { color: var(--text-dim); margin-bottom: 20px; }
.about-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.about-list li { padding-left: 26px; position: relative; color: var(--text-dim); font-size: 0.95rem; }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px;
  background: var(--red); border-radius: 50%; box-shadow: 0 0 10px rgba(255,31,46,0.8);
}
.about-media img { border-radius: var(--radius); border: 1px solid var(--border); }

/* CTA section */
.cta-section {
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,31,46,0.14), transparent 70%), var(--bg-alt);
  text-align: center;
}
.cta-text { color: var(--text-dim); max-width: 480px; margin: 0 auto 34px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { height: 26px; opacity: 0.8; }
.site-footer p { color: var(--text-dim); font-size: 0.85rem; margin: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(5,5,7,0.94); align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 92vw; max-height: 88vh; }
.lightbox-content img, .lightbox-content video { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .about-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .header-cta { display: none; }
}

@media (max-width: 520px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item.span-2 { grid-column: span 2; }
}
