/* ============================================================
   INDRUS — components
   services · process · feature · quotes · gallery · forms
   founders · roster · repertoire · stats · contact · video
   ============================================================ */

/* image grade — keeps amateur photography in one cinematic world */
.graded {
  filter: brightness(0.9) saturate(0.9) contrast(1.05);
  transition: filter 1.1s var(--ease), transform 1.4s var(--ease);
}
.graded:hover { filter: brightness(1) saturate(1) contrast(1.02); }

/* no-JS safety net for staggered grid children */
html:not(.js) .svc-grid .svc,
html:not(.js) .process .step,
html:not(.js) .feature-img,
html:not(.js) .feature-body,
html:not(.js) .quotes .quote,
html:not(.js) .gallery > *,
html:not(.js) .founders .founder,
html:not(.js) .repertoire .rep-item,
html:not(.js) .roster .card,
html:not(.js) .stat-rail .stat {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hair); border: 1px solid var(--hair);
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--ink); padding: 38px 30px 32px;
  display: flex; flex-direction: column; min-height: 340px;
  position: relative; isolation: isolate;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--brass-dim));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.svc:hover { background: var(--charcoal); }
.svc:hover::before { transform: scaleX(1); }
.svc .num {
  font-family: var(--f-display); font-style: italic; font-size: 15px;
  color: var(--brass); margin-bottom: 30px;
  display: flex; align-items: center; gap: 10px;
}
.svc h3 {
  font-family: var(--f-display); font-size: 28px; font-weight: 400;
  line-height: 1.1; margin: 0 0 14px;
  transition: transform 0.5s var(--ease);
}
.svc:hover h3 { transform: translateX(4px); }
.svc p {
  font-size: 14px; line-height: 1.58; color: var(--ivory-mute);
  margin: 0 0 28px; flex: 1; font-weight: 300;
}
.svc .arrow-link { margin-top: auto; }

/* stagger children when grid reveals */
.svc-grid.reveal { opacity: 1; transform: none; filter: none; }
.svc-grid .svc {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease),
              background 0.5s var(--ease);
}
.svc-grid.reveal.in .svc { opacity: 1; transform: translateY(0); }
.svc-grid.reveal.in .svc:nth-child(1) { transition-delay: 0.05s; }
.svc-grid.reveal.in .svc:nth-child(2) { transition-delay: 0.13s; }
.svc-grid.reveal.in .svc:nth-child(3) { transition-delay: 0.21s; }
.svc-grid.reveal.in .svc:nth-child(4) { transition-delay: 0.29s; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
@media (max-width: 820px) { .process { grid-template-columns: 1fr; } }
.step {
  background: var(--ink); padding: 56px 38px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.5s var(--ease);
}
.step:hover { background: var(--charcoal); }
.step .step-no { display: none; }
.step h4 { font-family: var(--f-display); font-size: 26px; font-weight: 400; margin: 0; }
.step p { font-size: 14px; color: var(--ivory-mute); line-height: 1.6; margin: 0; max-width: 36ch; font-weight: 300; }

.process.reveal { opacity: 1; transform: none; filter: none; }
.process .step {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease),
              background 0.5s var(--ease);
}
.process.reveal.in .step { opacity: 1; transform: translateY(0); }
.process.reveal.in .step:nth-child(2) { transition-delay: 0.1s; }
.process.reveal.in .step:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   FEATURED ARTIST
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 84px); align-items: stretch;
}
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } }

.feature.reveal { opacity: 1; transform: none; filter: none; }
.feature-img {
  aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal);
  position: relative; box-shadow: var(--shadow-1);
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.feature.reveal.in .feature-img { opacity: 1; transform: translateY(0); }
.feature-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.9) saturate(0.9) contrast(1.05);
  transition: transform 1.5s var(--ease), filter 1.5s var(--ease);
}
.feature:hover .feature-img img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.feature-img .corner {
  position: absolute; top: 16px; left: 16px;
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory); background: rgba(11,9,8,0.6);
  padding: 9px 13px; border: 1px solid var(--hair-strong);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.feature-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(8px, 3vw, 40px) 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease) 0.14s, transform 1s var(--ease) 0.14s;
}
.feature.reveal.in .feature-body { opacity: 1; transform: translateY(0); }
.feature-body .name {
  font-family: var(--f-display); font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1; margin: 16px 0 8px; letter-spacing: -0.02em;
}
.feature-body .role {
  font-family: var(--f-display); font-style: italic; color: var(--brass);
  font-size: 20px; margin-bottom: 28px;
}
.feature-body .bio p {
  font-size: 16px; line-height: 1.66; color: var(--ivory-2);
  margin: 0 0 16px; font-weight: 300;
}
.feature-body .credits {
  margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px;
}
.feature-body .credits .ck { font-family: var(--f-display); font-style: italic; font-size: 18px; }
.feature-body .credits .cv {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-mute); margin-top: 5px; font-weight: 600;
}
.feature-body .feature-cta { margin-top: 32px; display: inline-flex; align-self: flex-start; }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hair); border: 1px solid var(--hair);
}
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--ink); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 220px; position: relative;
}
.quote .qmark {
  font-family: var(--f-display); font-style: italic; font-size: 64px;
  color: var(--brass); line-height: 0.5;
}
.quote blockquote {
  margin: 0; font-family: var(--f-display); font-size: 22px;
  font-style: italic; line-height: 1.32; color: var(--ivory);
}
.quote cite {
  margin-top: auto; font-style: normal; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-mute);
  font-weight: 600;
}
.quote.placeholder { background: var(--ink-2); }
.quote.placeholder blockquote { color: var(--ivory-dim); font-size: 18px; }
.quote.placeholder cite { color: var(--ivory-dim); }
.quote.placeholder .qmark { color: var(--brass-dim); }
.quote.placeholder::after {
  content: "Reserved"; position: absolute; bottom: 16px; right: 18px;
  font-size: 8.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim);
}

.quotes.reveal { opacity: 1; transform: none; filter: none; }
.quotes .quote {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.quotes.reveal.in .quote { opacity: 1; transform: translateY(0); }
.quotes.reveal.in .quote:nth-child(2) { transition-delay: 0.1s; }
.quotes.reveal.in .quote:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 1fr; gap: 8px;
}
.gallery-tile {
  position: relative; overflow: hidden;
  background: var(--charcoal); aspect-ratio: 4 / 5;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.86) saturate(0.86) contrast(1.06);
  transition: transform 1.3s var(--ease), filter 1.3s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.gallery-tile .label {
  position: absolute; left: 16px; bottom: 16px;
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory); text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  z-index: 2; transition: transform 0.5s var(--ease);
}
.gallery-tile:hover .label { transform: translateY(-3px); }
.gallery-tile.placeholder {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 5; border: 1px dashed var(--hair-2);
  background:
    repeating-linear-gradient(135deg, var(--charcoal), var(--charcoal) 14px,
      var(--charcoal-2) 14px, var(--charcoal-2) 28px);
}
.gallery-tile.placeholder span {
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim);
}
@media (max-width: 820px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}

.gallery.reveal { opacity: 1; transform: none; filter: none; }
.gallery > * {
  opacity: 0; transform: translateY(26px) scale(0.985);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.gallery.reveal.in > * { opacity: 1; transform: none; }
.gallery.reveal.in > *:nth-child(2) { transition-delay: 0.07s; }
.gallery.reveal.in > *:nth-child(3) { transition-delay: 0.14s; }
.gallery.reveal.in > *:nth-child(4) { transition-delay: 0.21s; }
.gallery.reveal.in > *:nth-child(5) { transition-delay: 0.28s; }
.gallery.reveal.in > *:nth-child(6) { transition-delay: 0.35s; }

/* ---- Showreel gallery — clean 3-up grid (homepage) ---- */
.gallery-showreel {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(300px, 32vw, 460px);
  gap: 10px;
}
.gallery-showreel .gallery-tile { aspect-ratio: auto; }
@media (max-width: 820px) {
  .gallery-showreel {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(220px, 44vw, 360px);
  }
  .gallery-showreel .gallery-tile:last-child {
    grid-column: 1 / -1; aspect-ratio: 16 / 9;
  }
}
@media (max-width: 520px) {
  .gallery-showreel { grid-template-columns: 1fr; grid-auto-rows: 72vw; }
  .gallery-showreel .gallery-tile:last-child { aspect-ratio: auto; }
}

/* ============================================================
   VIDEO — editorial player
   ============================================================ */
.vid-tile { position: relative; overflow: hidden; background: var(--charcoal); cursor: pointer; }
.vid-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-tile .vid-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 20px;
  background: linear-gradient(to top, rgba(11,9,8,0.82) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  pointer-events: none;
}
.vid-tile .vid-label {
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory); font-weight: 600;
}
.vid-tile .vid-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(241,233,218,0.45); background: rgba(11,9,8,0.4);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; cursor: pointer; flex-shrink: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.vid-tile .vid-btn:hover { border-color: var(--brass); background: var(--glow); transform: scale(1.08); }
.vid-tile .vid-btn svg { width: 12px; height: 12px; fill: var(--ivory); flex-shrink: 0; }
.vid-tile .vid-btn.is-playing svg.play-icon { display: none; }
.vid-tile .vid-btn.is-playing svg.pause-icon { display: block; }
.vid-tile .vid-btn svg.pause-icon { display: none; }

.vid-feature { position: relative; background: var(--charcoal); overflow: hidden; }
.vid-feature video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-feature .overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,9,8,0.32);
  transition: background 0.4s var(--ease), opacity 0.4s var(--ease);
  cursor: pointer;
}
.vid-feature .overlay:hover { background: rgba(11,9,8,0.14); }
.vid-feature .big-play {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(241,233,218,0.55); background: rgba(11,9,8,0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.45s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.vid-feature .overlay:hover .big-play { transform: scale(1.1); border-color: var(--brass); background: var(--glow); }
.vid-feature .big-play svg { width: 20px; height: 20px; fill: var(--ivory); margin-left: 3px; }
.vid-feature .vid-meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px;
  background: linear-gradient(to top, rgba(11,9,8,0.78) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.vid-feature .vid-meta .lbl {
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory); font-weight: 600;
}
.vid-feature .vid-meta .src {
  font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--brass);
}

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 84px); align-items: center;
}
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; } }
.about-split .pic {
  aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal);
  box-shadow: var(--shadow-1);
}
.about-split .pic img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9) saturate(0.9) contrast(1.05);
  transition: transform 1.5s var(--ease), filter 1.5s var(--ease);
}
.about-split .pic:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final-cta {
  background: var(--charcoal); border-top: 1px solid var(--hair);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(58% 80% at 50% 0%, var(--glow) 0%, rgba(201,165,94,0) 62%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
  padding-block: clamp(62px, 7vw, 112px);
}
@media (max-width: 900px) { .final-cta-inner { grid-template-columns: 1fr; } }
.final-cta h2 { margin: 16px 0 24px; }
.final-cta .lede { max-width: 50ch; margin-bottom: 36px; color: var(--ivory-mute); }

.cta-form {
  background: var(--ink); border: 1px solid var(--hair);
  padding: 38px 34px; box-shadow: var(--shadow-1);
}
.cta-form h4 { font-family: var(--f-display); font-size: 27px; font-weight: 400; margin: 0 0 8px; }
.cta-form .sub { color: var(--ivory-mute); font-size: 13px; margin-bottom: 26px; font-weight: 300; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cta-form .row.single { grid-template-columns: 1fr; }
@media (max-width: 480px) { .cta-form .row { grid-template-columns: 1fr; } }
.cta-form label {
  display: block; font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ivory-mute);
  margin-bottom: 9px; font-weight: 600;
}
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid var(--hair-strong);
  color: var(--ivory); font-family: var(--f-body); font-size: 16px;
  padding: 9px 0 11px; outline: none; border-radius: 0;
  caret-color: var(--brass);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: var(--ivory-dim); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  border-color: var(--brass);
}
.cta-form textarea { resize: vertical; min-height: 88px; }
.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23C9A55E' stroke-width='1.2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 0 center;
  padding-right: 24px; color: var(--ivory);
}
.cta-form select option { background: var(--ink); color: var(--ivory); }
.cta-form .actions {
  display: flex; gap: 16px; margin-top: 26px;
  align-items: center; flex-wrap: wrap;
}
.cta-form .or {
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-mute);
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.checklist li {
  padding-left: 30px; position: relative;
  font-size: 15px; color: var(--ivory-2); font-weight: 300; line-height: 1.5;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 16px; height: 1px; background: var(--brass);
}
.checklist li::after {
  content: ""; position: absolute; left: 14px; top: 8px;
  width: 5px; height: 5px; transform: rotate(45deg);
  border-top: 1px solid var(--brass); border-right: 1px solid var(--brass);
}

/* ============================================================
   SPLIT-2
   ============================================================ */
.split-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 84px); align-items: start;
}
@media (max-width: 820px) { .split-2 { grid-template-columns: 1fr; } }

/* ============================================================
   RESPONSIVE INNER-PAGE GRIDS
   ============================================================ */
.r-grid {
  display: grid; gap: 1px;
  background: var(--hair); border: 1px solid var(--hair);
}
.r-grid-2 { grid-template-columns: repeat(2, 1fr); }
.r-grid-3 { grid-template-columns: repeat(3, 1fr); }
.r-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .r-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .r-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .r-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .r-grid-4 { grid-template-columns: 1fr; } }

.r-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
@media (max-width: 820px) { .r-split { grid-template-columns: 1fr; gap: 38px; } }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 68px);
}
@media (max-width: 760px) { .founders { grid-template-columns: 1fr; } }
.founder .pic {
  aspect-ratio: 4 / 5; background: var(--charcoal); overflow: hidden;
  margin-bottom: 26px; position: relative; box-shadow: var(--shadow-1);
}
.founder .pic img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9) saturate(0.9) contrast(1.05);
  transition: transform 1.5s var(--ease), filter 1.5s var(--ease);
}
.founder .pic:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.founder .pic.placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--charcoal), var(--charcoal) 12px,
      var(--charcoal-2) 12px, var(--charcoal-2) 24px);
}
.founder .pic.placeholder::after {
  content: attr(data-name); font-family: var(--f-body); font-size: 9.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory-dim);
}
.founder h3 { font-family: var(--f-display); font-size: 40px; font-weight: 400; margin: 0 0 4px; }
.founder .role {
  font-family: var(--f-display); font-style: italic; color: var(--brass);
  font-size: 18px; margin-bottom: 18px;
}
.founder p { color: var(--ivory-2); font-size: 15px; line-height: 1.66; margin: 0 0 12px; font-weight: 300; }

.founders.reveal { opacity: 1; transform: none; filter: none; }
.founders .founder {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.founders.reveal.in .founder { opacity: 1; transform: translateY(0); }
.founders.reveal.in .founder:nth-child(2) { transition-delay: 0.12s; }

/* ============================================================
   REPERTOIRE
   ============================================================ */
.repertoire {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hair); border: 1px solid var(--hair);
}
@media (max-width: 760px) { .repertoire { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .repertoire { grid-template-columns: 1fr; } }
.rep-item {
  background: var(--ink); padding: 30px 28px;
  transition: background 0.5s var(--ease);
}
.rep-item:hover { background: var(--charcoal); }
.rep-item h5 {
  font-family: var(--f-display); font-size: 22px; font-weight: 400;
  margin: 0 0 9px;
}
.rep-item p { font-size: 13px; color: var(--ivory-mute); margin: 0; line-height: 1.55; font-weight: 300; }

.repertoire.reveal { opacity: 1; transform: none; filter: none; }
.repertoire .rep-item {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.5s var(--ease);
}
.repertoire.reveal.in .rep-item { opacity: 1; transform: translateY(0); }
.repertoire.reveal.in .rep-item:nth-child(2) { transition-delay: 0.07s; }
.repertoire.reveal.in .rep-item:nth-child(3) { transition-delay: 0.14s; }
.repertoire.reveal.in .rep-item:nth-child(4) { transition-delay: 0.21s; }
.repertoire.reveal.in .rep-item:nth-child(5) { transition-delay: 0.28s; }
.repertoire.reveal.in .rep-item:nth-child(6) { transition-delay: 0.35s; }
.repertoire.reveal.in .rep-item:nth-child(7) { transition-delay: 0.42s; }
.repertoire.reveal.in .rep-item:nth-child(8) { transition-delay: 0.49s; }
.repertoire.reveal.in .rep-item:nth-child(9) { transition-delay: 0.56s; }

/* ============================================================
   ROSTER
   ============================================================ */
.roster {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 820px) { .roster { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 520px) { .roster { grid-template-columns: 1fr; } }
.roster .card {
  background: var(--charcoal); border: 1px solid var(--hair);
  aspect-ratio: 3 / 4; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.roster .card:hover { border-color: var(--hair-strong); transform: translateY(-4px); }
.roster .card img { transition: transform 1.4s var(--ease); }
.roster .card:hover img { transform: scale(1.05); }
.roster .card.placeholder {
  background:
    repeating-linear-gradient(135deg, var(--charcoal), var(--charcoal) 12px,
      var(--charcoal-2) 12px, var(--charcoal-2) 24px);
}
.roster .card .meta { position: relative; z-index: 2; width: 100%; }
.roster .card h4 { font-family: var(--f-display); font-size: 24px; font-weight: 400; margin: 0 0 4px; }
.roster .card .tag {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-mute); font-weight: 600;
}
.roster .card.placeholder .badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-dim); border: 1px solid var(--hair-2); padding: 7px 11px;
}

.roster.reveal { opacity: 1; transform: none; filter: none; }
.roster .card {
  opacity: 0; transform: translateY(26px);
}
.roster.reveal.in .card { opacity: 1; transform: translateY(0); }
.roster.reveal.in .card:nth-child(1) { transition-delay: 0.04s; }
.roster.reveal.in .card:nth-child(2) { transition-delay: 0.1s; }
.roster.reveal.in .card:nth-child(3) { transition-delay: 0.16s; }
.roster.reveal.in .card:nth-child(4) { transition-delay: 0.22s; }
.roster.reveal.in .card:nth-child(5) { transition-delay: 0.28s; }
.roster.reveal.in .card:nth-child(6) { transition-delay: 0.34s; }
.roster.reveal.in .card:nth-child(7) { transition-delay: 0.40s; }
.roster.reveal.in .card:nth-child(8) { transition-delay: 0.46s; }
.roster.reveal.in .card:nth-child(9) { transition-delay: 0.52s; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-mute); margin: 0 0 8px;
}
.contact-detail p { margin: 0 0 24px; font-family: var(--f-display); font-size: 24px; line-height: 1.3; }
.contact-detail p a:hover { color: var(--brass); }

/* ============================================================
   STAT RAIL
   ============================================================ */
.stat-rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hair); border: 1px solid var(--hair);
}
@media (max-width: 760px) { .stat-rail { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--ink); padding: 36px 28px; transition: background 0.5s var(--ease); }
.stat:hover { background: var(--charcoal); }
.stat .v { font-family: var(--f-display); font-size: 38px; line-height: 1; margin-bottom: 11px; }
.stat .v .em { font-style: italic; color: var(--brass); }
.stat .k {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory-mute); font-weight: 600;
}

.stat-rail.reveal { opacity: 1; transform: none; filter: none; }
.stat-rail .stat {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.5s var(--ease);
}
.stat-rail.reveal.in .stat { opacity: 1; transform: translateY(0); }
.stat-rail.reveal.in .stat:nth-child(2) { transition-delay: 0.08s; }
.stat-rail.reveal.in .stat:nth-child(3) { transition-delay: 0.16s; }
.stat-rail.reveal.in .stat:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   VERIFIED BADGE — a brass seal, not Instagram blue
   ============================================================ */
.verified {
  display: inline-flex; vertical-align: middle;
  width: 0.62em; height: 0.62em; margin-left: 0.22em;
  transform: translateY(-0.06em);
}
.verified svg { width: 100%; height: 100%; overflow: visible; }
.verified svg path:first-child { fill: var(--brass); }
.verified svg .tick {
  fill: none; stroke: var(--ink); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   SELECTED ENGAGEMENTS — an editorial ledger
   ============================================================ */
.engagements { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.engagements .eng {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--hair);
  position: relative;
}
.engagements .eng:last-child { border-bottom: 1px solid var(--hair); }
.engagements .eng::after {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent 60%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.engagements .eng:hover::after { transform: scaleX(1); }
.eng-no {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px); color: var(--brass); line-height: 1;
}
.eng-body h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.12; margin: 0 0 8px;
  transition: transform 0.5s var(--ease);
}
.engagements .eng:hover .eng-body h3 { transform: translateX(5px); }
.eng-body p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ivory-mute); font-weight: 300; max-width: 54ch; }
.eng-meta { text-align: right; display: flex; flex-direction: column; gap: 5px; }
.eng-venue { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-2); font-weight: 500; }
.eng-year { font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--ivory-mute); }
@media (max-width: 720px) {
  .engagements .eng { grid-template-columns: 40px 1fr; gap: 14px 18px; }
  .eng-meta { grid-column: 2; text-align: left; flex-direction: row; gap: 14px; align-items: baseline; margin-top: 4px; }
  .eng-year { font-size: 16px; }
}
.engagements.reveal { opacity: 1; transform: none; filter: none; }
.engagements .eng { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.engagements.reveal.in .eng { opacity: 1; transform: translateY(0); }
.engagements.reveal.in .eng:nth-child(2) { transition-delay: 0.08s; }
.engagements.reveal.in .eng:nth-child(3) { transition-delay: 0.16s; }
.engagements.reveal.in .eng:nth-child(4) { transition-delay: 0.24s; }
.engagements.reveal.in .eng:nth-child(5) { transition-delay: 0.32s; }

/* ---- proof strip: animated counters ---- */
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hair); border: 1px solid var(--hair);
  margin-top: clamp(40px, 5vw, 68px);
}
@media (max-width: 720px) { .proof-strip { grid-template-columns: 1fr 1fr; } }
.proof {
  background: var(--ink); padding: clamp(26px, 3vw, 38px) 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.5s var(--ease);
}
.proof:hover { background: var(--charcoal); }
.pf-num {
  font-family: var(--f-display); font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.9; color: var(--ivory); letter-spacing: -0.01em;
}
.pf-num.pf-static { color: var(--brass); font-style: italic; }
.pf-lbl { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-mute); font-weight: 600; line-height: 1.5; }
.proof-strip.reveal { opacity: 1; transform: none; filter: none; }
.proof-strip .proof { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.5s var(--ease); }
.proof-strip.reveal.in .proof { opacity: 1; transform: translateY(0); }
.proof-strip.reveal.in .proof:nth-child(2) { transition-delay: 0.08s; }
.proof-strip.reveal.in .proof:nth-child(3) { transition-delay: 0.16s; }
.proof-strip.reveal.in .proof:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   VENUE BAND — a quiet typographic ribbon
   ============================================================ */
.venue-band {
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  background: var(--ink-2); padding: clamp(34px, 4vw, 52px) 0;
}
.venue-eyebrow {
  display: block; text-align: center;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim); font-weight: 600; margin-bottom: 26px;
}
.venue-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 22px;
}
.venue-row span {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(17px, 2.1vw, 26px); color: var(--ivory-2);
  white-space: nowrap; transition: color 0.4s var(--ease);
}
.venue-row:hover span { color: var(--ivory-dim); }
.venue-row span:hover { color: var(--brass); }
.venue-row i { width: 5px; height: 5px; transform: rotate(45deg); background: var(--brass); opacity: 0.5; flex-shrink: 0; }

/* ============================================================
   INSTAGRAM BRIDGE
   ============================================================ */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 820px) { .ig-grid { grid-template-columns: 1fr 1fr; } }
.ig-tile {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--charcoal); display: block;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(0.82) saturate(0.85) contrast(1.06);
  transition: transform 1.3s var(--ease), filter 1.3s var(--ease);
}
.ig-tile:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }
.ig-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,8,0.78) 0%, rgba(11,9,8,0) 52%);
}
.ig-glyph {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 22px; height: 22px; border: 1.4px solid var(--ivory);
  border-radius: 6px; opacity: 0.85;
  transition: opacity 0.4s var(--ease), border-color 0.4s var(--ease);
}
.ig-glyph::before {
  content: ""; position: absolute; inset: 4px;
  border: 1.4px solid var(--ivory); border-radius: 50%;
}
.ig-glyph::after {
  content: ""; position: absolute; top: 4px; right: 4px;
  width: 2.4px; height: 2.4px; border-radius: 50%; background: var(--ivory);
}
.ig-tile:hover .ig-glyph { opacity: 1; border-color: var(--brass); }
.ig-cap {
  position: absolute; left: 16px; bottom: 15px; z-index: 2;
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory); font-weight: 600;
  transition: transform 0.5s var(--ease);
}
.ig-tile:hover .ig-cap { transform: translateY(-3px); }
.ig-grid.reveal { opacity: 1; transform: none; filter: none; }
.ig-grid .ig-tile { opacity: 0; transform: translateY(24px) scale(0.985); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.ig-grid.reveal.in .ig-tile { opacity: 1; transform: none; }
.ig-grid.reveal.in .ig-tile:nth-child(2) { transition-delay: 0.08s; }
.ig-grid.reveal.in .ig-tile:nth-child(3) { transition-delay: 0.16s; }
.ig-grid.reveal.in .ig-tile:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   TIMELINE — an editorial spine
   ============================================================ */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 6px; bottom: 6px;
  left: clamp(64px, 9vw, 128px); width: 1px;
  background: linear-gradient(var(--hair-strong), var(--hair));
}
.timeline .tl {
  display: grid;
  grid-template-columns: clamp(64px, 9vw, 128px) 1fr;
  align-items: baseline;
  padding: clamp(20px, 2.6vw, 30px) 0;
  position: relative;
}
.tl-year {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px); color: var(--brass); line-height: 1;
}
.timeline .tl-body { padding-left: clamp(26px, 4vw, 52px); position: relative; }
.timeline .tl-body::before {
  content: ""; position: absolute; left: -4px; top: 8px;
  width: 7px; height: 7px; transform: rotate(45deg);
  background: var(--brass); box-shadow: 0 0 0 4px var(--charcoal);
}
.timeline .tl-body h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(20px, 2.3vw, 27px); margin: 0 0 7px; line-height: 1.15;
}
.timeline .tl-body p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--ivory-mute); font-weight: 300; max-width: 62ch; }
.timeline .tl-body em { font-style: italic; color: var(--ivory-2); }
@media (max-width: 560px) {
  .timeline::before { left: 8px; }
  .timeline .tl { grid-template-columns: 1fr; gap: 8px; }
  .timeline .tl-body { padding-left: 26px; }
  .tl-year { padding-left: 26px; }
}
.timeline.reveal { opacity: 1; transform: none; filter: none; }
.timeline .tl { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.timeline.reveal.in .tl { opacity: 1; transform: translateY(0); }
.timeline.reveal.in .tl:nth-child(2) { transition-delay: 0.06s; }
.timeline.reveal.in .tl:nth-child(3) { transition-delay: 0.12s; }
.timeline.reveal.in .tl:nth-child(4) { transition-delay: 0.18s; }
.timeline.reveal.in .tl:nth-child(5) { transition-delay: 0.24s; }
.timeline.reveal.in .tl:nth-child(6) { transition-delay: 0.30s; }
.timeline.reveal.in .tl:nth-child(7) { transition-delay: 0.36s; }

/* ============================================================
   BRAND SEAL IN WORDMARK  (monogram ₹/R)
   ============================================================ */
.wordmark { gap: 12px; }
.wordmark .wm-seal {
  height: 32px; width: auto; display: block;
  opacity: 0.96;
  transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
}
.wordmark .wm-type { height: 38px; width: auto; display: block; }
.wordmark:hover .wm-seal { transform: rotate(-9deg); opacity: 1; }
.site-header.is-stuck .wordmark .wm-seal { height: 28px; }
.site-header.is-stuck .wordmark .wm-type { height: 33px; }
@media (max-width: 480px) {
  .wordmark { gap: 9px; }
  .wordmark .wm-seal { height: 27px; }
  .wordmark .wm-type { height: 31px; }
}

/* ============================================================
   PRELOADER — the overture (once per session)
   Pure-CSS auto-dismiss so it can never trap the viewer;
   JS only records the session + removes the node early.
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: grid; place-items: center;
  animation: plFade 0.9s var(--ease) 1.55s forwards;
}
.preloader .pl-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.preloader .pl-seal {
  width: 84px; height: 84px; opacity: 0;
  animation: plSeal 1.15s var(--ease) 0.12s forwards;
}
.preloader .pl-rule {
  display: block; width: 0; height: 1px; background: var(--brass); opacity: 0.85;
  animation: plRule 1s var(--ease) 0.72s forwards;
}
.preloader .pl-word {
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ivory-mute); opacity: 0;
  animation: plWord 0.85s var(--ease) 1.02s forwards;
}
@keyframes plSeal { from { opacity: 0; transform: translateY(10px) scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes plRule { from { width: 0; } to { width: 138px; } }
@keyframes plWord { from { opacity: 0; transform: translateY(6px); } to { opacity: 0.82; transform: none; } }
@keyframes plFade { to { opacity: 0; visibility: hidden; } }
.pl-seen .preloader { display: none !important; }
@media (prefers-reduced-motion: reduce) { .preloader { display: none !important; } }

/* ============================================================
   FOOTER GHOST WATERMARK — the seal as a faint atmosphere
   (::before is taken by the glow; use ::after, sits under .container)
   ============================================================ */
.site-footer::after {
  content: ""; position: absolute;
  right: -46px; bottom: -78px;
  width: clamp(240px, 26vw, 372px); height: clamp(240px, 26vw, 372px);
  background: url("../images/monogram.png") no-repeat center / contain;
  opacity: 0.05; pointer-events: none; z-index: 0;
}
@media (max-width: 640px) { .site-footer::after { width: 210px; height: 210px; right: -50px; bottom: -60px; } }
