/* Supervision VP – Brand Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  /* Core brand colors - per brand guidelines */
  --burgundy: #7B0F0F;
  --burgundy-dark: #5C0A0A;
  --burgundy-darker: #3A0808;
  --cream: #FFEBC8;
  --cream-light: #FFFDF8;

  /* Signature stripe colors - per brand guidelines */
  --stripe-orange: #D95A02;
  --stripe-gold: #E6A32F;
  --stripe-teal: #0E5B66;

  /* Light-mode foundation */
  --bg: #FFFDF8;
  --bg-warm: #FFF8ED;
  --bg-burgundy: #7B0F0F;
  --charcoal: #2A2A2A;
  --charcoal-muted: #555;
  --charcoal-subtle: #888;

  /* Functional colors - dark-on-light */
  --text: var(--charcoal);
  --text-muted: var(--charcoal-muted);
  --text-subtle: var(--charcoal-subtle);
  --border: rgba(42, 42, 42, 0.1);
  --border-hover: rgba(42, 42, 42, 0.2);

  /* Light-on-dark variants (for burgundy sections) */
  --text-on-dark: var(--cream);
  --text-on-dark-muted: rgba(255, 235, 200, 0.78);
  --text-on-dark-subtle: rgba(255, 235, 200, 0.5);
  --border-on-dark: rgba(255, 235, 200, 0.1);
  --border-on-dark-hover: rgba(255, 235, 200, 0.22);

  /* Shadows & Effects - refined, no glows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --header-height: 72px;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo Narrow', 'Helvetica Neue', Arial, sans-serif;

  /* Animation */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.7s;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--burgundy);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

main.container {
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-burgundy);
  transition: box-shadow var(--duration-normal) ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-logo {
  display: block;
  width: auto;
  transition: opacity var(--duration-fast) ease;
}
.brand:hover .brand-logo {
  opacity: 0.85;
}

/* Header wordmark — just "SUPERVISION" text, transparent bg on burgundy header */
.brand-logo-header {
  height: 30px;
}

/* Footer full lockup — includes subtitle + stripes, on burgundy bg */
.brand-logo-footer {
  height: 64px;
}

/* Navigation Links */
.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navlinks a {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  border-radius: var(--radius);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}
.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--stripe-gold), var(--stripe-orange));
  transform: translateX(-50%);
  transition: width var(--duration-normal) var(--ease-spring);
  border-radius: 2px;
}
.navlinks a:hover {
  color: var(--text-on-dark);
}
.navlinks a:hover::after {
  width: 24px;
}
.navlinks a.active {
  color: var(--text-on-dark);
}
.navlinks a.active::after {
  width: 20px;
  background: var(--stripe-gold);
}

/* CTA Button */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
}
.cta:hover {
  background: rgba(42, 42, 42, 0.05);
  border-color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.cta:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

/* CTA in dark contexts (header, footer, fork section) */
header .cta,
.footer .cta,
.fork-section .cta {
  color: var(--text-on-dark);
  border-color: var(--border-on-dark-hover);
  background: rgba(255, 235, 200, 0.06);
}
header .cta:hover,
.footer .cta:hover,
.fork-section .cta:hover {
  background: rgba(255, 235, 200, 0.12);
  border-color: var(--cream);
  box-shadow: none;
}

/* Primary CTA */
.cta.primary {
  background: var(--stripe-orange);
  border-color: var(--stripe-orange);
  color: #fff;
}
.cta.primary:hover {
  background: #E66A10;
  border-color: #E66A10;
  box-shadow: var(--shadow-md);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  padding: 48px 0 80px;
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
  padding: 40px 0 32px;
  max-width: 800px;
}
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stripe-orange);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.kicker::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--stripe-orange), transparent);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 58ch;
  font-weight: 400;
}

/* ============================================
   SPLIT HERO
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 100px);
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-content {
  max-width: 600px;
}

.hero-content .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stripe-orange);
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}
.hero-content .kicker::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--stripe-orange), transparent);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 28px;
}

.hero-content .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 36px;
  font-weight: 400;
}

/* Hero logos */
.hero-logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-subtle);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.client-logo {
  height: 20px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--duration-fast) ease;
}

.client-logo[alt="Apple"] {
  height: 24px;
}

.client-logo[alt="ScreenSkills"] {
  height: 22px;
}

.client-logo:hover {
  opacity: 0.7;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* Stripe accent on hero image - signature element */
.hero-stripes {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 70%;
  height: 14px;
  display: flex;
  gap: 6px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero-stripes::before,
.hero-stripes::after {
  content: '';
  flex: 1;
  border-radius: 4px;
  transition: transform var(--duration-slow) var(--ease-spring);
}

.hero-stripes::before {
  background: linear-gradient(90deg, var(--stripe-orange), var(--stripe-gold));
  box-shadow: none;
}

.hero-stripes::after {
  flex: 0.55;
  background: var(--stripe-teal);
  box-shadow: none;
}

.hero-visual:hover .hero-stripes::before {
  transform: translateX(8px);
}
.hero-visual:hover .hero-stripes::after {
  transform: translateX(-4px);
}

/* Responsive - Split Hero */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content .kicker::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-logos {
    align-items: center;
  }

  .logo-strip {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--charcoal-subtle);
  padding-top: 16px;
  margin-bottom: 8px;
}
.breadcrumbs a {
  color: var(--charcoal-muted);
}
.breadcrumbs a:hover {
  color: var(--charcoal);
  text-decoration: underline;
}

/* Pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-muted);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s ease;
}
.pill:hover {
  background: rgba(42, 42, 42, 0.05);
  border-color: var(--border-hover);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.teal { background: var(--stripe-teal); }
.dot.orange { background: var(--stripe-orange); }
.dot.yellow { background: var(--stripe-gold); }

/* ============================================
   GRID & CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card.subtle {
  background: var(--bg-warm);
  box-shadow: none;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.card p {
  font-size: 15px;
  color: var(--charcoal-muted);
  margin: 0;
  line-height: 1.6;
}
.card .cta {
  margin-top: 20px;
}

/* Founder card */
.founder-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.founder-image {
  flex-shrink: 0;
  width: 160px;
}
.founder-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.founder-info {
  flex: 1;
}
@media (max-width: 600px) {
  .founder-layout {
    flex-direction: column;
  }
  .founder-image {
    width: 120px;
  }
}

.smallcaps {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-subtle);
  margin-bottom: 12px;
}
h2.smallcaps {
  margin-top: 0;
}

.hr {
  width: 60px;
  height: 3px;
  background: var(--stripe-orange);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

.list {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 15px;
  color: var(--charcoal-muted);
}
.list li {
  margin: 8px 0;
  line-height: 1.5;
}
.list b {
  color: var(--charcoal);
}

/* ============================================
   FORK SECTION
   ============================================ */
.arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.fork-section {
  padding: 100px 0;
  background: var(--bg-burgundy);
}

.fork-intro {
  text-align: center;
  margin-bottom: 56px;
}

.fork-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  margin: 0;
}

.fork-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Fork Card */
.fork-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-xl);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.fork-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-on-dark-hover);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* Stripe accent - dynamic signature element */
.fork-card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: height var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) ease;
}

.fork-card--productions .fork-card-stripe {
  background: linear-gradient(90deg, var(--stripe-teal), #147878);
}

.fork-card--inhouse .fork-card-stripe {
  background: linear-gradient(90deg, var(--stripe-orange), var(--stripe-gold));
}

.fork-card:hover .fork-card-stripe {
  height: 8px;
}

.fork-card--productions:hover .fork-card-stripe {
  box-shadow: none;
}

.fork-card--inhouse:hover .fork-card-stripe {
  box-shadow: none;
}

/* Card content */
.fork-card-content {
  flex: 1;
}

.fork-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  margin: 0 0 16px;
}

.fork-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* Reveal content on hover */
.fork-card-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--duration-normal) var(--ease-out),
              opacity var(--duration-normal) ease,
              margin var(--duration-normal) ease;
}

.fork-card:hover .fork-card-reveal {
  max-height: 150px;
  opacity: 1;
  margin-top: 20px;
}

.fork-card-reveal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fork-card-reveal li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
}

.fork-card-reveal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stripe-gold);
}

/* CTA */
.fork-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-on-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--stripe-gold);
}

.fork-card-cta .arrow {
  transition: transform var(--duration-fast) ease;
}

.fork-card:hover .fork-card-cta .arrow {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 900px) {
  .fork-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fork-card {
    padding: 32px;
  }

  .fork-card-reveal {
    max-height: none;
    opacity: 1;
    margin-top: 20px;
  }
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
.split .left { grid-column: auto; }
.split .right { grid-column: auto; }

.cols2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 60px 0 32px;
  background: var(--bg-burgundy);
}

.footer-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.footer-stripe::before,
.footer-stripe::after {
  content: '';
  height: 100%;
}

.footer-stripe::before {
  flex: 2;
  background: linear-gradient(90deg,
    var(--stripe-orange),
    var(--stripe-gold)
  );
}

.footer-stripe::after {
  flex: 0.8;
  background: var(--stripe-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-on-dark);
}

.footer-brand .brand {
  display: block;
  margin-bottom: 16px;
}

.footer-brand .brand-logo-footer {
  display: block;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 280px;
}

.footer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-subtle);
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  margin: 0;
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-on-dark-subtle);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   SECTION TITLE
   ============================================ */
.sectionTitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-subtle);
  margin: 48px 0 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .navlinks {
    display: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  .hero {
    padding: 24px 0;
  }
  .cols2 {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 20px;
  }
}

/* Utility: full-width grid items */
[style*="grid-column:1/-1"],
[style*="grid-column: 1 / -1"] {
  grid-column: 1 / -1;
}
[style*="grid-column:span 4"] { grid-column: span 4; }
[style*="grid-column:span 5"] { grid-column: span 5; }
[style*="grid-column:span 6"] { grid-column: span 6; }
[style*="grid-column:span 7"] { grid-column: span 7; }
[style*="grid-column:span 8"] { grid-column: span 8; }

@media (max-width: 768px) {
  [style*="grid-column:span"] {
    grid-column: 1 / -1 !important;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  animation: fadeInUp 0.6s ease-out;
}
.grid {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Fade variations */
.animate-fade {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}
.animate-fade.is-visible {
  opacity: 1;
}

/* Scale variation */
.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
  padding: 64px 0;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0 0 32px;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.proof-logos .client-logo {
  height: 28px;
  opacity: 0.4;
}

.proof-logos .client-logo[alt="Apple"] {
  height: 34px;
}

.proof-logos .client-logo[alt="ScreenSkills"] {
  height: 31px;
}

.proof-logos .client-logo:hover {
  opacity: 0.7;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.differentiators {
  padding: 100px 0;
}

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

.diff-card {
  text-align: left;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) ease,
              border-color var(--duration-normal) ease;
}

.diff-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.diff-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-bottom: 28px;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) ease;
}

.diff-card:hover .diff-dot {
  transform: scale(1.2);
}

.diff-card:nth-child(1):hover .diff-dot {
  box-shadow: none;
}
.diff-card:nth-child(2):hover .diff-dot {
  box-shadow: none;
}
.diff-card:nth-child(3):hover .diff-dot {
  box-shadow: none;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.diff-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .diff-card {
    text-align: center;
  }
  .diff-dot {
    margin: 0 auto 24px;
  }
}

/* ============================================
   FEATURED WORK
   ============================================ */
.featured-work {
  padding: 100px 0;
  background: var(--bg-warm);
}

.section-header {
  margin-bottom: 48px;
}

.section-header .smallcaps {
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.work-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 253, 248, 0.9) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.work-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-normal) ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.08);
}

.work-card-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.work-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stripe-orange);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin: 10px 0 6px;
}

.work-card p {
  font-size: 15px;
  color: var(--charcoal-muted);
  margin: 0;
}

.work-card-hover {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--stripe-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--duration-normal) ease,
              transform var(--duration-normal) var(--ease-out);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-card-hover .arrow {
  transition: transform var(--duration-fast) var(--ease-spring);
}

.work-card:hover .work-card-hover {
  opacity: 1;
  transform: translateX(0);
}

.work-card:hover .work-card-hover .arrow {
  transform: translateX(4px);
}

.work-more {
  text-align: center;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--stripe-orange),
    var(--stripe-gold),
    var(--stripe-teal)
  );
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0 0 20px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal-muted);
  margin: 0 0 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  border-radius: var(--radius);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--stripe-gold), var(--stripe-orange));
  transform: translateX(-50%);
  transition: width var(--duration-normal) var(--ease-spring);
  border-radius: 2px;
}

.nav-dropdown-trigger:hover {
  color: var(--text-on-dark);
}

.nav-dropdown-trigger:hover::after {
  width: 24px;
}

.nav-dropdown-trigger.active {
  color: var(--text-on-dark);
}

.nav-dropdown-trigger.active::after {
  width: 20px;
  background: var(--stripe-gold);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform var(--duration-fast) ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 180px;
  background: var(--burgundy-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast) ease,
              visibility var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: all var(--duration-fast) ease;
}

.nav-dropdown-menu a:hover {
  color: var(--text-on-dark);
  background: rgba(255, 235, 200, 0.06);
}

/* ============================================
   TECHNIQUE GRID (Homepage teaser)
   ============================================ */
.technique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.technique-card {
  display: block;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.technique-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.technique-icon {
  margin-bottom: 20px;
}

.technique-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.technique-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .technique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .technique-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TECHNIQUE INTRO
   ============================================ */
.technique-intro {
  max-width: 720px;
  margin-bottom: 40px;
}

/* ============================================
   HOW WE WORK — HERO IMAGE
   ============================================ */
.technique-hero-image {
  margin-bottom: 32px;
}
.technique-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
}

/* ============================================
   HOW WE WORK — TECHNIQUE SECTIONS
   ============================================ */
.technique-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}
.technique-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.technique-section h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.technique-section p {
  font-size: 15px;
  color: var(--charcoal-muted);
  margin: 0;
  line-height: 1.6;
}
.technique-section .hr {
  margin: 16px 0;
}

/* Callout box inside technique cards */
.technique-callout {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
}
.callout-images figure {
  margin: 0;
}
.callout-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.callout-images figcaption {
  font-size: 12px;
  color: var(--charcoal-subtle);
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.callout-images--trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.callout-images--single figure {
  max-width: 600px;
}
.callout-images--single img {
  aspect-ratio: 3 / 2;
}
.callout-caption {
  font-size: 13px !important;
  color: var(--charcoal-subtle) !important;
  margin-top: 12px !important;
  font-style: italic;
}

@media (max-width: 600px) {
  .technique-section {
    padding: 20px;
  }
  .callout-images--trio {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .technique-section h3 {
    font-size: 24px;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--bg);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--stripe-orange);
  box-shadow: 0 0 0 3px rgba(217, 90, 2, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   PULLQUOTE
   ============================================ */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
  padding: 0;
  border: none;
}

/* ============================================
   PROJECT GALLERY (Productions page)
   ============================================ */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.project-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.project-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-out);
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-info {
  padding: 16px 20px;
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.project-tag {
  font-size: 13px;
  color: var(--charcoal-subtle);
  letter-spacing: 0.02em;
}
.project-desc {
  font-size: 13px;
  color: var(--charcoal-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.project-card--coming-soon {
  cursor: default;
}

.project-image--placeholder {
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.coming-soon-label {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal-subtle);
}

@media (max-width: 768px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCT TOOL CARDS (In-House page)
   ============================================ */
.product-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.product-tool-card {
}

.product-tool-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.product-tool-stripe {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.product-tool-stripe--orange { background: var(--stripe-orange); }
.product-tool-stripe--gold { background: var(--stripe-gold); }
.product-tool-stripe--teal { background: var(--stripe-teal); }

.product-tool-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .product-tools-grid {
    grid-template-columns: 1fr;
  }
}
