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

:root {
  --black:        #080808;
  --dark:         #111111;
  --cream:        #F5F5F5;
  --cream-dim:    #AAAAAA;
  --purple:       #8B5A8A;
  --purple-light: #A87BA7;
  --purple-faint: rgba(139, 90, 138, 0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── Scroll Progress Bar ────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--purple), var(--purple-light));
  z-index: 9999;
  pointer-events: none;
  transform-origin: left center;
}

/* ─── Custom Cursor (fine pointer / mouse only) ──── */
@media (pointer: fine) {
  body { cursor: none; }
  #cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    position: fixed;
    width: 38px; height: 38px;
    border: 1px solid var(--purple-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
  }
}

/* ─── Navigation ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(139, 90, 138, 0.15);
}

.nav-logo {
  width: 64px; height: 64px;
  opacity: 0; transform: translateY(-15px);
  flex-shrink: 0;
  will-change: transform, opacity;
}
.nav-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  filter: brightness(0.38);
  will-change: transform;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
}
.hero-slide:first-child { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.15) 0%,
    rgba(8,8,8,0.0) 35%,
    rgba(8,8,8,0.55) 75%,
    rgba(8,8,8,1.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-logo {
  width: 170px; height: 170px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  will-change: transform, opacity;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }

.hero-tagline {
  font-size: clamp(0.76rem, 1.4vw, 0.92rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--purple-light);
  opacity: 1; /* Visible immediately for LCP — GSAP overrides this if/when it loads */
}

.hero-divider {
  width: 50px; height: 1px;
  background: var(--purple);
  margin: 1.4rem auto;
  opacity: 0;
  transform-origin: left;
}

.hero-name {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
}

.hero-sub {
  margin-top: 1rem;
  font-size: clamp(0.74rem, 1.1vw, 0.86rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem;
  z-index: 2;
  opacity: 0;
}
.scroll-cue span {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ─── Statement ──────────────────────────────────── */
.statement {
  padding: 9rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  font-size: 0.76rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
}
.statement-quote {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 2rem;
}
.purple-rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin: 0 auto 2rem;
}
.statement-body {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Selected Clients ───────────────────────────── */
.clients {
  padding: 2rem 2rem 7rem;
  text-align: center;
}
.clients .section-label { margin-bottom: 1.4rem; }
.clients-rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin: 0 auto 2.5rem;
}
.clients-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 3rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}
.clients-list li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color 0.35s ease;
  position: relative;
}
.clients-list li + li::before {
  content: "·";
  color: var(--purple);
  position: absolute;
  left: -1.65rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.7;
}
.clients-list li:hover { color: var(--cream); }
@media (max-width: 640px) {
  .clients-list { gap: 1rem 1.8rem; }
  .clients-list li { font-size: 1.1rem; }
  .clients-list li + li::before { left: -1rem; }
}

/* ─── Credentials (PPA, affiliations) ───────────── */
.credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--purple-faint);
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.credentials-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.credentials-link {
  display: inline-block;
  line-height: 0;
}
.credential-logo {
  height: 130px;
  width: auto;
  max-width: 100%;
  opacity: 0.82;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.credentials-link:hover .credential-logo {
  opacity: 1;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .credentials { margin-top: 2.5rem; padding-top: 2rem; }
  .credential-logo { height: 100px; }
}

/* ─── Showcase ───────────────────────────────────── */
.showcase {
  padding: 2rem 0 7rem;
}
.showcase-header {
  padding: 0 3rem;
  margin-bottom: 3.5rem;
}
.section-title {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 48vh 48vh;
  gap: 3px;
}
.sc-item {
  position: relative;
  overflow: hidden;
}
.sc-item.tall { grid-row: 1 / 3; }

.sc-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.88);
}
.sc-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.sc-item .reveal-mask {
  position: absolute; inset: 0;
  background: var(--black);
  transform-origin: left center;
  z-index: 2;
}

/* ─── Genres ─────────────────────────────────────── */
.genres {
  padding: 7rem 2rem;
}
.genres-header {
  text-align: center;
  margin-bottom: 5rem;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 1440px;
  margin: 0 auto;
}

.genre-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.genre-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter   0.85s ease;
  filter: brightness(0.55);
}
.genre-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.38);
}

.genre-accent {
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--purple);
  z-index: 3;
  transition: height 0.55s ease;
}
.genre-card:hover .genre-accent { height: 100%; }

.genre-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.0) 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2.2rem 2.5rem;
  z-index: 2;
}

.genre-num {
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.genre-title {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
  transform: translateY(14px);
  transition: transform 0.45s ease 0.08s;
}
.genre-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease 0.16s, transform 0.45s ease 0.16s;
}
.genre-cta::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--purple);
  transition: width 0.35s ease;
}
.genre-card:hover .genre-num,
.genre-card:hover .genre-cta  { opacity: 1; transform: translateY(0); }
.genre-card:hover .genre-title { transform: translateY(0); }
.genre-card:hover .genre-cta::after { width: 52px; }

/* ─── Quality Statement ──────────────────────────── */
.quality {
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.quality-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.quality-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}
.quality-image .reveal-mask {
  position: absolute; inset: 0;
  background: var(--black);
  transform-origin: top center;
  z-index: 2;
}
.quality-frame {
  position: absolute;
  top: 1.2rem; left: 1.2rem; right: -1.2rem; bottom: -1.2rem;
  border: 1px solid var(--purple-faint);
  pointer-events: none;
}
.quality-text .section-label { margin-bottom: 1.5rem; }
.quality-heading {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 2rem;
}
.quality-body {
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  line-height: 2;
  color: var(--cream-dim);
}
.quality-body + .quality-body { margin-top: 1.2rem; }
.quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(139, 90, 138, 0.4);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.quality-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* ─── Rates / Investment ─────────────────────────── */
.rates {
  padding: 8rem 2rem;
  background: var(--black);
  text-align: center;
}
.rates-header { max-width: 720px; margin: 0 auto 4rem; }
.rates-header .section-label { margin-bottom: 1rem; }
.rates-header .section-title { margin-bottom: 1.4rem; }
.rates-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto;
}
.rates-rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin: 2rem auto 0;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.rate-card {
  position: relative;
  padding: 2.4rem 1.8rem 2.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--purple-faint);
  text-align: left;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.rate-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--purple);
  transition: width 0.4s ease;
}
.rate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 90, 138, 0.4);
  background: rgba(255, 255, 255, 0.035);
}
.rate-card:hover::before { width: 64px; }

.rate-genre {
  font-family: 'Poiret One', Helvetica, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}
.rate-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.rate-amount {
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-left: 0.4rem;
}
.rate-detail {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream-dim);
}

.rates-footnote {
  max-width: 720px;
  margin: 4rem auto 0;
  text-align: center;
}
.rates-footnote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rates { padding: 6rem 1.5rem; }
  .rates-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .rate-card { padding: 2rem 1.5rem 1.8rem; }
  .rate-amount { font-size: 1.75rem; }
}

/* ─── Testimonials ───────────────────────────────── */
.testimonials {
  padding: 8rem 2rem;
  background: var(--dark);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  border: 1px solid rgba(139, 90, 138, 0.2);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  transform: translateY(30px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--purple-faint);
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg {
  width: 14px; height: 14px;
  fill: var(--purple-light);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  flex: 1;
}
.testimonial-meta {
  border-top: 1px solid rgba(139, 90, 138, 0.15);
  padding-top: 1.2rem;
}
.testimonial-name {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.3rem;
}
.testimonial-context {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
}
.testimonials-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.testimonials-cta a {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 90, 138, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.testimonials-cta a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

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

/* ─── From the Journal ───────────────────────────── */
.journal {
  padding: 8rem 2rem 7rem;
  background: var(--black);
  text-align: center;
}
.journal-header { max-width: 720px; margin: 0 auto 4rem; }
.journal-header .section-label { margin-bottom: 1rem; }
.journal-header .section-title { margin-bottom: 1.4rem; }
.journal-rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin: 1.4rem auto 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.journal-card {
  display: block;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--purple-faint);
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.journal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 90, 138, 0.45);
  background: rgba(255, 255, 255, 0.035);
}

.journal-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark);
}
.journal-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.78) saturate(0.95);
}
.journal-card:hover .journal-card-image img {
  transform: scale(1.04);
  filter: brightness(0.92) saturate(1);
}

.journal-card-body {
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
}
.journal-card-body::before {
  content: "";
  position: absolute;
  top: 0; left: 1.8rem;
  width: 32px; height: 1px;
  background: var(--purple);
  transition: width 0.4s ease;
}
.journal-card:hover .journal-card-body::before { width: 64px; }

.journal-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin: 0.5rem 0 1rem;
}
.journal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.journal-excerpt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cream-dim);
  margin-bottom: 1.6rem;
}
.journal-cta {
  display: inline-block;
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  position: relative;
  padding-bottom: 4px;
}
.journal-cta::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.4s ease;
}
.journal-card:hover .journal-cta { color: var(--cream); }
.journal-card:hover .journal-cta::after { width: 100%; }

@media (max-width: 900px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
}
@media (max-width: 600px) {
  .journal { padding: 6rem 1.4rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-body { padding: 1.6rem 1.4rem 1.8rem; }
  .journal-card-body::before { left: 1.4rem; }
  .journal-title { font-size: 1.3rem; }
}

/* ─── CTA ────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta-sub {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  margin-bottom: 3.5rem;
}
.cta-btn {
  display: inline-block;
  padding: 1rem 3.2rem;
  border: 1px solid var(--purple);
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--purple);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.cta-btn:hover::before { transform: translateX(0); }
.cta-btn:hover { color: #fff; }

/* ─── CTA Dual Pathways ──────────────────────────── */
.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: left;
}
.cta-path {
  position: relative;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(139, 90, 138, 0.35);
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.cta-path:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
}
.cta-path-b2b {
  border-color: rgba(139, 90, 138, 0.7);
}
.cta-path-b2b::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--purple);
}
.cta-path-label {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
}
.cta-path-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.cta-path-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.cta-path-list li {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--cream-dim);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.55rem;
}
.cta-path-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--purple);
}
.cta-path-body {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 2rem;
}
.cta-path-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.85rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}
.cta-btn-alt {
  border-color: rgba(139, 90, 138, 0.5);
}
@media (max-width: 820px) {
  .cta-paths {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .cta-path { padding: 2rem 1.6rem; }
  .cta-path-heading { font-size: 1.6rem; }
}

/* ─── Contact Form ───────────────────────────────── */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139, 90, 138, 0.3);
  color: var(--cream);
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(170,170,170,0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B5A8A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark);
  color: var(--cream);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  align-self: center;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(139, 90, 138, 0.4);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  text-align: center;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  padding: 0 3rem;
  border-top: 1px solid rgba(139, 90, 138, 0.25);
  position: relative;
}
/* Purple accent line at very top */
footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 1px;
  background: var(--purple);
}

/* Top row: logo · tagline · social */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.8rem 0 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo {
  width: 52px; height: 52px;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s;
}
.footer-logo:hover { opacity: 0.75; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.6;
}
.footer-tagline strong {
  display: block;
  font-family: 'Poiret One', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-social a {
  color: var(--cream-dim);
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}
.footer-social a:hover {
  color: var(--purple-light);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* Bottom row: copyright · links */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 2.2rem;
  border-top: 1px solid rgba(139, 90, 138, 0.1);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(170, 170, 170, 0.55);
}
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.footer-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.3s ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-links a:hover::after { width: 100%; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .quality { grid-template-columns: 1fr; gap: 3rem; }
  /* Keep portrait ratio on tablet/mobile — 16/9 was too wide and cropped heads */
  .quality-image { aspect-ratio: 4/3; }
  .quality-image img { object-position: center top; }
  .quality-frame { display: none; }
}

/* Blog mobile overlay — hidden on desktop, shown via mobile media query below */
.mobile-menu-overlay { display: none; }

@media (max-width: 768px) {
  nav { padding: 1.4rem 1.4rem; }
  nav.scrolled { padding: 0.9rem 1.4rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(8, 8, 8, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; letter-spacing: 0.32em; color: var(--cream); }

  /* Hide the desktop nav list on blog pages — mobile overlay handles it */
  .nav-links--static { display: none; }

  /* ── Blog page mobile overlay menu ───────────────── */
  .mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(8, 8, 8, 0.97);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .mobile-menu-overlay.open { transform: translateX(0); }
  .mobile-menu-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .mobile-menu-list a {
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Poiret One', sans-serif;
    transition: color 0.3s;
  }
  .mobile-menu-list a:hover { color: var(--purple-light); }

  .hero-logo { width: 120px; height: 120px; }

  .showcase-grid {
    grid-template-columns: 1fr;
    /* Taller rows give object-fit: cover enough room to show subjects without heavy cropping */
    grid-template-rows: 72vw 72vw 72vw;
  }
  .sc-item.tall { grid-row: auto; }
  /* Bottom showcase image — anchor to top so head stays in frame */
  .sc-item:last-child img { object-position: center top; }

  .genres-grid { grid-template-columns: 1fr; }
  .genre-card { aspect-ratio: 16/10; }
  .genre-num, .genre-cta { opacity: 1; transform: translateY(0); }
  .genre-title { transform: translateY(0); }

  .showcase-header,
  .genres { padding-left: 1.2rem; padding-right: 1.2rem; }
  .quality { padding: 4rem 1.2rem; }

  footer { padding: 0 1.4rem; }
  .footer-top    { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .footer-brand  { flex-direction: column; align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
}

/* ─── Blog / Article pages ────────────────────────── */
.article-page { background: var(--black); color: var(--cream); }

/* Static nav variant for article pages (no scroll fade) */
.nav-static {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 90, 138, 0.15);
}
.nav-logo--link { display: block; opacity: 1; transform: none; }
.nav-logo--link img { width: 100%; height: 100%; object-fit: contain; }
.nav-links--static {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}
.nav-links--static li a {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links--static li a:hover { color: var(--cream); }

/* External-link arrow (Galleries link) */
.nav-arrow {
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.85em;
  color: var(--purple-light);
  transform: translateY(-1px);
  transition: transform 0.3s ease, color 0.3s ease;
}
.nav-external:hover .nav-arrow {
  color: var(--cream);
  transform: translate(2px, -3px);
}

/* Article hero */
.article-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.04);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.65) 60%,
    rgba(8,8,8,0.95) 100%
  );
  pointer-events: none;
}
.article-hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.article-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
}
.article-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.4rem;
  letter-spacing: -0.005em;
}
.article-meta {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.86);
}
.article-body p {
  margin: 0 0 1.5em;
}
.article-lede {
  font-size: 1.32rem !important;
  line-height: 1.65 !important;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 2em !important;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--cream);
  margin: 2.6em 0 0.8em;
  line-height: 1.25;
  letter-spacing: -0.005em;
  position: relative;
  padding-top: 1.5rem;
}
.article-body h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 1px;
  background: var(--purple);
}
.article-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
  margin: 2.2em 0 0.7em;
  line-height: 1.3;
}
.article-body strong {
  color: var(--cream);
  font-weight: 500;
}
.article-body em {
  font-style: italic;
  color: rgba(245, 245, 245, 0.95);
}
.article-body a {
  color: var(--purple-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.article-body a:hover { color: var(--cream); }

.article-list {
  margin: 0 0 1.6em 1.4em;
  padding: 0;
}
.article-list li {
  margin: 0 0 0.7em;
  padding-left: 0.4em;
  line-height: 1.7;
}
.article-list--numbered { list-style: decimal; }
.article-list:not(.article-list--numbered) { list-style: none; }
.article-list:not(.article-list--numbered) li {
  position: relative;
  padding-left: 1.4em;
}
.article-list:not(.article-list--numbered) li::before {
  content: "·";
  color: var(--purple);
  position: absolute;
  left: 0;
  font-size: 1.4em;
  line-height: 1;
}
.article-list--numbered li::marker {
  color: var(--purple-light);
  font-family: 'Poiret One', sans-serif;
}

/* Closing CTA inside article */
.article-cta {
  margin: 4rem 0 1rem;
  padding: 3rem 2.2rem;
  background: rgba(139, 90, 138, 0.06);
  border: 1px solid var(--purple-faint);
  border-left: 2px solid var(--purple);
  text-align: center;
}
.article-cta-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0 0 0.8rem;
}
.article-cta-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 1.2rem;
  line-height: 1.3;
}
.article-cta-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.78);
  margin: 0 auto 1.8rem;
  max-width: 520px;
}

@media (max-width: 720px) {
  .article-hero { min-height: 44vh; padding: 5rem 1.4rem 3rem; }
  .article-body { padding: 3.5rem 1.4rem 3rem; font-size: 1.1rem; }
  .article-lede { font-size: 1.2rem !important; }
  .article-body h2 { font-size: 1.55rem; }
  .article-body h3 { font-size: 1.2rem; }
  .nav-links--static { display: none; }
  .nav-links--static li a { font-size: 0.7rem; letter-spacing: 0.18em; }
  .article-cta { padding: 2.2rem 1.4rem; }
  .article-cta-heading { font-size: 1.35rem; }
}

/* ───────────────────────────────────────────────────────
   THE REEL — dance.html cinematic showcase page
   ─────────────────────────────────────────────────────── */
.reel-page { background: var(--black); color: var(--cream); overflow-x: hidden; }
.reel-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* ── Hero ──────────────────────────────────────────── */
.reel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.reel-hero-bg {
  position: absolute;
  inset: -8% 0 0 0;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.45) saturate(0.92) contrast(1.05);
  will-change: transform;
}
.reel-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,8,8,0) 0%, rgba(8,8,8,0.55) 70%, rgba(8,8,8,0.95) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.6) 100%);
}
.reel-hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1100px;
}
.reel-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.6em;
}
.reveal-word { display: inline-block; }
.reel-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 17vw, 14rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  align-items: center;
}
.reel-h1-line { display: flex; gap: 0.04em; }
.reel-h1-line span { display: inline-block; }
.reel-h1-line:nth-child(2) {
  font-style: italic;
  color: var(--purple-light);
}
.reel-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.reel-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--cream-dim);
}
.reel-scroll-cue span {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: block;
}
.reel-scroll-cue .scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  margin: 0 auto;
  animation: reelScrollPulse 2.4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes reelScrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ── Statement ─────────────────────────────────────── */
.reel-statement {
  padding: 12rem 2rem 10rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.reel-statement-eyebrow {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2.5rem;
}
.reel-statement-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  line-height: 1.45;
  color: var(--cream);
  margin: 0 auto 2rem;
  max-width: 800px;
  letter-spacing: -0.005em;
}
.reel-statement-attr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

/* ── Prelude ───────────────────────────────────────── */
.reel-prelude {
  padding: 6rem 2rem 8rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  border-top: 1px solid rgba(139, 90, 138, 0.18);
  padding-top: 5rem;
}
.reel-prelude-text { max-width: 720px; }
.reel-prelude-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
}
.reel-prelude-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.reel-prelude-heading .line {
  display: block;
  overflow: hidden;
}
.reel-prelude-heading .line:nth-child(2) { color: var(--cream-dim); font-style: italic; }
.reel-prelude-heading .line:nth-child(3) { color: var(--purple-light); }

.reel-prelude-marks {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-family: 'Poiret One', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--cream-dim);
  flex-shrink: 0;
}
.prelude-mark { display: inline-block; }
.prelude-mark:nth-child(2) { color: var(--purple); }

/* ── THE REEL — layered cinematic scroll ───────────── */
.reel-cine {
  position: relative;
  /* Section is taller than viewport — frames at varied tops live across this height */
  height: 720vh;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

/* Sticky meta — pins to upper-left of viewport while inside the section */
.cine-meta {
  position: sticky;
  top: 6.5rem;
  margin-left: 4vw;
  z-index: 5;
  max-width: 360px;
  pointer-events: none;
}
.cine-meta-num {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.9rem;
}
.cine-meta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.cine-meta-progress {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
}

/* Background ghost typography layer */
.cine-ghosts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.cine-ghost {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 245, 0.05);
  white-space: nowrap;
  user-select: none;
  will-change: transform;
}
.cine-ghost--small {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(168, 123, 167, 0.2);
}

/* Frames layer */
.cine-frames {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cine-frame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* width set per orientation class */
  pointer-events: auto;
}
.cine-frame.fp { width: 32vh; }
.cine-frame.fl { width: 56vh; }
.cine-frame.fs { width: 44vh; }
.cine-frame.fc { width: 84vh; }

.cine-frame-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}

.cine-frame-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}
.cine-frame-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: filter 0.4s ease;
  will-change: transform;
}
.cine-frame:hover .cine-frame-image img { filter: brightness(1.05) saturate(1); }

.cine-frame.fp .cine-frame-image { aspect-ratio: 3 / 4; }
.cine-frame.fl .cine-frame-image { aspect-ratio: 16 / 10; }
.cine-frame.fs .cine-frame-image { aspect-ratio: 1 / 1; }
.cine-frame.fc .cine-frame-image { aspect-ratio: 21 / 9; }

.cine-frame-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.2rem;
}
.cine-frame-num {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  color: var(--purple);
}
.cine-frame-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.cine-frame-context {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* End-of-reel marker */
.cine-end {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
.cine-end-eyebrow {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
}
.cine-end-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* ── Pause ─────────────────────────────────────────── */
.reel-pause {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.reel-pause-image {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.85);
  will-change: transform;
}
.reel-pause-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.7) 60%, rgba(8,8,8,0.95) 100%);
}
.reel-pause-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 880px;
}
.reel-pause-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
}
.reel-pause-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* ── Closing ───────────────────────────────────────── */
.reel-closing {
  padding: 10rem 2rem 8rem;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.reel-closing .section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2.5rem;
}
.reel-closing-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 4rem;
}
.reel-closing-heading .line { display: block; }
.reel-closing-heading em { font-style: italic; color: var(--cream-dim); }

.reel-closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.reel-closing-secondary {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.reel-closing-secondary:hover { color: var(--cream); }

/* ── SVG filter container (off-screen) ──────────── */
.reel-svg-filters {
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}

/* ── Hover distortion: applied only when frame is hovered ── */
.cine-frame .cine-frame-image img { will-change: filter; }
.cine-frame.is-hovered .cine-frame-image img {
  filter: url(#reel-distort);
}

/* ── Cursor label "Drag ↔" while inside the reel ── */
#cursor-label {
  position: fixed;
  top: 0; left: 0;
  font-family: 'Poiret One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(139, 90, 138, 0.45);
  padding: 0.55rem 0.95rem;
  pointer-events: none;
  opacity: 0;
  z-index: 9997;
  transition: opacity 0.35s ease;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
#cursor-label span {
  margin-left: 0.35em;
  color: var(--purple-light);
}
#cursor-label.is-active { opacity: 0.92; }
body.is-dragging #cursor-label { opacity: 1; }
body.is-dragging #cursor-label span { animation: dragArrowShift 0.6s ease-in-out infinite alternate; }
@keyframes dragArrowShift {
  from { transform: translateX(-2px); }
  to   { transform: translateX(2px); }
}

/* Hide the label on touch devices — drag works natively, no cursor */
@media (pointer: coarse) {
  #cursor-label { display: none; }
}

/* ── Archive: full body of dance work ─────────────── */
.reel-archive {
  padding: 9rem 2rem 8rem;
  background: var(--black);
}
.archive-header {
  max-width: 920px;
  margin: 0 auto 5rem;
  text-align: center;
}
.archive-header .section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.4rem;
}
.archive-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.archive-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.archive-rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin: 1.6rem auto 1.6rem;
}
.archive-count {
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.archive-count #archive-count-num { color: var(--cream); }

/* Masonry-style mixed-orientation grid via CSS columns */
.archive-grid {
  column-count: 4;
  column-gap: 1rem;
  max-width: 1500px;
  margin: 0 auto;
}
.archive-item {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  background: var(--dark);
  border: 0;
  cursor: pointer;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.archive-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.88) saturate(0.95);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.archive-item-num {
  position: absolute;
  bottom: 0.7rem;
  left: 0.9rem;
  font-family: 'Poiret One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--cream);
  background: rgba(8, 8, 8, 0.75);
  padding: 0.4rem 0.65rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(3px);
}
.archive-item:hover img {
  filter: brightness(1.02) saturate(1);
  transform: scale(1.03);
}
.archive-item:hover .archive-item-num {
  opacity: 0.95;
  transform: translateY(0);
}
.archive-item:focus-visible { outline: 2px solid var(--purple-light); outline-offset: 2px; }

@media (max-width: 1100px) { .archive-grid { column-count: 3; } }
@media (max-width: 720px)  { .archive-grid { column-count: 2; column-gap: 0.6rem; } .archive-item { margin-bottom: 0.6rem; } }
@media (max-width: 420px)  { .archive-grid { column-count: 1; } }

/* ── Lightbox ──────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 4rem 5rem;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.lightbox-counter {
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poiret One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  color: var(--cream-dim);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.12);
  color: var(--cream);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  z-index: 2;
  padding: 0;
}
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-nav  { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 1.4rem; }
.lightbox-next { right: 1.4rem; }
.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--purple-light);
  background: rgba(139, 90, 138, 0.12);
}

@media (max-width: 720px) {
  .lightbox { padding: 4rem 1rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
  .lightbox-counter { bottom: -2rem; font-size: 0.7rem; }
}

/* ── Reel page responsive ──────────────────────────── */
@media (max-width: 900px) {
  /* On mobile: canvas degrades to a stacked vertical column */
  .reel-canvas-section {
    height: auto;
    padding: 4rem 1.4rem 6rem;
    cursor: default;
  }
  .canvas-stage {
    height: auto;
    overflow: visible;
    cursor: default;
  }
  .canvas-board {
    position: static;
    width: 100%;
    height: auto;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .canvas-meta {
    position: static;
    margin: 0 0 3rem;
    max-width: none;
  }
  .canvas-frame,
  .canvas-frame.fp,
  .canvas-frame.fl,
  .canvas-frame.fs,
  .canvas-frame.fc {
    position: static !important;
    width: 100% !important;
    inset: auto !important;
  }
  .canvas-frame.fp .canvas-frame-image { aspect-ratio: 3 / 4; }
  .canvas-frame.fl .canvas-frame-image { aspect-ratio: 16 / 10; }
  .canvas-frame.fs .canvas-frame-image { aspect-ratio: 1 / 1; }
  .canvas-frame.fc .canvas-frame-image { aspect-ratio: 16 / 10; }
  .canvas-axis,
  .canvas-label,
  .canvas-fin,
  .canvas-hint,
  .canvas-minimap { display: none; }
  .reel-prelude {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1.4rem 5rem;
  }
  .reel-statement { padding: 7rem 1.4rem 5rem; }
  .reel-closing { padding: 6rem 1.4rem 5rem; }
  .canvas-meta-num { margin-bottom: 0.6rem; }
}
