/* ═══════════════════════════════════════════════
   CAB Lab — styles.css
   Built section by section. Nav + Hero: v1.
   ═══════════════════════════════════════════════ */


/* ───────────────────────────────────────────────
   TOKENS
─────────────────────────────────────────────── */
:root {
  /* Colour */
  --black:       #0a0a0a;
  --white:       #ffffff;
  --red:         #C1272D;
  --grey-subtle: #f5f5f5;
  --grey-mid:    #888888;
  --grey-dark:   #333333;

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  /* Nav */
  --nav-h:  64px;

  /* Spacing */
  --gap:    clamp(2rem, 5vw, 5rem);

  /* Easing */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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


/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  /* Starts transparent over the dark hero */
  background: transparent;
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

/* JS adds this class on scroll */
.nav.is-solid {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}


/* — Wordmark ─────────────────────────────────── */
.nav__wordmark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  user-select: none;
  text-decoration: none;
}

/* Logo mark — displayed as-is, black background reads on all nav states */
.nav__icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

/* Text stack beside icon */
.nav__wordmark-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.nav__wordmark-name {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.nav__cab,
.nav__lab {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

/* Over dark hero */
.nav__cab { color: var(--white); }
.nav__lab { color: var(--red); }

/* Once solid: CAB becomes dark */
.nav.is-solid .nav__cab { color: var(--black); }

.nav__subtitle {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s var(--ease);
  line-height: 1;
}

.nav.is-solid .nav__subtitle {
  color: var(--grey-mid);
}


/* — Desktop links ────────────────────────────── */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--white);
}

.nav.is-solid .nav__links a {
  color: var(--grey-dark);
}

.nav.is-solid .nav__links a:hover {
  color: var(--black);
}

/* Apply — pill CTA in nav */
.nav__apply {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s !important;
}

.nav__apply:hover {
  color: var(--white) !important;
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.08) !important;
}

.nav.is-solid .nav__apply {
  border-color: var(--red) !important;
  color: var(--red) !important;
}

.nav.is-solid .nav__apply:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}


/* — Burger (mobile) ──────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__burger span {
  display: block;
  height: 1px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s;
}

.nav.is-solid .nav__burger span {
  background: var(--black);
}

/* Open state */
.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* — Mobile menu ──────────────────────────────── */
.nav__mobile {
  position: absolute;
  inset: var(--nav-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__mobile a {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--red);
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--black);
  overflow: hidden;
}


/* — Left: content ────────────────────────────── */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 5rem) 4rem clamp(1.5rem, 6vw, 6rem);

  /* Subtle fade-in on load */
  animation: heroFadeUp 1s var(--ease) both;
  animation-delay: 0.1s;
}

.hero__label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

/* The italic "has a reason." line for emphasis */
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.hero__body {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
  margin-bottom: 2.5rem;
}

/* Cohort meta row */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__cohort,
.hero__places {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero__places {
  color: var(--red);
  font-weight: 500;
}

.hero__divider {
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* CTA button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.875rem 2rem;
  border: 1px solid var(--red);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.hero__cta:hover {
  background: transparent;
  color: var(--white);
  gap: 0.9rem;
}

.hero__cta svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.hero__cta:hover svg {
  transform: translateX(3px);
}


/* — Right: image ─────────────────────────────── */
.hero__image {
  position: relative;
  overflow: hidden;

  /* Subtle reveal on load */
  animation: heroImageReveal 1.4s var(--ease) both;
  animation-delay: 0.3s;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Very slight dark vignette at the left edge to blend into content panel */
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 25%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 25%);
}


/* — Animations ───────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageReveal {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Tablet — stack hero vertically */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100svh;
  }

  .hero__content {
    grid-row: 1;
    padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 6vw, 3rem) 2.5rem;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }

  .hero__image {
    grid-row: 1;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* Full overlay on mobile since image is behind text */
  .hero {
    position: relative;
  }

  .hero__image img {
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.3;
  }

  .hero__body { max-width: 100%; }
}

/* Mobile */
@media (max-width: 560px) {
  .hero__headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 2 — WHY CAB LAB EXISTS
═══════════════════════════════════════════════ */
.why {
  background: var(--white);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.why__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 clamp(3rem, 6vw, 7rem);
  max-width: 1100px;
  margin: 0 auto;
}

/* — Left column: label ───────────────────────── */
.why__label-col {
  padding-top: 0.35rem;
}

.why__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  /* Rotated vertical label — optional, remove if too editorial */
}

/* — Right column: content ────────────────────── */
.why__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--red);
  margin-bottom: 3rem;
}

.why__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.why__body p {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 2;
  color: #444444;
  max-width: 62ch;
}

/* Pull quote — closing line */
.why__pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  color: var(--red);
  border: none;
  margin: 0;
  padding: 3.5rem 0 0 0;
  border-top: 1px solid #e0e0e0;

  /* Fade in slightly delayed */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: 0.2s;
}

.why__pull.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraphs — staggered fade in */
.why__heading,
.why__body p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.why__heading.is-visible { opacity: 1; transform: translateY(0); }
.why__body p.is-visible  { opacity: 1; transform: translateY(0); }

.why__body p:nth-child(2).is-visible { transition-delay: 0.1s; }
.why__body p:nth-child(3).is-visible { transition-delay: 0.2s; }
.why__body p:nth-child(4).is-visible { transition-delay: 0.3s; }

/* — Responsive ───────────────────────────────── */
@media (max-width: 780px) {
  .why__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }

  .why__label-col {
    padding-top: 0;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 3 — THE THREE LENSES
═══════════════════════════════════════════════ */
.lenses {
  background: var(--black);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.lenses__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* — Header ───────────────────────────────────── */
.lenses__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.lenses__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.lenses__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lenses__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.1s;
}

.lenses__heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lenses__intro {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.2s;
}

.lenses__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* — Diagram ──────────────────────────────────── */
.lenses__diagram {
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: 0.3s;
}

.lenses__diagram.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lenses__diagram img {
  width: 100%;
  height: auto;
  display: block;
}

/* — Descriptors ──────────────────────────────── */
.lenses__descriptors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lenses__item {
  background: var(--black);
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.lenses__item.is-visible { opacity: 1; transform: translateY(0); }
.lenses__item:nth-child(2).is-visible { transition-delay: 0.1s; }
.lenses__item:nth-child(3).is-visible { transition-delay: 0.2s; }

.lenses__item-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.lenses__item-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lenses__item-body {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

/* — Responsive ───────────────────────────────── */
@media (max-width: 700px) {
  .lenses__descriptors {
    grid-template-columns: 1fr;
  }

  .lenses__heading br { display: none; }
}


/* ═══════════════════════════════════════════════
   SECTION 4 — THE JOURNEY
═══════════════════════════════════════════════ */
.journey {
  background: var(--white);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.journey__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 clamp(3rem, 6vw, 7rem);
}

/* — Header ───────────────────────────────────── */
.journey__header {
  padding-top: 0.35rem;
}

.journey__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.journey__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--black);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

/* — Timeline ─────────────────────────────────── */
.journey__timeline {
  list-style: none;
  position: relative;
}

.journey__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.journey__step.is-visible { opacity: 1; transform: translateY(0); }
.journey__step:nth-child(2).is-visible { transition-delay: 0.05s; }
.journey__step:nth-child(3).is-visible { transition-delay: 0.1s; }
.journey__step:nth-child(4).is-visible { transition-delay: 0.15s; }
.journey__step:nth-child(5).is-visible { transition-delay: 0.2s; }
.journey__step:nth-child(6).is-visible { transition-delay: 0.25s; }
.journey__step:nth-child(7).is-visible { transition-delay: 0.3s; }
.journey__step:nth-child(8).is-visible { transition-delay: 0.35s; }

/* — Marker column ────────────────────────────── */
.journey__marker-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey__marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #cccccc;
  background: var(--white);
  flex-shrink: 0;
  margin-top: 0.35rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
}

/* First step — red open circle */
.journey__step:first-child .journey__marker {
  border-color: var(--red);
}

/* Optional step — dashed border */
.journey__marker--optional {
  border-style: dashed;
  border-color: #aaaaaa !important;
}

/* Final step — solid filled black */
.journey__marker--final {
  border-color: var(--black) !important;
  background: var(--black) !important;
  width: 16px;
  height: 16px;
}

/* Connecting line between markers */
.journey__line {
  width: 1px;
  flex: 1;
  min-height: 2.5rem;
  background: #e5e5e5;
  margin: 4px 0;
}

/* Optional step — dashed line */
.journey__step--optional .journey__line {
  background: repeating-linear-gradient(
    to bottom,
    #dddddd 0px,
    #dddddd 4px,
    transparent 4px,
    transparent 8px
  );
}

/* — Content ──────────────────────────────────── */
.journey__content {
  padding-bottom: 2.75rem;
}

.journey__step--final .journey__content {
  padding-bottom: 0;
}

.journey__step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

/* Alumni title — red */
.journey__step-title--final {
  color: var(--red);
}

.journey__optional-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaaaaa;
  border: 1px solid #dddddd;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  line-height: 1;
}

.journey__step-body {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  font-weight: 300;
  line-height: 1.8;
  color: #666666;
  max-width: 52ch;
}

/* Optional step — slightly muted */
.journey__step--optional .journey__step-title,
.journey__step--optional .journey__step-body {
  opacity: 0.65;
}

/* — Responsive ───────────────────────────────── */
@media (max-width: 780px) {
  .journey__inner {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }

  .journey__heading {
    position: static;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 5 — WHAT'S DIFFERENT
═══════════════════════════════════════════════ */
.different {
  background: #f5f5f5;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.different__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* — Header ───────────────────────────────────── */
.different__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.different__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.different__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.different__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 22ch;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.1s;
}

.different__heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* — Cards ────────────────────────────────────── */
.different__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e0e0e0;
}

.different__card {
  background: var(--white);
  padding: 2.75rem 2rem 3rem;
  position: relative;
  border-right: 1px solid #e0e0e0;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              background 0.3s var(--ease);
}

.different__card:last-child {
  border-right: none;
}

.different__card.is-visible { opacity: 1; transform: translateY(0); }
.different__card:nth-child(2).is-visible { transition-delay: 0.1s; }
.different__card:nth-child(3).is-visible { transition-delay: 0.2s; }
.different__card:nth-child(4).is-visible { transition-delay: 0.3s; }

.different__card:hover {
  background: #fafafa;
}

/* Red accent line — draws across top on hover */
.different__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.different__card:hover .different__card-accent {
  transform: scaleX(1);
}

/* Card number */
.different__card-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

/* Card title */
.different__card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Card body */
.different__card-body {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--red);
}

/* — Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .different__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .different__card:nth-child(2) {
    border-right: none;
  }

  .different__card:nth-child(1),
  .different__card:nth-child(2) {
    border-bottom: 1px solid #e0e0e0;
  }
}

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

  .different__card {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .different__card:last-child {
    border-bottom: none;
  }

  .different__heading br { display: none; }
}


/* ═══════════════════════════════════════════════
   SECTION 6 — APPLY
═══════════════════════════════════════════════ */
.apply {
  background: var(--black);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.apply__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 6vw, 7rem);
}

.apply__content {
  max-width: 560px;
}

/* — Eyebrow ──────────────────────────────────── */
.apply__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.apply__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* — Heading ──────────────────────────────────── */
.apply__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: 0.1s;
}

.apply__heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* — Body ─────────────────────────────────────── */
.apply__body {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  max-width: 52ch;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.2s;
}

.apply__body.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apply__body + .apply__body {
  transition-delay: 0.3s;
}

/* — Stats row ────────────────────────────────── */
.apply__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.35s;
}

.apply__meta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apply__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.apply__meta-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.apply__meta-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.apply__meta-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* — CTA ──────────────────────────────────────── */
.apply__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 1rem 2.5rem;
  border: 1px solid var(--red);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
              background 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
  transition-delay: 0.4s;
}

.apply__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apply__cta:hover {
  background: transparent;
  color: var(--white);
  gap: 0.9rem;
}

.apply__cta svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.apply__cta:hover svg {
  transform: translateX(3px);
}

/* — Reassurance line ─────────────────────────── */
.apply__reassurance {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.25);
  max-width: 44ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.5s;
}

.apply__reassurance.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* — Responsive ───────────────────────────────── */
@media (max-width: 780px) {
  .apply__inner {
    grid-template-columns: 1fr;
  }

  .apply__heading br { display: none; }

  .apply__cta {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #050505;
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.footer__sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.footer__copy {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}
