@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700;800&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070708;
  --surface: #0d0d10;
  --surface-2: #13131a;
  --border: rgba(255, 255, 255, 0.065);
  --border-2: rgba(255, 255, 255, 0.12);

  --text: #dedad0;
  --text-dim: #6e6c78;
  --text-mute: #2e2d35;

  --blue: #3a6fa8;
  --blue-mid: #4d85c4;
  --blue-glow: rgba(58, 111, 168, 0.14);
  --amber: #bf7e32;
  --amber-light: #d49448;

  --ff-display: "Bebas Neue", Impact, sans-serif;
  --ff-ui: "Manrope", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.25, 0.1, 0.1, 1);
  --footer-reveal-height: clamp(460px, 58vh, 620px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  z-index: 2;
  margin-bottom: var(--footer-reveal-height);
  background: var(--bg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

::selection {
  background: var(--amber);
  color: #fff;
}

img {
  display: block;
}

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

/* ─── GRAIN OVERLAY ─── */

.grain-layer {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-shift 0.18s steps(1) infinite;
  will-change: transform;
}

@keyframes grain-shift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-12px, 7px);
  }
  40% {
    transform: translate(9px, -10px);
  }
  60% {
    transform: translate(-6px, 14px);
  }
  80% {
    transform: translate(11px, -5px);
  }
  100% {
    transform: translate(-4px, 8px);
  }
}

/* ─── SCROLLBAR ─── */

::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
}

/* ─── NAV ─── */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9200;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    padding 0.5s var(--ease-cinematic),
    background 0.5s,
    border-color 0.5s;
  border-bottom: 1px solid transparent;
}

#nav.pinned {
  padding: 18px 48px;
  background: rgba(7, 7, 8, 0.88);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: rgba(13, 13, 16, 0.72);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out-expo),
    border-color 0.25s var(--ease-out-expo);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 0.22s var(--ease-out-expo),
    transform 0.28s var(--ease-out-expo);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.35s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text) !important;
  border: 1px solid var(--border-2);
  padding: 0 22px;
  transition:
    background 0.3s,
    border-color 0.3s !important;
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.nav-contact::after {
  display: none !important;
}

/* ─── HERO ─── */

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/thelast.avif");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: blur(2px);
  transform: scale(1.05);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 7, 8, 0.7) 0%,
      rgba(7, 7, 8, 0.3) 50%,
      rgba(7, 7, 8, 0.9) 100%
    ),
    radial-gradient(
      ellipse 80% 70% at 50% 40%,
      rgba(58, 111, 168, 0.07) 0%,
      transparent 70%
    );
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 52px;
}

.hero-pre {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-up 0.9s 0.2s var(--ease-out-expo) forwards;
}

.hero-pre::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue-mid);
}

.hero-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(64px, 11.5vw, 172px);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 0;
  opacity: 0;
  animation: reveal-up 1.1s 0.35s var(--ease-out-expo) forwards;
}

.hero-title .word-2 {
  display: block;
  margin-left: clamp(48px, 8vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(222, 218, 208, 0.4);
}

.hero-tagline-row {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: reveal-up 0.9s 0.6s var(--ease-out-expo) forwards;
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 340px;
}

.hero-divider {
  width: 1px;
  height: 52px;
  background: var(--border-2);
  flex-shrink: 0;
}

.hero-caps {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 2;
}

.hero-caps span {
  display: block;
}

/* Filmstrip */

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  z-index: 3;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.hero-strip-inner {
  display: flex;
  gap: 12px;
  height: 100%;
  animation: strip-scroll 40s linear infinite;
  width: max-content;
  padding: 0 6px;
}

.strip-card {
  flex-shrink: 0;
  width: 130px;
  height: 188px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  align-self: flex-end;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.75);
  transition: filter 0.5s;
}

.strip-card:hover img {
  filter: saturate(1) brightness(0.9);
}

.strip-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── MARQUEE STRIP ─── */

.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  background: var(--surface);
  position: relative;
  z-index: 10;
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee-scroll 22s linear infinite;
  width: max-content;
}

.marquee-inner span {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 28px;
  flex-shrink: 0;
}

.marquee-inner span.accent {
  color: var(--amber);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION BASE ─── */

.section-label {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--blue-mid);
  flex-shrink: 0;
}

.display-heading {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: 0;
  color: var(--text);
}

.display-heading em {
  font-style: italic;
  font-weight: 200;
}

/* ─── ABOUT SECTION ─── */

#about {
  padding: 120px 52px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.about-heading {
  font-size: clamp(44px, 5.5vw, 80px);
  margin-bottom: 48px;
  margin-top: 20px;
}

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 18px;
  max-width: 480px;
}

.about-body strong {
  color: var(--text);
  font-weight: 400;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 16px;
  transition:
    gap 0.3s var(--ease-out-expo),
    opacity 0.25s;
}

.about-link:hover {
  gap: 18px;
  opacity: 0.8;
}

.about-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.about-right {
  position: relative;
}

.about-poster-wrap {
  position: relative;
  padding-right: 28px;
}

.about-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.8);
}

.about-poster-label {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 16px 20px;
  width: 200px;
}

.about-poster-label-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.about-poster-label-meta {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 42px;
  font-weight: 200;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ─── WORK GRID ─── */

.work-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work-grid::-webkit-scrollbar {
  display: none;
}

.work-grid > * {
  flex-shrink: 0;
}

.work-tile {
  width: 280px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.work-tile:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.work-tile img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.work-tile > div {
  padding: 20px;
}

.work-tile span {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: block;
}

.work-tile h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.work-tile p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}

/* ─── CATALOGUE ─── */

#catalogue {
  padding: 100px 0 100px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.catalogue-header {
  padding: 0 52px;
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.catalogue-heading {
  font-size: clamp(40px, 5vw, 72px);
}

.catalogue-scroll-hint {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}

.catalogue-scroll-hint svg {
  width: 18px;
  height: 12px;
}

.catalogue-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 52px 24px;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.catalogue-track::-webkit-scrollbar {
  display: none;
}

.catalogue-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.cat-card {
  flex-shrink: 0;
  width: 220px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.cat-card:hover {
  transform: translateY(-6px);
}

.cat-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) brightness(0.8);
  transition:
    filter 0.5s,
    transform 0.6s var(--ease-out-expo);
}

.cat-card:hover .cat-card-img {
  filter: saturate(1) brightness(0.9);
  transform: scale(1.03);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(5, 5, 7, 0.92) 100%
  );
}

.cat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out-expo);
}

.cat-card:hover .cat-card-info {
  transform: translateY(0);
}

.cat-card-genre {
  font-family: var(--ff-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}

.cat-card-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  line-height: 1.1;
}

.cat-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.4s;
  pointer-events: none;
}

.cat-card:hover .cat-card-border {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ─── SERVICES ─── */

#services {
  padding: 112px 52px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

.services-heading {
  font-size: clamp(40px, 5vw, 68px);
  max-width: 780px;
}

.services-intro {
  max-width: 420px;
  justify-self: end;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  padding-top: 34px;
}

.services-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.service-item {
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 72px 300px minmax(420px, 1fr) 220px;
  gap: 28px;
  align-items: center;
  cursor: default;
  transition: background 0.3s var(--ease-out-expo);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.017);
}

.service-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 200;
  font-size: 32px;
  color: var(--text-mute);
  line-height: 1;
}

.service-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--text);
  line-height: 1;
}

.service-desc {
  width: 100%;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-end;
  justify-content: flex-end;
}

.service-tag {
  font-family: var(--ff-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid var(--border);
  padding: 7px 10px;
  white-space: nowrap;
}

.service-item:hover .service-tag {
  border-color: var(--border-2);
  color: var(--text-dim);
}

/* ─── PATHWAYS ─── */

#pathways {
  padding: 120px 52px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.pathways-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.pathways-head {
  margin-bottom: 64px;
}

.pathways-heading {
  font-size: clamp(44px, 5.5vw, 80px);
  margin-top: 20px;
  max-width: 600px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pathway-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.45s,
    transform 0.5s var(--ease-out-expo);
}

.pathway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.pathway-card:hover {
  border-color: rgba(58, 111, 168, 0.25);
  transform: translateY(-5px);
}

.pathway-card:hover::before {
  opacity: 1;
}

.pathway-for {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}

.pathway-who {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.2vw, 50px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}

.pathway-bar {
  width: 36px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 28px;
  transition: width 0.4s var(--ease-out-expo);
}

.pathway-card:nth-child(2) .pathway-bar {
  background: var(--amber);
}

.pathway-card:nth-child(3) .pathway-bar {
  background: linear-gradient(to right, var(--blue), var(--amber));
}

.pathway-card:hover .pathway-bar {
  width: 56px;
}

.pathway-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.pathway-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pathway-bullets li {
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}

.pathway-bullets li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.pathway-card:hover .pathway-bullets li {
  color: var(--text);
}

.pathway-arrow {
  position: absolute;
  bottom: 44px;
  right: 44px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: all 0.35s var(--ease-out-expo);
}

.pathway-card:hover .pathway-arrow {
  border-color: var(--blue);
  color: var(--blue-mid);
  background: var(--blue-glow);
  transform: translate(3px, -3px);
}

.pathway-arrow svg {
  width: 13px;
  height: 13px;
}

/* ─── STORIES ─── */

#stories {
  padding: 120px 52px;
  border-top: 1px solid var(--border);
}

.stories-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.stories-head {
  margin-bottom: 72px;
}

.stories-heading {
  font-size: clamp(44px, 5.5vw, 80px);
  margin-top: 20px;
}

.slate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slate-stat {
  position: relative;
  min-height: 310px;
  padding: 42px 34px 34px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    background 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
}

.slate-stat:last-child {
  border-right: none;
}

.slate-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(191, 126, 50, 0.16),
    transparent 46%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-expo);
  pointer-events: none;
}

.slate-stat:hover,
.slate-stat:focus-visible {
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-3px);
  outline: none;
}

.slate-stat:hover::before,
.slate-stat:focus-visible::before {
  opacity: 1;
}

.slate-stat-num {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(104px, 12vw, 172px);
  color: var(--text);
  line-height: 0.78;
  letter-spacing: 0;
  transition: color 0.35s var(--ease-out-expo);
}

.slate-stat:hover .slate-stat-num,
.slate-stat:focus-visible .slate-stat-num {
  color: var(--amber-light);
}

.slate-stat-label {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text);
  line-height: 0.95;
  max-width: 220px;
}

.slate-stat-action {
  position: absolute;
  right: 34px;
  bottom: 36px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo),
    color 0.3s var(--ease-out-expo);
}

.slate-stat:hover .slate-stat-action,
.slate-stat:focus-visible .slate-stat-action {
  opacity: 1;
  transform: translateY(0);
  color: var(--amber);
}

/* ─── CTA ─── */

#cta {
  padding: 160px 52px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 100%,
      rgba(58, 111, 168, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 70% 20%,
      rgba(191, 126, 50, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-pre {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
}

.cta-heading {
  font-family: var(--ff-display);
  font-weight: 200;
  font-size: clamp(52px, 9vw, 136px);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 56px;
}

.cta-heading em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(222, 218, 208, 0.28);
  display: block;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-2);
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s var(--ease-out-expo);
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 111, 168, 0.15),
    rgba(191, 126, 50, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

.cta-btn svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out-expo);
}

.cta-btn:hover svg {
  transform: translate(4px, -4px);
}

/* ─── FOOTER ─── */

footer {
  border-top: 1px solid var(--border);
  padding: 36px 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 28px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-logo:hover img {
  opacity: 0.9;
}

.footer-copy {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-align: center;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition:
    border-color 0.3s,
    color 0.3s;
}

.footer-social a:hover {
  border-color: var(--border-2);
  color: var(--text-dim);
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

/* ─── CURTAIN FOOTER ─── */

.footer-revealed {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-curtain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-out-expo);
}

.footer-revealed.revealed .footer-curtain {
  transform: translateY(0);
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 120px;
}

.footer-revealed {
  display: block;
  padding: 92px 52px 30px;
  background:
    linear-gradient(180deg, rgba(13, 13, 16, 0.96), rgba(7, 7, 8, 1)),
    var(--bg);
  border-top: 1px solid var(--border);
  isolation: isolate;
}

.footer-revealed .footer-curtain {
  inset: 0;
  background: var(--bg);
  transform: translateY(0);
  transition: transform 1.15s var(--ease-out-expo);
  will-change: transform;
  z-index: 2;
}

.footer-revealed.revealed .footer-curtain {
  transform: translateY(-102%);
}

.footer-revealed .footer-content {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(160px, 0.35fr) minmax(
      220px,
      0.5fr
    );
  gap: 64px;
  align-items: end;
  max-width: 1440px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-out-expo) 0.12s,
    transform 0.8s var(--ease-out-expo) 0.12s;
}

.footer-revealed.revealed .footer-content,
.footer-revealed.revealed .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  max-width: 720px;
}

.footer-revealed .footer-logo img {
  height: 34px;
  opacity: 0.82;
  transition:
    opacity 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.footer-revealed .footer-logo:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-kicker,
.footer-nav span,
.footer-contact span {
  display: block;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.footer-kicker {
  margin: 34px 0 20px;
}

.footer-title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 7vw, 112px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--text);
  max-width: 760px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-nav span,
.footer-contact span {
  margin-bottom: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p,
.footer-bottom {
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  transition:
    color 0.25s var(--ease-out-expo),
    transform 0.25s var(--ease-out-expo);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
  outline: none;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 76px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease-out-expo) 0.22s,
    transform 0.8s var(--ease-out-expo) 0.22s;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-revealed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  min-height: var(--footer-reveal-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  pointer-events: auto;
}

.footer-revealed .footer-curtain {
  display: none;
}

.footer-revealed .footer-content,
.footer-revealed .footer-bottom,
.footer-revealed.revealed .footer-content,
.footer-revealed.revealed .footer-bottom {
  opacity: 1;
  transform: none;
}

/* ─── REVEAL ANIMATIONS ─── */

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}

.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-delay-1 {
  transition-delay: 0.1s;
}
.js-reveal-delay-2 {
  transition-delay: 0.2s;
}
.js-reveal-delay-3 {
  transition-delay: 0.32s;
}
.js-reveal-delay-4 {
  transition-delay: 0.45s;
}

/* ─── HORIZONTAL LINE REVEAL ─── */

.js-line-reveal {
  overflow: hidden;
}

.js-line-reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}

.js-line-reveal.revealed .js-line-reveal-inner {
  transform: translateY(0);
}

/* ─── CURSOR DOT (optional) ─── */

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s,
    transform 0.08s;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(191, 126, 50, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.2s var(--ease-out-expo),
    width 0.35s var(--ease-out-expo),
    height 0.35s var(--ease-out-expo),
    border-color 0.35s;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: rgba(58, 111, 168, 0.5);
}

/* SHOWREEL HERO */

#hero.showreel-hero {
  isolation: isolate;
  display: block;
  min-height: 100svh;
  height: auto;
  padding: 118px 52px 64px;
  justify-content: initial;
}

.hero-video-stage,
.hero-bg-video,
.hero-video-grade,
.hero-video-vignette {
  position: absolute;
  inset: 0;
}

.hero-video-stage {
  z-index: 0;
  overflow: hidden;
  background: #050506;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(0.82) contrast(1.12) brightness(0.64);
  transition: opacity 700ms var(--ease-cinematic);
}

.hero-bg-video.is-active {
  opacity: 1;
}

.hero-video-grade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 6, 0.96) 0%,
      rgba(5, 5, 6, 0.72) 36%,
      rgba(5, 5, 6, 0.32) 66%,
      rgba(5, 5, 6, 0.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.82) 0%,
      rgba(5, 5, 6, 0.12) 46%,
      rgba(5, 5, 6, 0.9) 100%
    );
}

.hero-video-vignette {
  z-index: 2;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.88);
  background:
    radial-gradient(
      ellipse at 72% 42%,
      rgba(191, 126, 50, 0.13),
      transparent 36%
    ),
    radial-gradient(
      ellipse at 22% 52%,
      rgba(58, 111, 168, 0.12),
      transparent 34%
    );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
  width: min(100%, 1480px);
  min-height: calc(100svh - 182px);
  margin: 0 auto;
}

.showreel-hero .hero-body {
  padding: 0;
  max-width: 720px;
}

.showreel-hero .hero-title,
.showreel-hero .display-heading {
  letter-spacing: 0;
}

.showreel-hero .hero-tagline {
  color: rgba(222, 218, 208, 0.78);
}

.showreel-hero .hero-caps {
  color: rgba(222, 218, 208, 0.36);
}

.hero-now-playing {
  display: grid;
  gap: 7px;
  width: min(100%, 430px);
  margin-top: clamp(34px, 4vw, 58px);
  padding-top: 18px;
  border-top: 1px solid rgba(222, 218, 208, 0.2);
}

.hero-now-playing span,
.revolver-heading span {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.hero-now-playing strong {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}

.hero-now-playing small {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(222, 218, 208, 0.54);
}

.hero-revolver-panel {
  justify-self: end;
  width: min(100%, 760px);
}

.revolver-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-right: 4px;
}

.revolver-heading p {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(222, 218, 208, 0.44);
}

.revolver-shell {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 8px;
  perspective: 1100px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.revolver-shell.is-dragging {
  cursor: grabbing;
}

.revolver-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.revolver-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 276px;
  height: 368px;
  overflow: visible;
  border: 0;
  outline: 0;
  transform-style: preserve-3d;
  transition:
    transform 540ms var(--ease-out-expo),
    opacity 540ms var(--ease-out-expo),
    filter 540ms var(--ease-out-expo);
}

.revolver-card:focus-visible {
  outline: 2px solid var(--amber-light);
  outline-offset: 12px;
}

.revolver-card.is-active {
  filter: saturate(1.05) brightness(1);
}

.work-card-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow:
    0 0 10px 1px #000000ee,
    0 28px 72px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  transition: transform 300ms;
}

.revolver-card:hover .work-card-content,
.revolver-card.is-flipped .work-card-content,
.revolver-card:focus-visible .work-card-content {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #151515;
  color: #fff;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

.card-back::before {
  position: absolute;
  display: block;
  width: 160px;
  height: 160%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    #ff9966,
    #ff9966,
    #ff9966,
    #ff9966,
    transparent
  );
  animation: card-border-rotation 5000ms infinite linear;
}

.back-content {
  position: absolute;
  inset: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(21, 21, 21, 0.96), rgba(12, 12, 14, 0.98)),
    #151515;
}

.back-content span {
  font-family: var(--ff-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffbb66;
}

.back-content h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.back-content p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.back-content dl {
  display: grid;
  gap: 8px;
}

.back-content dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 7px;
}

.back-content dt,
.back-content dd {
  font-family: var(--ff-ui);
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.back-content dt {
  color: rgba(255, 255, 255, 0.42);
}

.back-content dd {
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.work-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04) brightness(0.86);
  transform: scale(1.01);
}

.front-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.front-content .badge {
  width: fit-content;
  border-radius: 10px;
  padding: 3px 10px;
  background-color: #00000055;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--ff-ui);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.description {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  background-color: #00000099;
  box-shadow: 0 0 10px 5px #00000088;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 100%;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.title p {
  width: min(76%, 128px);
}

.title span {
  color: #ffbb66;
}

.card-footer {
  margin-top: 5px;
  color: #ffffff88;
  font-size: 8px;
  line-height: 1.3;
}

.revolver-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.revolver-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(222, 218, 208, 0.16);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.56);
  color: rgba(222, 218, 208, 0.78);
  cursor: pointer;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s,
    transform 0.25s var(--ease-out-expo);
}

.revolver-btn:hover {
  border-color: rgba(255, 187, 102, 0.42);
  background: rgba(255, 187, 102, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.revolver-btn svg {
  width: 18px;
  height: 18px;
}

.revolver-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.revolver-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(222, 218, 208, 0.28);
  cursor: pointer;
  transition:
    width 0.3s var(--ease-out-expo),
    background 0.3s;
}

.revolver-dot.is-active {
  width: 30px;
  background: #ffbb66;
}

@keyframes card-border-rotation {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

/* ─── PAGE SHELL ─── */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-hero {
  position: relative;
  padding: 160px 52px 120px;
  background: var(--bg);
}

.page-kicker {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue-mid);
}

.page-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 48px;
}

.page-intro-panel {
  max-width: 600px;
}

.page-intro-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.page-intro-panel p:last-child {
  margin-bottom: 0;
}

/* ─── SPLIT HERO ─── */

.split-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.split-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.split-hero .page-title {
  font-size: clamp(44px, 6vw, 80px);
  margin-bottom: 32px;
}

.split-hero .page-intro-panel {
  max-width: 520px;
}

/* ─── BROWSER CATALOGUE ─── */

.browser-catalogue {
  padding: 72px 52px 84px;
  background: var(--bg);
}

.browser-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--border);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.browser-tabs::-webkit-scrollbar {
  display: none;
}

.browser-tab {
  scroll-snap-align: start;
  flex: 0 0 auto;
  padding: 16px 24px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out-expo),
    color 0.25s var(--ease-out-expo),
    transform 0.25s var(--ease-out-expo),
    border-color 0.25s var(--ease-out-expo);
}

.browser-tab svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.browser-tab:hover,
.browser-tab:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.browser-tab.is-active {
  color: var(--bg);
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.catalogue-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.catalogue-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.catalogue-page .page-hero {
  min-height: auto;
  padding-bottom: 72px;
}

.catalogue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--border);
}

.catalogue-hero .page-title {
  margin-bottom: 0;
}

.catalogue-hero-copy {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.panel-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.panel-heading span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
}

.panel-heading h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text);
}

.horizontal-scrub {
  position: relative;
  min-height: 76vh;
}

.horizontal-scrub-sticky {
  position: sticky;
  top: 96px;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.horizontal-scrub .work-grid {
  width: 100%;
  padding: 8px 0 22px;
  scroll-behavior: auto;
}

.horizontal-scrub .work-tile {
  width: min(32vw, 330px);
  min-width: 260px;
}

.dubbing-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.dubbing-grid::-webkit-scrollbar {
  display: none;
}

.dubbing-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.dub-tile {
  flex: 0 0 min(27vw, 320px);
  min-width: 240px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo);
}

.dub-tile:hover,
.dub-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  outline: none;
}

.dub-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dub-tile span,
.dub-tile h3,
.dub-tile p {
  margin-left: 18px;
  margin-right: 18px;
}

.dub-tile span {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 10px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.dub-tile h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.dub-tile p {
  min-height: 42px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
}

.dubbing-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -72px 0 28px;
}

.dubbing-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out-expo),
    transform 0.25s var(--ease-out-expo);
}

.dubbing-control:hover,
.dubbing-control:focus-visible {
  background: var(--amber);
  color: var(--bg);
  transform: translateY(-1px);
  outline: none;
}

.dub-viewer {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 7, 8, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out-expo);
}

.dub-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dub-viewer-panel {
  width: min(75vw, 1180px);
  max-height: 75vh;
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.42);
  transform: scale(0.96);
  transition: transform 0.28s var(--ease-out-expo);
}

.dub-viewer.is-open .dub-viewer-panel {
  transform: scale(1);
}

.dub-viewer video {
  width: 100%;
  max-height: calc(75vh - 84px);
  display: block;
  background: #000;
}

.dub-viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.dub-viewer-title {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.dub-viewer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.dub-viewer-close:hover,
.dub-viewer-close:focus-visible {
  background: var(--amber);
  color: var(--bg);
  outline: none;
}

.about-page .page-hero {
  padding-bottom: 76px;
}

.about-statement,
.about-page .capability-grid,
.about-page .office-section {
  padding: 72px 52px;
}

.about-statement {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.statement-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.statement-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.statement-copy span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
}

.statement-copy h2,
.page-section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300;
  line-height: 0.96;
  color: var(--text);
  margin-bottom: 24px;
}

.statement-copy p,
.office-card p,
.office-card a {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

.about-page .capability-list {
  gap: 24px;
}

.about-page .capability-item {
  width: 260px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.about-page .capability-item span,
.office-card span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.about-page .capability-item h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}

.about-page .capability-item p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.office-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.office-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--text);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.catalogue-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out-expo);
}

.catalogue-item:hover {
  transform: translateY(-4px);
}

.catalogue-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.catalogue-item-content {
  padding: 24px;
}

.catalogue-item-meta {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.catalogue-item-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.catalogue-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ─── CAPABILITY GRID ─── */

.capability-grid {
  padding: 120px 52px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.capability-list {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.capability-list::-webkit-scrollbar {
  display: none;
}

.capability-list > * {
  flex-shrink: 0;
  width: 300px;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.capability-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: all 0.3s var(--ease-out-expo);
}

.capability-item:hover .capability-icon {
  border-color: var(--blue);
  color: var(--blue);
  transform: scale(1.05);
}

.capability-icon svg {
  width: 28px;
  height: 28px;
}

.capability-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
}

.capability-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ─── OFFICE SECTION ─── */

.office-section {
  padding: 120px 52px;
  background: var(--bg);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.office-content h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.1;
}

.office-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.office-content p:last-child {
  margin-bottom: 0;
}

.office-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: auto;
  display: block;
}

.office-image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 16px 20px;
  max-width: 280px;
}

.office-image-label h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}

.office-image-label p {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.about-page .office-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  max-width: none;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .page-hero {
    padding: 120px 32px 80px;
  }

  .split-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .browser-catalogue {
    padding: 64px 32px 72px;
  }

  .catalogue-hero,
  .about-statement {
    grid-template-columns: 1fr;
  }

  .horizontal-scrub {
    min-height: 68vh;
  }

  .horizontal-scrub-sticky {
    top: 82px;
  }

  .horizontal-scrub .work-tile,
  .dub-tile {
    width: 270px;
    flex-basis: 270px;
  }

  .dubbing-controls {
    margin-top: -8px;
  }

  .dub-viewer-panel {
    width: min(92vw, 760px);
  }

  .about-statement,
  .about-page .capability-grid,
  .about-page .office-section {
    padding: 64px 32px;
  }

  .about-page .office-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .capability-grid {
    padding: 80px 32px;
  }

  .capability-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office-section {
    padding: 80px 32px;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-revealed {
    padding: 72px 32px 28px;
  }

  .footer-revealed .footer-content {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }

  .footer-title {
    font-size: clamp(42px, 12vw, 84px);
  }

  .footer-bottom {
    margin-top: 54px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 100px 24px 60px;
  }

  .page-title {
    font-size: clamp(40px, 12vw, 80px);
  }

  .browser-tabs {
    margin-bottom: 60px;
  }

  .browser-catalogue {
    padding: 52px 24px 64px;
  }

  .browser-tab {
    padding: 16px 20px;
    font-size: 13px;
  }

  .catalogue-item-content {
    padding: 20px;
  }

  .catalogue-item-title {
    font-size: 22px;
  }

  .capability-grid {
    padding: 60px 24px;
  }

  .office-section {
    padding: 60px 24px;
  }

  .footer-revealed {
    padding: 58px 24px 24px;
  }

  .footer-kicker {
    margin-top: 28px;
  }

  .footer-nav,
  .footer-contact {
    gap: 11px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .about-statement,
  .about-page .capability-grid,
  .about-page .office-section {
    padding: 52px 24px;
  }

  .statement-media {
    gap: 12px;
  }

  .dub-viewer {
    padding: 14px;
  }

  .dub-viewer-panel {
    width: 100%;
    max-height: 80vh;
  }

  .dub-viewer video {
    max-height: calc(80vh - 78px);
  }
}

@media (max-width: 1080px) {
  #nav {
    padding: 24px 32px;
  }

  #nav.pinned {
    padding: 16px 32px;
  }

  .nav-links {
    gap: 22px;
  }

  .hero-body,
  #about,
  .catalogue-header,
  #services,
  #pathways,
  #stories,
  #cta,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-grid,
  .services-head,
  .pathways-grid {
    grid-template-columns: 1fr;
  }

  .services-head {
    gap: 28px;
    margin-bottom: 54px;
  }

  .services-intro {
    justify-self: start;
    max-width: 620px;
    padding-top: 0;
  }

  .slate-stats {
    grid-template-columns: 1fr;
  }

  .slate-stat,
  .slate-stat:last-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .slate-stat {
    min-height: 230px;
  }

  .service-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px 24px;
    align-items: start;
  }

  .service-desc,
  .service-tags {
    grid-column: 2;
  }

  .service-tags {
    align-items: flex-start;
    justify-content: flex-start;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: left;
  }

  .footer-right {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    font-size: 15px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  #nav {
    padding: 18px 20px;
  }

  #nav.pinned {
    padding: 14px 20px;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-logo {
    position: relative;
    z-index: 2;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 112px 28px 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background:
      linear-gradient(rgba(7, 7, 8, 0.94), rgba(7, 7, 8, 0.98)),
      radial-gradient(
        circle at 50% 20%,
        rgba(58, 111, 168, 0.2),
        transparent 36%
      );
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.32s var(--ease-out-expo),
      transform 0.32s var(--ease-out-expo),
      visibility 0.32s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: min(100%, 320px);
    justify-content: center;
  }

  .nav-links a {
    width: 100%;
    padding: 6px 0;
    text-align: center;
    font-size: clamp(24px, 11vw, 48px);
    line-height: 0.95;
    font-family: var(--ff-display);
    font-weight: 300;
    letter-spacing: 0;
  }

  .nav-contact {
    min-height: 52px;
    margin-top: 8px;
    padding: 0 24px;
    font-family: var(--ff-ui) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    border-radius: 999px;
  }

  #hero {
    min-height: 660px;
  }

  .hero-body,
  #about,
  .catalogue-header,
  #services,
  #pathways,
  #stories,
  #cta,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-tagline-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-divider {
    width: 72px;
    height: 1px;
  }

  .hero-strip {
    height: 150px;
  }

  .strip-card {
    width: 98px;
    height: 142px;
  }

  #about,
  #services,
  #pathways,
  #stories {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-stat-row {
    flex-wrap: wrap;
    gap: 26px;
  }

  .catalogue-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .catalogue-track {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cat-card {
    width: 190px;
  }

  .cat-card-img {
    height: 280px;
  }

  .horizontal-scrub {
    height: auto !important;
    min-height: auto;
  }

  .horizontal-scrub-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
  }

  .horizontal-scrub .work-grid {
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .service-desc,
  .service-tags {
    grid-column: auto;
  }

  .pathway-card {
    padding: 38px 28px;
  }

  .pathway-arrow {
    bottom: 28px;
    right: 28px;
  }

  .slate-stat {
    min-height: 210px;
    padding: 32px 24px 28px;
  }

  .slate-stat-action {
    position: static;
    margin-top: 24px;
    opacity: 1;
    transform: none;
  }

  #cta {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .cta-btn {
    max-width: 100%;
    padding: 16px 22px;
  }

  .cta-btn span {
    overflow-wrap: anywhere;
  }

  .footer-right,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 460px) {
  .hero-title {
    font-size: clamp(52px, 22vw, 88px);
  }

  .hero-title .word-2 {
    margin-left: 28px;
  }

  .hero-pre {
    letter-spacing: 0.24em;
  }

  .display-heading,
  .about-heading,
  .catalogue-heading,
  .services-heading,
  .pathways-heading,
  .stories-heading {
    line-height: 1;
  }

  .about-poster-label {
    left: 0;
    width: min(220px, 86%);
  }

  .page-kicker {
    letter-spacing: 0.24em;
  }

  .browser-tab {
    padding: 14px 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .panel-heading h2 {
    font-size: clamp(34px, 13vw, 56px);
  }

  .office-image-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 16px;
  }
}

@media (max-width: 1080px) {
  #hero.showreel-hero {
    padding: 112px 32px 56px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .hero-revolver-panel {
    justify-self: stretch;
    width: min(100%, 760px);
  }

  .revolver-shell {
    height: 520px;
  }
}

@media (max-width: 760px) {
  #hero.showreel-hero {
    padding: 96px 20px 42px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-now-playing {
    margin-top: 28px;
  }

  .revolver-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .revolver-shell {
    height: 410px;
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%
    );
  }

  .revolver-card {
    width: 235px;
    height: 316px;
  }

  .back-content {
    gap: 10px;
    padding: 14px;
  }

  .back-content h3 {
    font-size: 22px;
  }

  .back-content p {
    font-size: 11px;
  }

  .revolver-controls {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .nav-links {
    gap: 22px;
  }

  .hero-title .word-2 {
    margin-left: 18px;
  }

  .revolver-shell {
    height: 380px;
  }

  .revolver-card {
    width: min(68vw, 220px);
    height: min(92vw, 296px);
  }
}

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