/* AFTER5 Studios — Premium Cinematic Theme */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #C1121F;
  --red-dark: #9a0e18;
  --grey-dark: #0a0a0a;
  --grey-mid: #111111;
  --grey-light: #1a1a1a;
  --chrome: linear-gradient(135deg, #ffffff 0%, #aaaaaa 40%, #ffffff 60%, #888888 100%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; outline: none; -webkit-tap-highlight-color: transparent; }
a:focus { outline: none; }
a:focus-visible { outline: 2px solid #C1121F; outline-offset: 3px; }
a:link, a:visited { color: inherit; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black) !important;
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

body.has-custom-cursor { cursor: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: normal;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.hovering {
  width: 60px; height: 60px;
  border-color: rgba(204,0,0,0.8);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-custom-cursor { cursor: auto; }
  .cursor, .cursor-follower { display: none !important; }
}

/* ── NAV ── */
.after5-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-color 0.6s ease;
}

.after5-nav.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(204,0,0,0.3);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1;
}

.nav-logo span {
  display: block;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 5px;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -2px;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 11px 24px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover { background: #aa0000 !important; transform: scale(1.03) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span { display: block; width: 24px; height: 1px; background: #fff; transition: all 0.3s; }

/* ── INTRO SPLASH ── */
#intro {
  position: fixed; inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: visible;
  perspective: 1200px;
}

#intro.hidden { opacity: 0; visibility: hidden; }

.intro-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(80px, 14vw, 160px);
  background: linear-gradient(135deg, #fff 0%, #aaa 35%, #fff 55%, #777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  padding: 0 20px;
  animation: introIn 1.2s var(--ease-out) forwards;
}

@keyframes introIn {
  0%   { opacity: 0; transform: scale(0.82) translateY(24px); }
  65%  { opacity: 1; transform: scale(1.04) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.intro-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-top: 12px;
  animation: fadeUp 0.8s 1s ease forwards;
  opacity: 0;
}


.intro-load {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  animation: fadeUp 0.8s 1.15s ease forwards;
  opacity: 0;
}

.intro-bar-wrap {
  margin-top: 60px;
  width: 160px;
  height: 1px;
  background: #111;
  overflow: hidden;
  animation: fadeUp 0.5s 0.8s ease forwards;
  opacity: 0;
}

.intro-bar {
  height: 100%;
  background: var(--red);
  width: 0;
  animation: loadBar 1.8s 0.8s ease forwards;
}



@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loadBar { to { width: 100%; } }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-cinematic), transform 1.1s var(--ease-cinematic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ── HERO — CINEMATIC ── */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.hero-bg {
  position: absolute; inset: -8%;
  width: 116%; height: 116%;
  background-image: url('https://after5.studio/wp-content/uploads/2026/06/hero-front-finished.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  will-change: transform;
  animation: heroZoom 28s ease-in-out infinite alternate;
  transition: transform 0.1s linear;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

.hero-light-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.03) 48%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 52%,
    transparent 65%,
    transparent 100%
  );
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightSweep {
  0%   { opacity: 0; transform: translateX(-100%); }
  10%  { opacity: 1; }
  40%  { opacity: 1; transform: translateX(0%); }
  60%  { opacity: 0; transform: translateX(60%); }
  100% { opacity: 0; transform: translateX(60%); }
}

.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1100px;
  will-change: transform;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: block;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.6s ease both;
}

.hero-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
  color: transparent;
}

.hero-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.8s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1.0s ease both;
}

.hero-btn,
.hero-btn:link,
.hero-btn:visited,
.hero-btn:active {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}

.hero-btn:hover::before { left: 140%; }

.hero-btn:hover { background: #aa0000; transform: scale(1.03); color: #fff; }

.hero-btn-outline {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none !important;
  transition: border-color 0.4s var(--ease-cinematic), background 0.4s var(--ease-cinematic);
}

.hero-btn-outline:link,
.hero-btn-outline:visited,
.hero-btn-outline:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
}

.hero-btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}

.hero-btn-outline:hover::before { left: 140%; }
.hero-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: #1a1a1a;
  color: #fff;
}

/* ── TICKER ── */
.ticker-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(204,0,0,0.2);
  overflow: hidden;
  padding: 16px 0;
  animation: fadeUp 0.6s 3.6s ease both;
}

.ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  padding: 0 48px;
  white-space: nowrap;
}

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

/* ── SECTIONS ── */
.after5-section { padding: 120px 48px; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 72px;
}

/* ── CLIENTS ── */
.clients-section {
  padding: 80px 48px;
  border-top: 1px solid #0f0f0f;
  border-bottom: 1px solid #0f0f0f;
  text-align: center;
  background: #050505;
}

.clients-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  display: block;
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.client-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  transition: color 0.4s ease;
  cursor: default;
}

.client-logo:hover { color: rgba(255,255,255,0.6); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #0a0a0a;
}

.service-card {
  background: #000;
  padding: 56px 44px;
  border-left: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(193,18,31,0.04);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { border-left-color: var(--red); background: #050505; }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: var(--red); }

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #fff;
  transition: color 0.3s;
}

.service-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; transition: color 0.3s; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.75); }

/* ── BEFORE IT'S BUILT ── */
.before-built {
  padding: 160px 48px;
  background: #050505;
  border-top: 1px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}

.before-built::before {
  content: 'VISION';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 300px;
  color: #060606;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.before-built-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.before-built-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(56px, 9vw, 120px);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0;
  margin-bottom: 32px;
}

.before-built-title .red { color: var(--red); }

.before-built-body {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 480px;
}

.before-built-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-built-item {
  padding: 20px 0;
  border-bottom: 1px solid #141414;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s var(--ease-cinematic), padding-left 0.3s var(--ease-cinematic);
  cursor: default;
}

.before-built-item:hover { color: rgba(255,255,255,0.85); padding-left: 8px; }

.before-built-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.before-built-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0a0a0a;
}

.before-built-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(20%);
  transition: transform 0.8s var(--ease-out), filter 0.6s ease;
}

.before-built-img:hover img { transform: scale(1.06); filter: brightness(0.65) grayscale(0%); }

.before-built-img-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── PROCESS ── */
.process-section {
  padding: 160px 48px;
  background: #000;
  border-top: 1px solid #0a0a0a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #0a0a0a;
  margin-top: 80px;
}

.process-step {
  background: #000;
  padding: 48px 32px;
  position: relative;
  transition: background 0.4s;
}

.process-step:hover { background: #050505; }

.process-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s var(--ease-cinematic);
}

.process-step:hover .process-step-num { color: var(--red); }

.process-step-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.process-step-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; transition: color 0.4s; }
.process-step:hover .process-step-desc { color: rgba(255,255,255,0.75); }

.process-connector {
  position: absolute;
  top: 48px; right: -1px;
  width: 1px; height: 24px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}

.process-step:hover .process-connector { opacity: 1; }

/* ── COLLECTIVE ── */
.collective-section {
  background: #050505;
  border-top: 1px solid #0a0a0a;
  padding: 120px 48px;
}

.collective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: #0a0a0a;
}

.member-card {
  background: #000;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.member-card:hover { background: #030303; }

.member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out);
  transform-origin: left;
}

.member-card:hover::before { transform: scaleX(1); }

.member-role {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.member-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 80px;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.member-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 380px; }

.member-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

.member-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid #222;
  padding: 7px 16px;
  transition: all 0.35s var(--ease-cinematic);
}

.member-tag:hover { border-color: var(--red); color: var(--red); }

/* ── STATS ── */
.stats-section {
  padding: 120px 48px;
  background: #000;
  border-top: 1px solid #0a0a0a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #0a0a0a;
}

.stat-card {
  background: #000;
  padding: 56px 40px;
  text-align: center;
  transition: background 0.4s;
}

.stat-card:hover { background: #050505; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 180px 48px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.cta-section::before {
  content: 'A5';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 500px;
  color: #050505;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0;
}

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

.cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(52px, 9vw, 110px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 56px;
}

.cta-headline .red { color: var(--red); }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 64px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}

.cta-btn:hover::before { left: 140%; }

.cta-btn:hover { background: #aa0000; color: #fff; transform: scale(1.02); }

.cta-btn-outline {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 64px;
  text-decoration: none;
  transition: border-color 0.4s var(--ease-cinematic), background 0.4s var(--ease-cinematic);
}

.cta-btn-outline:hover { border-color: rgba(255,255,255,0.5); background: #1a1a1a; color: #fff; }

/* ── FOOTER ── */
.after5-footer {
  background: #000;
  border-top: 1px solid #0a0a0a;
  padding: 100px 48px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 64px;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 0;
}

.footer-logo-sub {
  display: block;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-top: 6px;
}

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 20px; line-height: 1.7; }

.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.35s var(--ease-cinematic), padding-left 0.35s var(--ease-cinematic);
}

.footer-links a:hover { color: #fff; padding-left: 6px; }

.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 14px; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.35s; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
  border-top: 1px solid #0a0a0a;
}

.footer-copy { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 2px; }

.footer-socials { display: flex; gap: 28px; align-items: center; }

.footer-socials a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.footer-socials a:hover,
.footer-socials a:focus { color: #C1121F; outline: none !important; }
.footer-socials a:visited { color: rgba(255,255,255,0.45); }
.footer-socials a:focus-visible { outline: none !important; box-shadow: none; }

/* ── WORK PAGE ── */
.page-hero {
  padding: 180px 48px 100px;
  border-bottom: 1px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(72px, 12vw, 140px);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.page-title .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.6); color: transparent; }
.page-sub { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 2px; max-width: 500px; line-height: 1.9; }

.story-title { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 40px; }
.story-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 20px; }
.stat-label { font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.mission-attr { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.2); }

.atl-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.9; }

.info-block-value { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.info-block-value a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.35s; }
.info-block-value a:hover { color: #fff; }

.form-label { font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 14px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-note { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 16px; text-align: center; letter-spacing: 2px; }
.form-optional { color: rgba(255,255,255,0.3); letter-spacing: 2px; }
.form-status { min-height: 20px; margin: 14px 0 0; font-size: 12px; line-height: 1.5; text-align: center; }
.form-status.error { color: #ff7b84; }
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid { border-color: #C1121F !important; }
.submit-btn:disabled { cursor: wait; opacity: 0.65; transform: none; }
.a5-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.retainer-billing { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 1px; margin-bottom: 40px; line-height: 1.5; }
.retainer-features li { font-size: 13px; color: rgba(255,255,255,0.55); padding: 12px 0; border-bottom: 1px solid #0d0d0d; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.retainer-features li.no { color: rgba(255,255,255,0.15); }
.retainer-features li.no::before { content: '—'; color: rgba(255,255,255,0.2); }
.retainer-btn.outline { border: 1px solid #222; color: rgba(255,255,255,0.4); }
.retainer-btn.outline:hover { border-color: var(--red); color: var(--red); }

.work-filters {
  padding: 0 48px;
  border-bottom: 1px solid #0a0a0a;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  background: #000;
  position: sticky;
  top: 72px;
  z-index: 50;
}

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

.filter-btn {
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 24px 28px;
  cursor: pointer;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.filter-btn:hover { color: #888; }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); }

.featured-wrap { padding: 60px 48px 0; }

.featured-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px; display: block;
}

.featured-card {
  position: relative; width: 100%; height: 600px;
  overflow: hidden; cursor: pointer; background: #050505;
}

.featured-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
  transition: transform 1.2s var(--ease-out), filter 0.8s ease;
}

.featured-card:hover img { transform: scale(1.04); filter: brightness(0.65); }

.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 56px;
}

.featured-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px;
  margin-bottom: 20px; align-self: flex-start;
}

.featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase; letter-spacing: 0;
  line-height: 1; margin-bottom: 14px;
}

.featured-meta { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }
.featured-meta span { color: var(--red); }

.work-grid {
  padding: 2px 48px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.work-card {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; cursor: pointer; background: #050505;
}

.work-card.wide { grid-column: span 2; aspect-ratio: 16/9; }

.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
  transition: transform 0.9s var(--ease-cinematic), filter 0.7s ease;
}

.work-card:hover img { transform: scale(1.06); filter: brightness(0.65); }

.work-card video {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6);
}

.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  opacity: 0; transition: opacity 0.6s var(--ease-cinematic);
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}

.work-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 1px;
  line-height: 1.1; margin-bottom: 6px;
}

.work-card-credit { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }

.work-card-label {
  position: absolute; top: 20px; left: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  transition: color 0.4s var(--ease-cinematic);
}

.work-card:hover .work-card-label { color: rgba(255,255,255,0.7); }

/* ── SERVICES PAGE ── */
.toggle-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px 0; position: relative; z-index: 10;
}

.toggle-container {
  display: flex; border: 1px solid #111; position: relative; overflow: hidden;
}

.toggle-btn {
  padding: 22px 60px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 2;
  transition: color 0.4s ease; color: rgba(255,255,255,0.3); white-space: nowrap;
}

.toggle-btn.active { color: #fff; }

.toggle-slider {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  background: var(--red);
  transition: transform 0.5s var(--ease-out);
  z-index: 1;
}

.toggle-slider.right { transform: translateX(100%); }

.section-tagline {
  text-align: center; padding: 56px 48px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  color: rgba(255,255,255,0.2); transition: opacity 0.4s ease;
}

.service-panel { display: none; }
.service-panel.active { display: block; }

.services-list { padding: 0 48px 120px; }

.service-row {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 60px; align-items: start;
  padding: 72px 0; border-bottom: 1px solid #080808;
  transition: background 0.4s; cursor: default;
  opacity: 0; transform: translateY(20px);
  animation: rowIn 0.6s forwards;
}

.service-row:first-of-type { border-top: 1px solid #080808; }
.service-row:hover { background: #030303; }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }

.service-row-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 56px;
  color: rgba(255,255,255,0.15); line-height: 1; transition: color 0.4s;
}

.service-row:hover .service-row-num { color: var(--red); }

.service-row-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(30px, 3.5vw, 52px);
  text-transform: uppercase; letter-spacing: 0;
  line-height: 1; margin-bottom: 14px;
}

.service-row-tag {
  display: inline-block; font-size: 9px;
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  border: 1px solid #111; padding: 5px 12px; margin-bottom: 18px;
}

.service-row-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.9; max-width: 420px; }

.service-includes-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 20px;
}

.service-includes { list-style: none; }

.service-includes li {
  font-size: 13px; color: rgba(255,255,255,0.65);
  padding: 10px 0; border-bottom: 1px solid #080808;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.3s, padding-left 0.3s;
}

.service-includes li:hover { color: rgba(255,255,255,0.5); padding-left: 4px; }
.service-includes li::before { content: ''; width: 6px; height: 1px; background: var(--red); flex-shrink: 0; }

.service-cta {
  display: inline-block; margin-top: 28px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); text-decoration: none;
  transition: letter-spacing 0.3s;
}

.service-cta:hover { letter-spacing: 5px; }
.service-cta::after { content: ' →'; }

.retainer-section { padding: 120px 48px; background: #030303; border-top: 1px solid #0a0a0a; }
.retainer-panel { display: none; }
.retainer-panel.active { display: block; }

.retainers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #0a0a0a; }

.retainer-card { background: #000; padding: 56px 40px; position: relative; transition: background 0.4s; }
.retainer-card:hover { background: #050505; }
.retainer-card.featured { background: #050505; padding-top: 72px; }

.retainer-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--red); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-align: center; padding: 9px;
  text-transform: uppercase;
}

.retainer-tier { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.retainer-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px; text-transform: uppercase; letter-spacing: 0; margin-bottom: 8px; }
.retainer-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 52px; line-height: 1; margin-bottom: 4px; }
.retainer-price span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.65); }
.retainer-billing { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; margin-bottom: 40px; line-height: 1.5; }

.retainer-features { list-style: none; margin-bottom: 40px; }
.retainer-features li { font-size: 13px; color: rgba(255,255,255,0.65); padding: 12px 0; border-bottom: 1px solid #080808; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.retainer-features li::before { content: '✓'; color: var(--red); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.retainer-features li.no { color: #111; }
.retainer-features li.no::before { content: '—'; color: #0f0f0f; }

.retainer-btn { display: block; text-align: center; padding: 16px; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.retainer-btn.outline { border: 1px solid #111; color: rgba(255,255,255,0.3); }
.retainer-btn.outline:hover { border-color: var(--red); color: var(--red); }
.retainer-btn.solid { background: var(--red); color: #fff; }
.retainer-btn.solid:hover { background: #aa0000; }

/* ── ABOUT PAGE ── */
.story-section { padding: 140px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; border-bottom: 1px solid #0a0a0a; }
.story-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(30%) brightness(0.6); }
.story-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic; font-size: clamp(64px, 9vw, 108px); background: var(--chrome); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; letter-spacing: 0; margin-bottom: 10px; }
.story-title { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.story-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 20px; }
.story-divider { width: 60px; height: 1px; background: var(--red); margin: 48px 0; }
.story-stats { display: flex; gap: 56px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.mission-section { padding: 140px 48px; text-align: center; background: #030303; border-bottom: 1px solid #0a0a0a; }
.mission-quote { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic; font-size: clamp(36px, 6vw, 72px); line-height: 1.05; color: #fff; margin-bottom: 36px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.mission-quote .red { color: var(--red); }
.mission-attr { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.2); }

.atl-section { padding: 140px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; border-bottom: 1px solid #0a0a0a; }
.atl-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(120px, 22vw, 280px); color: rgba(255,255,255,0.15); line-height: 1; letter-spacing: 0; }
.atl-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(40px, 5vw, 64px); text-transform: uppercase; line-height: 1; margin-bottom: 28px; letter-spacing: 0; }
.atl-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.9; }

/* ── CONTACT PAGE ── */
.contact-main { padding: 120px 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 100px; border-bottom: 1px solid #0a0a0a; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 32px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 56px; }
.form-title span { color: var(--red); }
.form-group { margin-bottom: 36px; }
.form-label { font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.65); display: block; margin-bottom: 14px; }
.form-input, .form-select, .form-textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid #111; padding: 14px 0; color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--red); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-select { color: rgba(255,255,255,0.2); cursor: pointer; }
.form-select option { background: #111; color: #fff; }
.form-textarea { resize: none; height: 120px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.submit-btn { width: 100%; background: var(--red); color: #fff; border: none; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; padding: 22px; cursor: pointer; transition: background 0.3s, transform 0.3s; margin-top: 16px; }
.submit-btn:hover { background: #aa0000; transform: scale(1.01); }
.form-note { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 16px; text-align: center; letter-spacing: 2px; }

.info-block { padding: 36px 0; border-bottom: 1px solid #080808; }
.info-block:first-of-type { border-top: 1px solid #080808; }
.info-block-label { font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.info-block-value { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.info-block-value a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.3s; }
.info-block-value a:hover { color: #fff; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .after5-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #000; padding: 40px 24px; gap: 24px; border-bottom: 1px solid #111; z-index: 999; }

  /* ── HERO MOBILE ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 24px; }
  .hero-headline { font-size: clamp(44px, 13vw, 72px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btn, .hero-btn-outline { padding: 16px 40px; width: 100%; text-align: center; }

  /* ── INLINE SECTION PADDING ── */
  section[style*="padding:160px 48px"],
  section[style*="padding:140px 48px"],
  section[style*="padding:180px 48px"] {
    padding: 80px 24px !important;
  }
  section[style*="padding:160px 48px;background:#030303"],
  section[style*="padding:160px 48px;background:#000"],
  section[style*="padding:160px 48px;background:#050505"] {
    padding: 80px 24px !important;
  }

  /* ── INLINE GRIDS → SINGLE COLUMN ── */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(6,1fr)"],
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }

  /* Apartment section image grid — keep 2 columns */
  div[style*="grid-template-columns:1fr 1fr;gap:2px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
  }

  /* Who we serve 4-col card grid → 2 col */
  div[style*="grid-template-columns:repeat(4,1fr);gap:1px"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
  }

  /* Stats grid → 2 col */
  div[style*="grid-template-columns:repeat(4,1fr);gap:1px;background:#0a0a0a"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Fix large gaps on inline two-col layouts */
  div[style*="gap:100px"],
  div[style*="gap:80px"] {
    gap: 40px !important;
  }

  /* Featured work 2-col grid → 1 col */
  div[style*="grid-template-columns:repeat(2,1fr);gap:2px;background:#0a0a0a"] {
    grid-template-columns: 1fr !important;
  }

  /* Collective / brands 2-col → 1 col */
  div[style*="grid-template-columns:1fr 1fr;gap:2px;background:#0a0a0a"] {
    grid-template-columns: 1fr !important;
  }

  /* Process 6-col → 2 col */
  div[style*="grid-template-columns:repeat(6,1fr);gap:1px;background:#0a0a0a"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Fix aspect ratio on cards on mobile */
  div[style*="aspect-ratio:4/3"] { aspect-ratio: 4/3 !important; }
  div[style*="aspect-ratio:3/4"] { aspect-ratio: 4/3 !important; }

  /* ── SECTION HEADINGS ── */
  h2[style*="font-size:clamp(44px"] { font-size: clamp(36px, 10vw, 52px) !important; }
  h2[style*="font-size:clamp(56px"] { font-size: clamp(40px, 12vw, 60px) !important; }

  /* ── WHO WE SERVE CARDS ── */
  div[style*="padding:56px 36px 56px"] { padding: 32px 24px !important; }

  /* ── RETAINER CARD ── */
  div[style*="margin-top:2px;background:#080808"] { margin-top: 2px; }

  /* ── SCROLL STORY ── */
  .after5-section { padding: 80px 24px; }
  .clients-section { padding: 60px 24px; }
  .clients-grid { gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .collective-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .before-built-inner { grid-template-columns: 1fr; gap: 60px; }
  .before-built-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
  .work-grid { grid-template-columns: 1fr; padding: 2px 24px 80px; }
  .work-card.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .story-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .atl-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .contact-main { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-row { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .retainers-grid { grid-template-columns: 1fr; }
  .toggle-btn { padding: 16px 20px; font-size: 9px; letter-spacing: 1px; flex: 1; text-align: center; }
  .toggle-container { width: 100%; }
  .page-hero { padding: 140px 24px 80px; }
  .services-list { padding: 0 24px 80px; }
  .retainer-section { padding: 80px 24px; }
  .featured-card { height: 320px; }
  .featured-wrap { padding: 48px 24px 0; }
  .work-filters { padding: 0 24px; top: 72px; }
  .cta-section { padding: 120px 24px; }
  .before-built { padding: 100px 24px; }
  .process-section { padding: 100px 24px; }
  .member-card { padding: 48px 28px; }
  .cta-section::before { font-size: 200px; }

  /* ── CTA BUTTONS MOBILE ── */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn, .cta-btn-outline { padding: 18px 40px; width: 100%; text-align: center; }
}

/* ── SCROLL STORY: FROM CONCEPT TO COMPLETION ── */
.scroll-story-stage {
  position: relative;
}

.scroll-story-sticky {
  background: #000;
}

.scroll-story-frame {
  will-change: opacity;
}

.scroll-story-frame.active {
  opacity: 1 !important;
}

.scroll-story-img {
  transform: scale(1.08);
  transition: transform 10s var(--ease-cinematic);
  will-change: transform;
}

.scroll-story-frame.active .scroll-story-img {
  transform: scale(1.0);
}

.scroll-story-dot-fill {
  will-change: transform;
}

@media (max-width: 768px) {
  .scroll-story-stage {
    height: auto !important;
  }
  .scroll-story-sticky {
    position: relative !important;
    height: auto !important;
  }
  .scroll-story-frame {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    height: 80vh;
    margin-bottom: 2px;
  }
  .scroll-story-frame .scroll-story-img {
    transform: scale(1) !important;
    transition: none !important;
  }
  .scroll-story-progress {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story-img {
    transition: none !important;
    transform: scale(1) !important;
  }
  .scroll-story-frame {
    transition: opacity 0.3s ease !important;
  }
}

/* ─────────────────────────────────────────────
   AFTER5 FINAL POLISH PASS — readability + CTA consistency
   ───────────────────────────────────────────── */

/* Kill any accidental default/blue button styling and keep CTAs on-brand */
a.button,
button,
input[type="submit"],
.wp-block-button__link,
.nav-cta,
.hero-btn,
.cta-btn,
.submit-btn,
.retainer-btn.solid {
  background-color: var(--red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 rgba(193,18,31,0) !important;
}

a.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.nav-cta:hover,
.hero-btn:hover,
.cta-btn:hover,
.submit-btn:hover,
.retainer-btn.solid:hover {
  background-color: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  box-shadow: 0 0 28px rgba(193,18,31,0.22) !important;
}

.hero-btn-outline,
.cta-btn-outline,
.retainer-btn.outline {
  background: #0d0d0d !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: rgba(255,255,255,0.22) !important;
}

.hero-btn-outline:hover,
.cta-btn-outline:hover,
.retainer-btn.outline:hover {
  background: #151515 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 24px rgba(193,18,31,0.18) !important;
}

/* Improve low-contrast labels, numbers, and process cards */
div[style*="color:#252525"],
div[style*="color: #252525"],
div[style*="color:#222"],
div[style*="color: rgba(255,255,255,0.3)"],
div[style*="color:#1a1a1a"],
div[style*="color: rgba(255,255,255,0.2)"] {
  color: rgba(255,255,255,0.36) !important;
}

div[style*="color:#2a2a2a"],
div[style*="color: rgba(255,255,255,0.65)"],
div[style*="color:#333"],
div[style*="color: rgba(255,255,255,0.65)"] {
  color: rgba(255,255,255,0.54) !important;
}

/* Make process steps readable without changing layout */
section[style*="background:#050505"] div[style*="grid-template-columns:repeat(6,1fr)"] > div {
  background: linear-gradient(180deg, #050505 0%, #000 100%) !important;
}

section[style*="background:#050505"] div[style*="grid-template-columns:repeat(6,1fr)"] > div > div:first-child {
  color: rgba(255,255,255,0.28) !important;
  text-shadow: 0 0 18px rgba(193,18,31,0.15);
}

section[style*="background:#050505"] div[style*="grid-template-columns:repeat(6,1fr)"] > div > div:nth-child(2) {
  color: #fff !important;
}

section[style*="background:#050505"] div[style*="grid-template-columns:repeat(6,1fr)"] > div > div:nth-child(3) {
  color: rgba(255,255,255,0.78) !important;
}

/* Readability over images */
img[style*="filter:brightness(0.5)"] {
  filter: brightness(0.62) contrast(1.05) !important;
}

div[style*="position:absolute;bottom"] {
  text-shadow: 0 2px 16px rgba(0,0,0,0.9) !important;
}

/* Form and placeholder readability */
.form-label,
.story-title,
.stat-label,
.mission-attr,
.info-block-value,
.info-block-value a,
.form-note,
.form-select,
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.55) !important;
}

.form-input,
.form-select,
.form-textarea {
  border-bottom-color: rgba(255,255,255,0.18) !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--red) !important;
}

/* Accessibility: keep normal cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto !important; }
  .cursor, .cursor-follower { display: none !important; }
}

/* Mobile polish */
@media (max-width: 768px) {
  .nav-cta { width: 100%; text-align: center; }
  .hero-sub { color: rgba(255,255,255,0.78) !important; letter-spacing: 2px; }
  section[style*="background:#050505"] div[style*="grid-template-columns:repeat(6,1fr)"] > div > div:first-child {
    color: rgba(255,255,255,0.36) !important;
  }
}


/* ─────────────────────────────────────────────
   AFTER5 FINAL READY PASS — user-reported fixes
   ───────────────────────────────────────────── */

/* Services page: make all copy readable, not ghosted out */
.service-row,
.service-row * {
  -webkit-font-smoothing: antialiased;
}
.service-row-num {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 0 22px rgba(193,18,31,0.22) !important;
  opacity: 1 !important;
}
.service-row:hover .service-row-num {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
}
.service-row-name,
.service-includes-title,
.service-includes li,
.service-row-desc,
.service-cta,
.section-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}
.service-row-desc,
.service-includes li {
  color: rgba(255,255,255,0.82) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.82) !important;
}
.service-includes-title {
  color: rgba(255,255,255,0.58) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.58) !important;
}
.service-row-tag {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  border-color: rgba(193,18,31,0.38) !important;
  background: rgba(193,18,31,0.05) !important;
}
.service-includes li {
  border-bottom-color: rgba(255,255,255,0.075) !important;
}
.service-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Work page: keep text white and easy to read over imagery */
.work-card::after,
.featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.46) 34%, rgba(0,0,0,0.08) 70%),
    linear-gradient(to right, rgba(0,0,0,0.30), transparent 44%);
  z-index: 1;
}
.work-card img,
.work-card video,
.featured-card img {
  filter: brightness(0.74) contrast(1.08) saturate(0.95) !important;
}
.work-card:hover img,
.work-card:hover video,
.featured-card:hover img {
  filter: brightness(0.82) contrast(1.08) saturate(1) !important;
}
.work-card-label,
.work-card-overlay,
.featured-overlay {
  z-index: 2 !important;
}
.work-card-overlay {
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.34) 42%, transparent 76%) !important;
}
.work-card-label,
.work-card-title,
.work-card-credit,
.featured-title,
.featured-meta {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.95) !important;
  opacity: 1 !important;
}
.work-card-tag,
.featured-tag {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.95) !important;
}
.featured-tag {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Close blank gaps in portfolio masonry after mixed wide/portrait cards */
.work-grid {
  grid-auto-flow: dense !important;
  align-items: stretch !important;
}
.work-card {
  min-height: 260px;
}
.work-card.portrait {
  aspect-ratio: 2 / 3 !important;
}
.work-card.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 768px) {
  .service-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 48px 0 !important;
  }
  .service-row-num {
    font-size: 42px !important;
  }
  .work-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 2px 20px 80px !important;
  }
  .work-card,
  .work-card.wide,
  .work-card.portrait {
    grid-column: span 1 !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 340px !important;
  }
}

/* AFTER5 v1.2.3 — Clean portfolio category bar + mobile polish */
.work-filters {
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.055) !important;
  border-bottom: 1px solid rgba(255,255,255,0.075) !important;
  min-height: 66px !important;
  padding: 0 48px !important;
  gap: 34px !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  box-shadow: none !important;
}
.work-filters::-webkit-scrollbar { display: none !important; }
.filter-btn {
  background: transparent !important;
  color: rgba(255,255,255,0.38) !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  outline: none !important;
  min-width: auto !important;
  padding: 22px 0 20px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  transition: color .25s ease, border-color .25s ease, opacity .25s ease !important;
}
.filter-btn:hover {
  background: transparent !important;
  color: rgba(255,255,255,0.74) !important;
}
.filter-btn.active,
.filter-btn:active {
  background: transparent !important;
  color: #fff !important;
  border-bottom-color: var(--red) !important;
}
.filter-btn:focus,
.filter-btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Keep the portfolio controls clean on tablets and phones */
@media (max-width: 1024px) {
  .work-filters {
    min-height: 60px !important;
    padding: 0 28px !important;
    gap: 28px !important;
    top: 68px !important;
  }
  .filter-btn {
    font-size: 9px !important;
    letter-spacing: 3.2px !important;
    padding: 20px 0 18px !important;
  }
}

@media (max-width: 768px) {
  .work-filters {
    min-height: 54px !important;
    padding: 0 20px !important;
    gap: 24px !important;
    top: 64px !important;
  }
  .filter-btn {
    font-size: 8.5px !important;
    letter-spacing: 2.7px !important;
    padding: 18px 0 16px !important;
  }
  .page-hero-title {
    font-size: clamp(48px, 16vw, 96px) !important;
    line-height: .9 !important;
  }
  .page-hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 480px) {
  .work-filters {
    min-height: 50px !important;
    padding: 0 16px !important;
    gap: 22px !important;
  }
  .filter-btn {
    font-size: 8px !important;
    letter-spacing: 2.4px !important;
    padding: 16px 0 14px !important;
  }
  .work-grid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .work-card,
  .work-card.wide,
  .work-card.portrait {
    min-height: 300px !important;
  }
}

/* AFTER5 v2.0 — 10/10 premium agency polish */
:root{--a5-max:1480px;--a5-border:rgba(255,255,255,.085);--a5-muted:rgba(255,255,255,.58);--a5-soft:rgba(255,255,255,.09)}
body{background:#000;color:#fff;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;}
body::before{content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;background:#000;}
img,video{max-width:100%;height:auto}img{image-rendering:auto}.after5-nav{height:78px;padding:0 clamp(18px,4vw,56px);background:rgba(0,0,0,.35);backdrop-filter:blur(14px);}.after5-nav.scrolled{height:66px;background:rgba(0,0,0,.92);box-shadow:0 20px 60px rgba(0,0,0,.28)}.nav-links a{letter-spacing:3.4px}.nav-cta{border:1px solid rgba(255,255,255,.1);box-shadow:0 20px 70px rgba(193,18,31,.22)}.nav-cta:hover{box-shadow:0 25px 90px rgba(193,18,31,.35)}
/* Cleaner mobile menu */
@media(max-width:900px){body{cursor:auto}.cursor,.cursor-follower{display:none!important}.nav-toggle{display:flex!important}.after5-nav{height:68px;padding:0 18px}.nav-logo{font-size:27px}.nav-links{position:fixed;top:68px;left:0;right:0;background:rgba(0,0,0,.98);border-bottom:1px solid rgba(193,18,31,.25);display:grid!important;grid-template-columns:1fr;gap:0;padding:18px;transform:translateY(-120%);opacity:0;pointer-events:none;transition:.35s ease}.nav-links.open{transform:translateY(0);opacity:1;pointer-events:auto}.nav-links li{border-bottom:1px solid rgba(255,255,255,.06)}.nav-links a{display:block;padding:18px 4px;font-size:12px}.nav-cta{display:block;text-align:center;margin-top:12px;padding:18px!important}.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}.nav-toggle.open span:nth-child(2){opacity:0}.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}}
/* Luxury sections */
.after5-section,.a5-section{position:relative}.after5-section::before,.a5-section::before{content:"";position:absolute;left:0;right:0;top:0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent)}.section-eyebrow,.a5-kicker,.featured-label{color:var(--red)!important;letter-spacing:6px}.page-title,.section-title,.a5-title{letter-spacing: 0}.page-sub,.a5-text{color:rgba(255,255,255,.66)!important}.red{color:var(--red)!important}.outline{-webkit-text-stroke:1.5px rgba(255,255,255,.62)!important;color:transparent!important}
/* Homepage premium additions */
.a5-hero{min-height:100svh}.a5-hero::before{filter:brightness(.62) contrast(1.08);animation:a5HeroSlow 22s ease-in-out infinite alternate}.a5-hero h1{filter:drop-shadow(0 22px 60px rgba(0,0,0,.45))}.a5-hero-panel{box-shadow:0 30px 90px rgba(0,0,0,.45)}.a5-mini{transition:transform .35s ease,background .35s ease}.a5-mini:hover{transform:translateY(-3px);background:#0b0b0b}.a5-btn,.cta-btn,.submit-btn,.retainer-btn{position:relative;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease,background .3s ease!important}.a5-btn::before,.cta-btn::before,.submit-btn::before,.retainer-btn::before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,transparent,rgba(255,255,255,.16),transparent);transform:translateX(-120%);transition:transform .7s ease}.a5-btn:hover::before,.cta-btn:hover::before,.submit-btn:hover::before,.retainer-btn:hover::before{transform:translateX(120%)}.a5-btn:hover,.cta-btn:hover,.submit-btn:hover,.retainer-btn:hover{transform:translateY(-2px);box-shadow:0 18px 60px rgba(193,18,31,.25)}@keyframes a5HeroSlow{from{transform:scale(1.025)}to{transform:scale(1.075)}}
.a5-trust-strip{padding:36px 48px;border-top:1px solid var(--a5-border);border-bottom:1px solid var(--a5-border);background:#020202}.a5-trust-inner{max-width:var(--a5-max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}.a5-trust-label{font-size:10px;font-weight:800;letter-spacing:5px;color:rgba(255,255,255,.34);text-transform:uppercase}.a5-trust-logos{display:flex;gap:clamp(22px,5vw,70px);align-items:center;flex-wrap:wrap}.a5-trust-logos span{font-family:'Barlow Condensed',sans-serif;font-size:clamp(22px,3vw,42px);font-weight:900;text-transform:uppercase;color:rgba(255,255,255,.36);letter-spacing:1px}.a5-showreel{padding:120px 48px;background:#000;border-bottom:1px solid var(--a5-border)}.a5-showreel-card{max-width:var(--a5-max);margin:0 auto;min-height:420px;border:1px solid var(--a5-border);display:grid;grid-template-columns:1.1fr .9fr;overflow:hidden;background:#040404}.a5-showreel-visual{min-height:420px;background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.8)),url('https://after5.studio/wp-content/uploads/2026/06/hero-front-finished.png') center/cover;position:relative}.a5-showreel-visual::after{content:'VIEW WORK';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:112px;height:112px;border-radius:50%;border:1px solid rgba(255,255,255,.28);display:grid;place-items:center;font-size:10px;font-weight:800;letter-spacing:3px;background:rgba(0,0,0,.55)}.a5-showreel-copy{padding:clamp(36px,6vw,80px);display:flex;flex-direction:column;justify-content:center}.a5-showreel-copy h2{font-family:'Barlow Condensed',sans-serif;font-style:italic;font-size:clamp(46px,7vw,110px);line-height:.85;text-transform:uppercase;letter-spacing: 0}.a5-showreel-copy p{margin-top:24px;color:rgba(255,255,255,.62);line-height:1.85;font-size:15px}.a5-proof-row{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--a5-border);border-bottom:1px solid var(--a5-border);background:#020202}.a5-proof-item{padding:36px 28px;border-right:1px solid var(--a5-border)}.a5-proof-item:last-child{border-right:0}.a5-proof-item b{font-family:'Barlow Condensed',sans-serif;font-size:42px;font-weight:900;color:#fff}.a5-proof-item span{display:block;margin-top:6px;font-size:10px;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.42)}
/* Work page: clean premium filters + Netflix-style cards */
.work-filters{position:sticky!important;top:66px!important;z-index:50!important;background:rgba(0,0,0,.88)!important;backdrop-filter:blur(18px)!important;border-color:var(--a5-border)!important;box-shadow:0 20px 50px rgba(0,0,0,.35)!important}.filter-btn{font-size:10px!important;color:rgba(255,255,255,.42)!important}.filter-btn.active{color:#fff!important;border-bottom-color:var(--red)!important}.featured-card,.work-card{border:1px solid rgba(255,255,255,.055);background:#050505;box-shadow:0 25px 90px rgba(0,0,0,.25)}.featured-card img,.work-card img,.work-card video{transition:transform .75s ease,filter .75s ease}.featured-card:hover img,.work-card:hover img,.work-card:hover video{transform:scale(1.045);filter:brightness(.8) contrast(1.08)!important}.work-card-overlay{background:linear-gradient(to top,rgba(0,0,0,.96),rgba(0,0,0,.25),transparent)!important}.work-card::after,.featured-card::after{content:"";position:absolute;inset:0;border:1px solid transparent;transition:border-color .35s ease;pointer-events:none}.work-card:hover::after,.featured-card:hover::after{border-color:rgba(193,18,31,.42)}.work-card-label{background:rgba(0,0,0,.42)!important;backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.08)}.work-modal{position:fixed;inset:0;background:rgba(0,0,0,.9);z-index:9999;display:none;align-items:center;justify-content:center;padding:28px}.work-modal.open{display:flex}.work-modal-inner{width:min(1180px,96vw);max-height:90vh;background:#050505;border:1px solid rgba(255,255,255,.12);display:grid;grid-template-columns:1.2fr .8fr;overflow:hidden;box-shadow:0 40px 140px rgba(0,0,0,.7)}.work-modal-media{min-height:420px;background:#000}.work-modal-media img,.work-modal-media video{width:100%;height:100%;object-fit:cover;display:block}.work-modal-copy{padding:clamp(28px,5vw,64px);display:flex;flex-direction:column;justify-content:center}.work-modal-tag{font-size:10px;font-weight:800;letter-spacing:5px;color:var(--red);text-transform:uppercase;margin-bottom:18px}.work-modal-title{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-style:italic;font-size:clamp(42px,5vw,82px);line-height:.88;text-transform:uppercase}.work-modal-credit{margin-top:18px;color:rgba(255,255,255,.58);line-height:1.8}.work-modal-close{position:absolute;top:20px;right:20px;width:48px;height:48px;border:1px solid rgba(255,255,255,.14);background:#050505;color:#fff;font-size:24px;cursor:pointer}
/* Services: more premium rows */
.toggle-wrap{position:sticky;top:66px;z-index:40;background:rgba(0,0,0,.9);backdrop-filter:blur(16px);border-bottom:1px solid var(--a5-border)}.service-row{border-top:1px solid var(--a5-border);transition:background .35s ease,transform .35s ease}.service-row:hover{background:linear-gradient(90deg,rgba(193,18,31,.06),transparent 45%);transform:translateX(4px)}.service-row-name{letter-spacing: 0}.service-includes li{transition:color .25s ease}.service-row:hover .service-includes li{color:rgba(255,255,255,.72)}.retainer-card{box-shadow:0 24px 80px rgba(0,0,0,.25);transition:transform .35s ease,border-color .35s ease}.retainer-card:hover{transform:translateY(-8px);border-color:rgba(193,18,31,.42)}
/* About: founder portrait frame */
.story-section{align-items:center}.story-img{filter:contrast(1.08) brightness(.82);box-shadow:0 30px 110px rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.06)}.story-name{letter-spacing: 0}.member-card{transition:transform .35s ease,border-color .35s ease,background .35s ease}.member-card:hover{transform:translateY(-7px);border-color:rgba(193,18,31,.45);background:#070707}.client-logo{transition:color .3s ease,transform .3s ease}.client-logo:hover{color:#fff!important;transform:translateY(-3px)}
/* Contact: usable form */
.form-input,.form-select,.form-textarea{background:rgba(255,255,255,.02)!important;border:1px solid rgba(255,255,255,.08)!important;border-radius:0!important;padding:18px!important;color:#fff!important}.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:rgba(193,18,31,.55)!important;outline:0!important;box-shadow:0 0 0 3px rgba(193,18,31,.08)}.info-block{background:#030303;border:1px solid rgba(255,255,255,.07);padding:24px}.footer-logo{letter-spacing: 0}.after5-footer{background:#000}
/* Performance and accessibility */
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important}.a5-marquee div{animation:none!important}}
@media(max-width:1100px){.a5-showreel-card{grid-template-columns:1fr}.a5-proof-row{grid-template-columns:repeat(2,1fr)}.work-modal-inner{grid-template-columns:1fr}.work-modal-media{min-height:340px}.feature-grid{grid-template-columns:1fr!important}.work-card.big{grid-column:span 1!important}}
@media(max-width:768px){.page-hero{min-height:auto!important;padding-top:118px!important}.page-title{font-size:clamp(54px,17vw,92px)!important;line-height:.86!important}.a5-trust-strip,.a5-showreel{padding-left:22px;padding-right:22px}.a5-trust-inner{align-items:flex-start}.a5-trust-logos{gap:22px}.a5-trust-logos span{font-size:24px}.a5-showreel-card{min-height:0}.a5-showreel-visual{min-height:280px}.a5-showreel-copy{padding:30px}.a5-proof-row{grid-template-columns:1fr}.a5-proof-item{border-right:0;border-bottom:1px solid var(--a5-border)}.a5-hero p{font-size:14px}.a5-mini-grid{grid-template-columns:1fr}.division-card{min-height:260px}.work-modal{padding:14px}.work-modal-inner{max-height:86vh;overflow:auto}.work-modal-media{min-height:260px}.work-filters{top:68px!important}.service-row{transform:none!important}.contact-main{gap:40px!important}}
@media(max-width:480px){.after5-nav{padding:0 14px}.nav-logo{font-size:24px}.nav-logo span{font-size:8px;letter-spacing:4px}.a5-hero{padding-top:110px!important}.a5-hero h1{font-size:clamp(50px,17vw,70px)!important}.a5-title,.section-title{font-size:clamp(48px,16vw,72px)!important}.a5-btn,.cta-btn,.submit-btn{min-height:54px}.work-card,.work-card.wide,.work-card.portrait{min-height:330px!important}.filter-btn{letter-spacing:2.2px!important}.featured-wrap{padding-left:16px!important;padding-right:16px!important}.featured-card{min-height:360px!important}}


/* AFTER5 v4 — premium package system */
.a5-packages{padding:140px 40px;background:linear-gradient(180deg,#030303 0%,#000 100%);border-top:1px solid #111;border-bottom:1px solid #111}.a5-packages-inner{max-width:1440px;margin:0 auto}.a5-packages .section-title{max-width:1000px}.a5-packages-intro{font-size:15px;line-height:1.9;color:rgba(255,255,255,.65);max-width:760px;margin:24px 0 54px}.a5-package-tabs{display:inline-grid;grid-template-columns:1fr 1fr;border:1px solid #222;background:#050505;margin-bottom:38px}.a5-package-tab{border:0;background:transparent;color:rgba(255,255,255,.5);font:800 11px/1 Inter,sans-serif;letter-spacing:2px;text-transform:uppercase;padding:17px 25px;cursor:pointer;transition:.25s}.a5-package-tab.active{background:#c1121f;color:#fff}.a5-package-panel{display:none}.a5-package-panel.active{display:block}.a5-packages .retainers-grid{align-items:stretch}.a5-packages .retainer-card{position:relative;display:flex;flex-direction:column;min-height:100%;padding:40px 34px}.a5-packages .retainer-card.featured{box-shadow:0 0 0 1px #c1121f,0 30px 80px rgba(193,18,31,.12)}.retainer-badge{position:absolute;right:22px;top:20px;background:#c1121f;color:#fff;padding:8px 11px;font-size:8px;font-weight:900;letter-spacing:2px;text-transform:uppercase}.a5-packages .retainer-name{font-size:34px;line-height:1}.a5-packages .retainer-price{font-size:60px;line-height:1;margin:25px 0 10px}.a5-packages .retainer-price span{display:block;font-family:Inter,sans-serif;font-size:9px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.4);margin-top:8px}.retainer-summary{min-height:80px;font-size:12px;line-height:1.75;color:rgba(255,255,255,.55);padding-bottom:22px;border-bottom:1px solid #151515}.a5-packages .retainer-features{flex:1;margin-top:24px}.a5-packages .retainer-features li strong{color:#fff}.a5-packages .retainer-btn{margin-top:26px;text-align:center}.regional-partner{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.65fr) auto;gap:38px;align-items:center;border:1px solid #242424;border-left:3px solid #c1121f;background:linear-gradient(100deg,#080808,#020202);padding:42px;margin-top:24px}.regional-partner h3{font-family:'Barlow Condensed',sans-serif;font-size:48px;line-height:1;text-transform:uppercase;color:#fff;margin:8px 0 12px}.regional-partner p{font-size:12px;line-height:1.75;color:rgba(255,255,255,.6);max-width:660px}.regional-price{font-family:'Barlow Condensed',sans-serif;font-size:36px;font-weight:900;color:#fff;line-height:1}.regional-price small,.regional-price span{display:block;font-family:Inter,sans-serif;font-size:8px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.42);margin:7px 0}.graphics-callout{display:grid;grid-template-columns:280px 1fr;gap:40px;padding:35px 0;margin-top:34px;border-top:1px solid #171717;border-bottom:1px solid #171717}.graphics-callout strong{font-family:'Barlow Condensed',sans-serif;font-size:27px;line-height:1;text-transform:uppercase;color:#fff}.graphics-callout p{font-size:12px;line-height:1.8;color:rgba(255,255,255,.6)}.package-note{font-size:10px;line-height:1.7;color:rgba(255,255,255,.35);margin-top:28px;max-width:900px}
@media(max-width:980px){.regional-partner{grid-template-columns:1fr}.retainer-summary{min-height:0}.graphics-callout{grid-template-columns:1fr}.a5-packages{padding:100px 24px}}
@media(max-width:640px){.a5-package-tabs{display:grid;width:100%}.a5-package-tab{padding:15px 10px;font-size:9px}.a5-packages .retainer-price{font-size:50px}.regional-partner{padding:28px}.regional-partner h3{font-size:40px}}

/* AFTER5 v5 — brand partnership intro */
.brand-package-intro {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.brand-package-intro h3 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}
.brand-package-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}
.brand-callout { margin-top: 34px; }

/* ── V5.1 SERVICES FLOW: ONE CHOICE, NOT TWO ── */
.services-overview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 48px 36px;
  text-align: center;
}
.services-overview h2 {
  margin: 18px 0 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
}
.services-overview p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.85;
}
.service-panel-static { display: block !important; }
.service-division-heading {
  padding: 88px 0 42px;
  border-bottom: 1px solid #161616;
}
.service-division-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.service-division-heading h2 {
  margin: 0 0 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}
.service-division-heading p {
  max-width: 760px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
  line-height: 1.8;
}
.a5-packages { scroll-margin-top: 100px; }
.a5-package-panel { transition: opacity .28s ease, transform .28s ease; }
@media (max-width: 768px) {
  .services-overview { padding: 64px 24px 20px; }
  .service-division-heading { padding: 64px 0 28px; }
  .service-division-heading p { font-size: 13px; }
}

/* Release accessibility baseline */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--red) !important;
  outline-offset: 4px !important;
}

.work-card:focus-visible,
.featured-card:focus-visible {
  outline-offset: -4px !important;
}

[aria-hidden="true"].a5-package-panel,
[aria-hidden="true"].work-modal {
  visibility: hidden;
}

/* Homepage showreel video */
.a5-showreel-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}
.a5-showreel-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.68));
  pointer-events: none;
  z-index: 1;
  transition: opacity .35s ease;
}
.a5-showreel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: filter .35s ease;
}
.a5-showreel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.34);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.62);
  z-index: 2;
  cursor: pointer;
  transition: opacity .25s, transform .25s, border-color .25s;
}
.a5-showreel-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: var(--red);
}
.a5-showreel-visual.is-playing::after { opacity: 0; }
.a5-showreel-visual.is-playing .a5-showreel-video { filter: brightness(1); }
.a5-showreel-visual.is-playing .a5-showreel-play {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .a5-showreel-visual { min-height: 280px; }
  .a5-showreel-play { width: 108px; height: 108px; }
}
