/* ──────────────────────────────────────────────────────────
   IMPERIUM · imperiumicons.uk
   Editorial OnlyFans agency single-page funnel
   Palette: plum / cream / rose / gold
   Type: Fraunces (display) + Inter (body)
   ────────────────────────────────────────────────────────── */

:root {
  /* Locked palette — Imperium house style */
  --plum:        #3D1F2E;   /* primary anchor — hero, roster, body accents */
  --plum-deep:   #2A1320;   /* footer depth */
  --cream:       #F2E8DC;   /* canvas */
  --cream-soft:  #F8F1E5;   /* cards, subtle elevation */
  --rose:        #E8C9C0;   /* soft sections, breathing room */
  --mauve:       #C6ACAA;   /* tonal washes between sections */
  --gold:        #B8935A;   /* accent only — never fills */
  --gold-soft:   #D4B584;   /* honey for dim contexts */
  --charcoal:    #2A1F1F;   /* body text on cream */
  --grey-line:   #C9BBA8;   /* hairlines on cream */

  /* Type */
  --serif:  'Fraunces', 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max:    1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* paper grain — subtle SVG noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

/* ── masthead ─────────────────────────────────────────── */
.masthead {
  border-bottom: 1px solid var(--grey-line);
  padding: 1.25rem var(--gutter);
  position: relative;
  z-index: 10;
}
.masthead__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.masthead__rule {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
}
.masthead__rule--right { text-align: right; }
.masthead__brand { text-align: center; }
.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--plum);
  font-style: italic;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* ── hero ─────────────────────────────────────────────── */
.hero {
  background: var(--plum);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}
.hero__copy { max-width: 38rem; }
.hero__photo {
  margin: 0;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Subtle plum tint over hero photo to fold it into the section */
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(61, 31, 46, 0.05),
    rgba(61, 31, 46, 0.18)
  );
  pointer-events: none;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--rose);
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--plum);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(61, 31, 46, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn--ghost:hover {
  background: var(--plum);
  color: var(--cream);
}
.btn--large {
  padding: 1.15rem 2.5rem;
  font-size: 0.9rem;
}

/* hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 147, 90, 0.3);
  border: 1px solid rgba(184, 147, 90, 0.4);
  max-width: 760px;
  margin: 0 auto;
}
.stat {
  background: var(--plum-deep);
  padding: 1.75rem 1rem;
  text-align: center;
}
.stat__number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.8;
  line-height: 1.4;
}

/* ── VSL ──────────────────────────────────────────────── */
.vsl {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}
.vsl__frame {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--plum-deep);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(61, 31, 46, 0.06);
}
.vsl__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
}
.vsl__placeholder-inner {
  text-align: center;
  color: var(--cream);
}
.vsl__play {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold-soft);
  padding-left: 6px;
  transition: all 0.4s var(--ease);
}
.vsl__placeholder:hover .vsl__play {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
  transform: scale(1.05);
}
.vsl__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.vsl__duration {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── shared section ───────────────────────────────────── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  z-index: 2;
}
.section__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--plum);
  margin-bottom: 2.5rem;
  max-width: 28ch;
}
.section__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.85;
  max-width: 38rem;
  margin-bottom: 3rem;
}

/* ── steps ────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--grey-line);
  padding-top: 3rem;
}
.step {
  position: relative;
  padding-top: 2rem;
}
.step__number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step__copy {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.85;
}

/* ── services ─────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  overflow: hidden;
}
.service {
  background: var(--cream-soft);
  padding: 2rem 1.5rem;
}
.service__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.service__copy {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.8;
}

/* ── apply section legacy styles removed — see .section--apply-cta below ─── */

/* ── footer ───────────────────────────────────────────── */
.footer {
  background: var(--plum-deep);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  position: relative;
  z-index: 2;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242, 232, 220, 0.15);
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer__tag {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 24ch;
}
.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s var(--ease);
}
.footer__link:hover { opacity: 1; }
.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.55;
  letter-spacing: 0.04em;
}
.placeholder-co {
  font-style: italic;
  opacity: 0.7;
}

/* ── responsive ───────────────────────────────────────── */
@media (max-width: 720px) {
  .masthead__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .masthead__rule { display: none; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
}

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

/* ── ROSTER section ───────────────────────────────────── */
.roster {
  background: var(--plum);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  position: relative;
  z-index: 2;
}
.roster__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.roster__intro {
  max-width: 36rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.roster__intro .section__eyebrow { color: var(--gold-soft); }
.roster__intro .section__title {
  color: var(--cream);
  margin: 0.5rem auto 1.5rem;
  max-width: 16ch;
}
.roster__intro .section__lede {
  color: var(--rose);
  opacity: 0.85;
  max-width: 38rem;
  margin: 0 auto;
}

.roster__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.roster__feature:last-child { margin-bottom: 0; }

@media (min-width: 800px) {
  .roster__feature {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
  .roster__feature--01 .roster__caption { order: 2; }
  .roster__feature--01 .roster__image-wrap { order: 1; }
}

.roster__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  aspect-ratio: 3 / 4;
}
.roster__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.roster__feature:hover .roster__image-wrap img {
  transform: scale(1.03);
}

.roster__caption {
  padding: 0;
}
.roster__caption-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.roster__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}
.roster__quote::before { content: "“"; opacity: 0.5; margin-right: 0.1em; }
.roster__quote::after { content: "”"; opacity: 0.5; margin-left: 0.1em; }

.roster__stat-row {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 181, 132, 0.25);
}
.roster__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.roster__stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.roster__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.7;
}

/* ── APPLY page ───────────────────────────────────────── */
.apply-body { min-height: 100vh; display: flex; flex-direction: column; }
.apply-body .footer { margin-top: auto; }

.masthead__back {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.masthead__back:hover { opacity: 1; }

.apply-page {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  width: 100%;
  position: relative;
  z-index: 2;
}
.apply-page__intro { margin-bottom: 2.5rem; }
.apply-page__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.9;
  max-width: 38rem;
}
.apply-page__form {
  background: var(--cream-soft);
  border: 1px solid var(--grey-line);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  min-height: 700px;
}
.apply-page__form iframe { display: block; }
.apply-page__fallback {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.6;
  text-align: center;
}
.apply-page__fallback a {
  color: var(--plum);
  border-bottom: 1px dotted var(--gold);
}

.footer--compact { padding: 1.5rem var(--gutter); }
.footer--compact .footer__base { padding-top: 0; opacity: 0.5; }
.footer--compact a {
  color: var(--cream);
  border-bottom: 1px dotted rgba(242, 232, 220, 0.3);
}
.footer__back { white-space: nowrap; }

/* ── APPLY CTA section (homepage) ─────────────────────── */
.section--apply-cta {
  background: var(--cream);
  color: var(--charcoal);
  max-width: none;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  text-align: center;
}
.section--apply-cta .section__title {
  color: var(--plum);
  margin-left: auto;
  margin-right: auto;
}
.section--apply-cta .section__lede {
  color: var(--charcoal);
  opacity: 0.85;
  margin-left: auto;
  margin-right: auto;
}
.section--apply-cta .section__eyebrow { color: var(--gold); }

.apply-cta-block {
  margin-top: 2.5rem;
  text-align: center;
}
.apply-cta-block .btn--primary {
  background: var(--plum);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 1.2rem 2.75rem;
  letter-spacing: 0.18em;
}
.apply-cta-block .btn--primary:hover {
  background: var(--plum-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(61, 31, 46, 0.06);
}
.apply-cta__note {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}
.apply-cta__note a {
  color: var(--plum);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ── legal pages ──────────────────────────────────────── */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  position: relative;
  z-index: 2;
}
.legal__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.legal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.legal__updated {
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.55;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}
.legal__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-line);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--plum);
  margin: 2.5rem 0 0.85rem;
  letter-spacing: -0.005em;
}
.legal p, .legal ul {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.legal ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.legal ul li {
  margin-bottom: 0.4rem;
  list-style: disc;
}
.legal a {
  color: var(--plum);
  border-bottom: 1px dotted var(--gold);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.legal a:hover {
  color: var(--gold);
  border-bottom-color: var(--plum);
}
.legal__nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-line);
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.85;
}
.legal__nav a { white-space: nowrap; }

/* ════════════════════════════════════════════════════════════════════
   v3 POLISH PASS — Section transitions, ornaments, scroll motion,
   editorial photo treatment. No HTML structure changes.
   ════════════════════════════════════════════════════════════════════ */

/* ── Section transitions (no hard edges) ──────────────────────────────
   Section colour map (top to bottom):
     hero          → plum
     vsl           → cream
     how           → cream  (no transition needed; same colour)
     roster        → plum
     services      → cream
     apply-bleed   → photo bleed
     apply-cta     → cream
     footer        → plum-deep

   Transitions:
     hero → vsl       : tonal wash (plum → cream)
     how → roster     : ornament (gold hairline + diamond) on plum-side
     roster → services: tonal wash (plum → cream via mauve)
     services → bleed : photo bleed (image straddles boundary)
     bleed → apply    : tonal wash from photo into cream
     apply → footer   : tonal wash (cream → plum-deep)
   ─────────────────────────────────────────────────────────────────── */

/* Wash from hero (plum) into VSL (cream) */
.vsl::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--plum) 0%,
    rgba(61, 31, 46, 0.6) 30%,
    rgba(232, 201, 192, 0.15) 75%,
    var(--cream) 100%
  );
}

/* Ornament between How It Works (cream) → Roster (plum) */
.roster::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--plum) 100%);
}
.roster::after {
  content: "◆";
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 10px;
  background: linear-gradient(to bottom,
    rgba(242, 232, 220, 0.95) 0%,
    rgba(61, 31, 46, 0.95) 100%);
  padding: 4px 14px;
  z-index: 2;
  letter-spacing: 0;
}

/* Wash from Roster (plum) → Services (cream) */
.section--services::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--plum) 0%,
    rgba(61, 31, 46, 0.5) 35%,
    rgba(198, 172, 170, 0.2) 75%,
    var(--cream) 100%
  );
}

/* Apply bleed band — frameless landscape image, fades into cream both sides */
.apply-bleed {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  z-index: 2;
}
.apply-bleed img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center 60%;
}
.apply-bleed::before,
.apply-bleed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.apply-bleed::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream), transparent);
}
.apply-bleed::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cream), transparent);
}

/* Apply CTA section: cream → no top transition needed (bleed handles it) */
.section--apply-cta::before { display: none; }
.section--apply-cta::after { display: none; }

/* Footer transition: cream → plum-deep */
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  inset: -60px 0 auto 0;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(42, 19, 32, 0.85) 80%,
    var(--plum-deep) 100%
  );
}

/* ── Editorial photo treatment ────────────────────────────────────────
   In-section photos get a 2px plum hairline frame + film grain overlay.
   Hero / bleed photos remain frameless.
   ─────────────────────────────────────────────────────────────────── */

.roster__image-wrap {
  border: 2px solid var(--plum);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(61, 31, 46, 0.06);
}
.roster__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: multiply;
}

/* ── Photo placeholders removed — real photography is now in place ── */

/* ── Scroll-reveal motion (IntersectionObserver-driven) ───────────────
   Each element starts hidden + offset; .is-visible reveals with timing
   per the brief. Stagger via per-element delay vars.
   ─────────────────────────────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="eyebrow"]  { transition-duration: 400ms; transform: translateY(8px); }
[data-reveal="heading"]  { transition-duration: 600ms; --reveal-delay: 120ms; }
[data-reveal="body"]     { transition-duration: 500ms; --reveal-delay: 220ms; }
[data-reveal="image"]    {
  transition-duration: 800ms;
  --reveal-delay: 300ms;
  clip-path: inset(0 100% 0 0);
  transform: none;
}
[data-reveal="image-r"] {
  transition-duration: 800ms;
  --reveal-delay: 300ms;
  clip-path: inset(0 0 0 100%);
  transform: none;
}
[data-reveal="hairline"] {
  transition-duration: 700ms;
  --reveal-delay: 500ms;
  transform: scaleX(0);
  transform-origin: left center;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}
[data-reveal="hairline"].is-visible {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="image"],
  [data-reveal="image-r"],
  [data-reveal="hairline"] {
    opacity: 0;
    transform: none;
    clip-path: none;
    transition: opacity 200ms ease;
    transition-delay: 0ms;
  }
  [data-reveal].is-visible { opacity: 1; }
}

/* Position context for transition pseudo-elements */
.hero, .vsl, .section, .roster, .apply-bleed { position: relative; }
