:root {
  color-scheme: dark;
  --bg: #020202;
  --panel: #0a0a0b;
  --panel-soft: #111113;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f5f5;
  --muted: #9b9b9b;
  --red: #ff101d;
  --red-dark: #b80d16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--red);
  color: white;
}

button,
input,
textarea {
  font: inherit;
}

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

#scene-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  pointer-events: none;
}

.page-shell {
  width: min(1336px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 62px;
  padding: 0 6.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  align-content: center;
  width: fit-content;
  text-transform: uppercase;
}

.brand > span {
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand span span,
.panel-title p,
.split-heading p,
.section-kicker,
.quote-mark,
.site-footer strong {
  color: var(--red);
}

.brand small {
  margin-top: 4px;
  color: white;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.68em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  height: 100%;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  color: white;
  transition: color 180ms ease;
}

.nav-menu a::after {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: white;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.outline-btn,
.solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: transparent;
  color: white;
}

.header-btn {
  border-color: var(--red);
  color: var(--red);
}

.solid-btn {
  border: 1px solid var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
}

.outline-btn:hover,
.solid-btn:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 386px;
  padding-top: 62px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 62px 0 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.08) 68%, rgba(0, 0, 0, 0.75) 100%),
    url("assets/hero-editor.png") center right / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 28%, rgba(22, 108, 150, 0.22), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 324px;
  padding-top: 18px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker span {
  width: 32px;
  height: 2px;
  background: var(--red);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(2.9rem, 4.15vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h1 strong {
  color: var(--red);
  font-weight: inherit;
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 26px;
  color: #d6d6d6;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-actions .solid-btn,
.hero-actions .outline-btn {
  width: 180px;
}

.play-mini {
  width: 0;
  height: 0;
  margin-right: 12px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid white;
}

.scroll-cue {
  position: absolute;
  right: 6.5vw;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 24px;
  height: 1px;
  background: white;
}

.showreel-panel,
.portfolio-section,
.metrics-services,
.bottom-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.showreel-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 7px 0 9px;
}

.panel-title p,
.split-heading p {
  margin: 0 0 4px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-title h2,
.split-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.showreel-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #101013, #050505);
  overflow: hidden;
}

.showreel-art {
  position: relative;
  min-height: 108px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85)),
    url("assets/hero-editor.png") center / cover no-repeat;
  filter: saturate(1.1) contrast(1.08);
}

.showreel-art::before,
.thumb::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 128, 184, 0.22), transparent 42%, rgba(255, 16, 29, 0.12));
  content: "";
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button::after {
  position: absolute;
  left: 23px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--red);
  content: "";
}

.showreel-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 18px 34px;
}

.showreel-copy h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.showreel-copy p {
  max-width: 220px;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.small-btn {
  min-height: 30px;
  padding: 0 20px;
}

.portfolio-section {
  padding: 12px 0 7px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #060606;
  overflow: hidden;
  transform-style: preserve-3d;
}

.portfolio-item h3 {
  margin: 0;
  padding: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  text-align: center;
  text-transform: uppercase;
}

.thumb {
  position: relative;
  min-height: 82px;
  background-image: url("assets/hero-editor.png");
  background-size: 260%;
  filter: saturate(1.05);
}

.thumb-camera {
  background-position: 88% 50%;
}

.thumb-reels {
  background-position: 46% 62%;
}

.thumb-watch {
  background-position: 66% 42%;
}

.thumb-landscape {
  background-position: 32% 40%;
}

.thumb-motion {
  background:
    linear-gradient(135deg, rgba(110, 0, 175, 0.78), rgba(255, 16, 29, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.12) 12px 14px),
    #170019;
}

.metrics-services {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) 1fr;
  gap: 32px;
  align-items: center;
  padding: 8px 0 14px;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 64px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #0d0d0f, #080808);
}

.metrics-bar div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 10px;
  align-content: center;
  padding: 12px 16px;
}

.metric-icon {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
}

.metrics-bar strong {
  font-size: 1.45rem;
}

.metrics-bar small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.services-strip {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-icons article {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: white;
}

.service-icons span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #dedede;
  font-family: Arial, sans-serif;
}

.service-icons p {
  margin: 0;
  color: #d6d6d6;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  text-align: center;
  text-transform: uppercase;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr 1.18fr;
  gap: 34px;
  padding: 14px 0 10px;
}

.panel-block {
  min-height: 154px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 34px;
}

.panel-block:first-child {
  border-left: 0;
  padding-left: 0;
}

.quote-row {
  display: grid;
  grid-template-columns: 24px 62px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f3c0a1 0 18%, transparent 19%),
    radial-gradient(circle at 50% 68%, #202020 0 34%, transparent 35%),
    linear-gradient(135deg, #a86b48, #f1d0b4);
}

.quote-row p {
  max-width: 310px;
  margin-bottom: 12px;
  color: #c5c5c5;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  line-height: 1.65;
}

.quote-row strong,
.quote-row small {
  display: block;
  font-family: Arial, sans-serif;
}

.quote-row small {
  color: var(--muted);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin: 12px 0 0 46px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c5c5c;
}

.slider-dots .active {
  background: var(--red);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.price-box {
  position: relative;
  min-height: 118px;
  padding: 11px 14px 10px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(180deg, #171719, #09090a);
}

.price-box span {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-size: 1.62rem;
  text-align: center;
}

.price-box strong small {
  font-size: 0.58rem;
  font-weight: 400;
}

.price-box p {
  margin: 4px 0;
  color: #c8c8c8;
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
}

.price-box p::before {
  margin-right: 6px;
  content: "›";
}

.price-box b {
  position: absolute;
  top: 12px;
  right: -28px;
  width: 92px;
  padding: 4px;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  margin-top: 8px;
}

.contact-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
}

.contact-list span {
  grid-row: span 2;
  color: var(--red);
  font-size: 1.2rem;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

form {
  display: grid;
  gap: 5px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: #020202;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  outline: 0;
}

input {
  height: 26px;
  padding: 0 12px;
}

textarea {
  min-height: 44px;
  resize: vertical;
  padding: 10px 12px;
}

input:focus,
textarea:focus {
  border-color: var(--red);
}

form .solid-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 14px;
  color: #727272;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
}

.reveal-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reveal-card:hover {
  border-color: rgba(255, 16, 29, 0.5);
  box-shadow: 0 16px 42px rgba(255, 16, 29, 0.09);
  transform: translateY(-4px) rotateX(1deg);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(12px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 170px 1fr 110px;
    padding: 0 24px;
  }

  .nav-menu {
    gap: 16px;
    font-size: 0.7rem;
  }

  .bottom-grid,
  .metrics-services {
    grid-template-columns: 1fr;
  }

  .panel-block {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 14px 18px;
  }

  .nav-menu {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
    height: 38px;
  }

  .header-btn {
    min-width: 96px;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-bg,
  .hero-overlay {
    inset: 0;
  }

  .hero-content {
    min-height: 560px;
    padding-top: 120px;
  }

  .showreel-panel,
  .showreel-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .showreel-copy {
    padding: 18px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-bar,
  .service-icons,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .brand > span {
    font-size: 1.18rem;
  }

  .brand small {
    letter-spacing: 0.4em;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions .solid-btn,
  .hero-actions .outline-btn,
  .portfolio-grid,
  .metrics-bar,
  .service-icons,
  .price-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .scroll-cue {
    display: none;
  }

  .split-heading,
  .site-footer {
    display: grid;
  }

  .quote-row {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
