:root {
  --ink: #070707;
  --ink-2: #10100f;
  --ink-3: #191816;
  --paper: #fffaf0;
  --paper-2: #d8d0c4;
  --paper-3: #9d968c;
  --orange: #f26a1b;
  --sun: #ffd35a;
  --lime: #c8ff4a;
  --cyan: #8df6ff;
  --line: rgba(255, 250, 240, 0.16);
  --line-strong: rgba(255, 250, 240, 0.32);
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle 260px at var(--mx, 50%) var(--my, 18%), rgba(242, 106, 27, 0.18), transparent 70%),
    linear-gradient(180deg, #070707 0%, #10100f 48%, #070707 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.progress-bar {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--cyan));
  box-shadow: 0 0 22px rgba(242, 106, 27, 0.55);
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.75);
  border-radius: 999px;
  mix-blend-mode: difference;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.cursor-ring::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 52px;
  transform: translateY(-50%);
  min-width: max-content;
  padding: 6px 8px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.72);
  color: var(--paper);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-ring.is-active {
  width: 72px;
  height: 72px;
  border-color: var(--orange);
}

.cursor-ring.has-label::after {
  opacity: 1;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 74, 0.9);
}

.has-custom-cursor .cursor-ring,
.has-custom-cursor .cursor-dot {
  opacity: 1;
}

.ticker {
  position: relative;
  z-index: 20;
  height: 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.82);
  color: var(--paper-2);
  font-size: 12px;
  line-height: 34px;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  min-width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  padding-right: 26px;
}

.ticker b {
  color: var(--lime);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  border-bottom: 1px solid transparent;
  background: transparent;
}

/* Push page content below the now-fixed header, except the video hero
   which should start right from the very top, under the header. */
body {
  padding-top: 77px;
}

.hero--landing {
  margin-top: -77px;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
}

.brand__mark {
  width: 240px;
  height: 76px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
}

.brand__mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-cta,
.btn,
.chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-link {
  padding: 0 14px;
  color: var(--paper-2);
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

/* Desktop: bold nav text so it stays readable over the transparent
   header sitting on top of the hero video. */
@media (min-width: 821px) {
  .nav-link {
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.08);
}

.nav-cta {
  margin-left: 8px;
  padding: 0 18px;
  background: var(--paper);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
}

.hero--landing {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
  isolation: isolate;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -3;
  filter: saturate(1) contrast(1) brightness(0.96);
  background: #000;
}

.hero__shade {
  z-index: -2;
  background: rgba(0, 0, 0, 0.16);
}

.hero--landing::before {
  display: none;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(141, 246, 255, 0.14) 0 1px, transparent 1px 100%);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.25;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.hero__landing-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(62px, 11vh, 118px);
}

.hero__logo {
  width: min(760px, 78vw);
  margin-bottom: clamp(24px, 7vh, 80px);
  filter: drop-shadow(0 26px 80px rgba(0, 0, 0, 0.58));
}

.hero__logo img {
  width: 100%;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-2);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.page-hero h1,
.section-title,
.big-word {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.95;
}

.hero h1 {
  margin-top: 22px;
  max-width: 820px;
  font-size: 76px;
}

.hero--landing h1 {
  max-width: 920px;
  font-size: clamp(50px, 9vw, 128px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  margin-top: 10px;
  font-size: 48px;
}

.accent {
  color: var(--orange);
}

.glow-text {
  color: var(--lime);
  text-shadow: 0 0 22px rgba(200, 255, 74, 0.24);
}

.lede {
  color: var(--paper-2);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

.hero .lede {
  margin: 24px 0 0;
}

.hero--landing .lede {
  max-width: 610px;
  color: rgba(255, 250, 240, 0.84);
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row--icons {
  flex-wrap: nowrap;
  gap: 16px;
}

.cta-icon {
  flex: none;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.07);
  color: var(--paper);
  font-size: 26px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta-icon:hover {
  transform: translateY(-3px);
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
}

.btn {
  padding: 0 20px;
  min-height: 48px;
  border-color: var(--line);
  color: var(--paper);
  background: rgba(255, 250, 240, 0.07);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  border-color: var(--paper);
  background: rgba(255, 250, 240, 0.14);
}

.btn--primary {
  background: var(--orange);
  color: #111;
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--sun);
  color: #111;
}

.btn--lime {
  background: var(--lime);
  color: #111;
  border-color: var(--lime);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.hero__rail span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.42);
  backdrop-filter: blur(14px);
  color: var(--paper-2);
  font-size: 12px;
  text-transform: uppercase;
}

.hero__rail b {
  color: var(--orange);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-button {
  min-width: 202px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 0 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-button--solid {
  background: #fff;
  color: #080808;
}

.hero-button--outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.hero-button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #080808;
}

.stat {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 240, 0.055);
}

.stat b {
  display: block;
  color: var(--paper);
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--paper-3);
  font-size: 13px;
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  inset: 0 0 68px 32px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.hero-card::after,
.image-panel::after,
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.logo-plate {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 86%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 250, 240, 0.75);
  background: rgba(255, 250, 240, 0.96);
  padding: 18px;
  box-shadow: var(--shadow);
}

.logo-plate img {
  width: 100%;
}

.scan-card {
  position: absolute;
  right: 0;
  bottom: 122px;
  width: 220px;
  min-height: 150px;
  border: 1px solid rgba(141, 246, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(16px);
  padding: 18px;
}

.scan-card small {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
}

.scan-card b {
  display: block;
  margin-top: 16px;
  font-size: 32px;
}

.scan-card span {
  color: var(--paper-3);
  font-size: 13px;
  line-height: 1.4;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #111;
}

.marquee__track {
  display: inline-flex;
  min-width: max-content;
  animation: ticker 24s linear infinite;
}

.marquee span {
  padding: 18px 18px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.logo-slider {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 106, 27, 0.18), transparent 38%),
    rgba(255, 250, 240, 0.04);
  padding: 22px 0 26px;
}

.logo-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.logo-slider__head p {
  margin: 0;
  color: var(--paper-3);
  font-size: 13px;
}

.logo-slider__viewport {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transition: filter 300ms ease, opacity 300ms ease;
}

.logo-slider__viewport:hover {
  filter: grayscale(0) saturate(1.08);
  opacity: 1;
}

.logo-slider__track {
  display: inline-flex;
  gap: 16px;
  min-width: max-content;
  padding-left: 18px;
  animation: logoSlide 74s linear infinite;
}

.logo-slider__viewport:hover .logo-slider__track {
  animation-play-state: paused;
}

.logo-tile {
  width: 230px;
  height: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoSlide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 90px 0;
}

.section--paper {
  background: var(--paper);
  color: #111;
}

.section--paper .lede,
.section--paper .meta,
.section--paper .card p {
  color: #55504a;
}

.section--line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.035);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-title {
  font-size: 50px;
}

.section-kicker {
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.person,
.work-card,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
  overflow: hidden;
}

.card {
  min-height: 230px;
  padding: 22px;
}

.card__num,
.meta {
  color: var(--paper-3);
  font-size: 12px;
  text-transform: uppercase;
}

.card h3,
.card h4,
.work-card h3,
.person h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.card p,
.person p,
.work-card p {
  margin: 0;
  color: var(--paper-2);
  line-height: 1.6;
}

.image-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel__text {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.image-panel__text h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote {
  border-left: 3px solid var(--orange);
  padding: 18px 18px 18px 22px;
  background: rgba(255, 250, 240, 0.055);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
  margin: 0;
  color: var(--paper-2);
  line-height: 1.65;
}

.quote b {
  display: block;
  margin-top: 14px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.team-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.page-hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  padding: 26px 0 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.58), rgba(7, 7, 7, 0.78));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: var(--paper-3);
  font-size: 12px;
  text-transform: uppercase;
}

.poster {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster__caption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  min-height: 40px;
  padding: 0 15px;
  border-color: var(--line);
  background: transparent;
  color: var(--paper-2);
}

.chip.active,
.chip:hover {
  color: #111;
  border-color: var(--lime);
  background: var(--lime);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  min-height: 330px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.work-card__body {
  padding: 18px;
}

.work-card h3 {
  margin-top: 8px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.person {
  min-height: 342px;
}

.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.person__body {
  padding: 16px;
}

.person h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.person p {
  font-size: 13px;
}

.person__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.person__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-2);
  font-size: 12px;
}

.person__links a:hover {
  border-color: var(--orange);
  color: var(--paper);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail b {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
}

.detail span,
.detail a {
  color: var(--paper-2);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.contact-panel,
.form-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--paper-3);
  font-size: 12px;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
  color: var(--paper);
  padding: 14px 15px;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
}

.form-note {
  color: var(--lime);
  min-height: 22px;
  font-size: 13px;
}

.page-hero + .section {
  padding-top: 56px;
}

.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255, 250, 240, 0.05);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.22), transparent 46%),
    rgba(255, 250, 240, 0.04);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 58px 0 24px;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  width: min(300px, 100%);
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
}

.footer-brand p {
  max-width: 360px;
  color: var(--paper-3);
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 10px 0;
  color: var(--paper-3);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--paper-3);
  font-size: 13px;
}

.footer-bottom__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom__icons a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper-3);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-bottom__icons a i {
  font-size: 13px;
}

.footer-bottom__icons a:hover {
  color: var(--orange);
}

.fixed-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 850;
  display: grid;
  gap: 8px;
}

.fixed-contact a {
  min-width: 50px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(12px);
  color: var(--paper);
  font-size: 12px;
}

.fixed-contact a:hover {
  border-color: var(--orange);
  color: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 58px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .hero__grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

  .people-grid,
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-grid,
  .grid-3,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 111px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 7, 0.94);
    backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link,
  .nav-cta {
    justify-content: flex-start;
    margin: 0;
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

 .brand__mark {
    width: 196px;
    height: 62px;
  }

  .hero--landing {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
  }

  .hero__landing-inner {
    min-height: 0;
    height: 100%;
  }

  .hero__video {
    object-fit: cover;
  }

  .hero h1 {
    font-size: 44px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero__stats,
  .people-grid,
  .work-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .team-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero__logo {
    width: min(620px, 92vw);
    margin-bottom: 18vh;
  }

  .hero__rail {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-slider__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-tile {
    width: 198px;
    height: 104px;
  }

  .hero-button {
    min-width: 184px;
  }

  .hero-card {
    inset: 0 0 74px 0;
  }

  .scan-card {
    right: 10px;
    bottom: 112px;
  }

  .section-head,
  .cta-band__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fixed-contact {
    display: none;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .team-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .brand__mark {
    width: 168px;
    height: 54px;
  }

  .brand__mark img {
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-buttons {
    width: min(100%, 270px);
    flex-direction: column;
    gap: 14px;
  }

  .hero-button {
    width: 100%;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__logo {
    width: 94vw;
    margin-bottom: 12vh;
  }

  .hero__rail span {
    width: 100%;
  }

  .logo-plate {
    padding: 12px;
  }

  .scan-card {
    width: 170px;
    min-height: 124px;
  }

  .marquee span {
    font-size: 18px;
  }

  .logo-tile {
    width: 176px;
    height: 92px;
    padding: 14px 16px;
  }

  .detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: auto;
  }

  .cursor-ring,
  .cursor-dot {
    display: none;
  }

  .ticker__track,
  .marquee__track,
  .logo-slider__track {
    animation-duration: 60s;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}