:root {
  --bg: #020304;
  --ink: #f5f1e8;
  --muted: #aaa39a;
  --red: #ff1d28;
  --gold: #e7c56f;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

#sentinel {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 45%, #182027 0, #07090d 42%, #020304 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px 120px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px 120px),
    radial-gradient(circle at 72% 18%, rgba(255, 29, 40, 0.22), transparent 28%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 95%);
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 28px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 10px 14px;
  transform: translateX(-50%);
  background: rgba(2, 3, 4, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}

.mark {
  display: block;
  width: 72px;
  padding: 7px;
  background: #fff;
  border-radius: 999px;
}

.nav nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 34px);
}

.nav a {
  text-decoration: none;
}

.nav nav a {
  color: rgba(245, 241, 232, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: center;
  padding: 130px clamp(18px, 6vw, 90px) 70px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 18px 0 24px;
  max-width: 980px;
  font-size: clamp(54px, 10vw, 144px);
  line-height: 0.84;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(38px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.cinema-copy p,
.split-stage p,
.contact-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions a,
.contact button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.hero-actions a + a {
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
}

.glass-orbit {
  position: relative;
  min-height: 650px;
}

.orbit-image {
  position: absolute;
  inset: 6% 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42% 58% 48% 52% / 56% 42% 58% 44%;
  box-shadow: 0 40px 140px rgba(255, 29, 40, 0.16);
}

.orbit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(.72);
}

.orbit-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,3,4,.68), transparent 54%);
}

.orbit-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 18px;
  background: rgba(2, 3, 4, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.orbit-card.top {
  top: 3%;
  right: 4%;
}

.orbit-card.bottom {
  bottom: 6%;
  left: 0;
}

.orbit-card.left {
  left: 8%;
  top: 22%;
}

.orbit-card strong {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.orbit-card span {
  color: var(--muted);
}

.impact {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 6vw, 90px);
}

.impact-title {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1.45fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

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

.impact-panel {
  min-height: 480px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--glass);
}

.impact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: .5;
  filter: saturate(.75);
}

.impact-panel.event::before { background-image: url("assets/event-security.jpg"); }
.impact-panel.object::before { background-image: url("assets/hero-security.png"); }
.impact-panel.fire::before { background-image: url("assets/brand-fire.jpg"); }
.impact-panel.access::before { background-image: url("assets/hero-security.png"); }
.impact-panel.patrol::before { background-image: url("assets/event-security.jpg"); }
.impact-panel.concept::before { background-image: url("assets/brand-fire.jpg"); }

.impact-panel span {
  color: var(--gold);
  font-weight: 900;
}

.impact-panel h3 {
  margin: 18px 0 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: .95;
}

.impact-panel p {
  color: rgba(245, 241, 232, .78);
  font-size: 18px;
}

.signal {
  padding: 0 clamp(18px, 6vw, 90px) clamp(70px, 10vw, 140px);
}

.signal-strip {
  display: flex;
  gap: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.signal-strip span {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.split-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(20px, 4vw, 44px);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 30px;
  backdrop-filter: blur(12px);
}

.split-stage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.split-stage img {
  width: 100%;
  height: min(62vw, 680px);
  object-fit: cover;
}

.split-stage figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.blackbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(18px, 6vw, 90px) clamp(70px, 10vw, 140px);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}

.blackbox-line {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: rgba(2, 3, 4, 0.72);
  border-right: 1px solid var(--line);
}

.blackbox-line b {
  color: var(--red);
  font-size: 32px;
}

.blackbox-line span {
  font-size: 24px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: start;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 6vw, 90px);
  background: linear-gradient(135deg, rgba(255,29,40,.22), rgba(255,255,255,.04));
  border-top: 1px solid var(--line);
}

.contact a {
  color: #fff;
  font-weight: 900;
}

.cinema-card {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(2, 3, 4, 0.64);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 80px rgba(255, 29, 40, 0.12);
}

.cinema-card strong {
  color: var(--gold);
  font-size: 22px;
}

.cinema-card span,
.cinema-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cinema-card svg,
.contact .social-row svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact .social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.contact .social-row a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: rgba(2,3,4,.7);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.contact label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
}

.contact label:has(textarea),
.contact button {
  grid-column: 1 / -1;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-note a {
  color: #fff;
  font-weight: 900;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px;
  color: #fff;
  background: rgba(255,255,255,.08);
}

.contact select option {
  color: #111;
}

.hp {
  position: absolute;
  left: -9999px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 6vw, 90px);
  color: var(--muted);
  background: #000;
  border-top: 1px solid var(--line);
}

footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .cinema,
  .impact-title,
  .split-stage,
  .contact {
    grid-template-columns: 1fr;
  }

  .glass-orbit {
    min-height: 520px;
  }

  .impact-grid,
  .blackbox {
    grid-template-columns: 1fr;
  }

  .impact-panel {
    min-height: 360px;
  }
}

@media (max-width: 660px) {
  .nav {
    position: static;
    width: auto;
    transform: none;
    margin: 12px;
    border-radius: 24px;
  }

  .nav nav {
    display: none;
  }

  .cinema {
    padding-top: 40px;
  }

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

  footer {
    flex-direction: column;
  }
}
