/* ==========================================================================
   Louis Dowdeswell — design system
   Palette and type lifted from the existing site so the rebuild matches it.
   Wix served Lulo Clean + DIN Neuzeit Grotesk; Archivo + Barlow stand in.
   ========================================================================== */

:root {
  /* Ground — warm cream, congruent with the Out of Print artwork */
  --ink-0:      #FFFFFF;   /* page: white */
  --ink-1:      #F4F3F1;   /* raised surface: light grey */
  --ink-2:      #ECEBE8;   /* band / divider */
  --rule:       #DEDCD8;
  --rule-soft:  #E9E8E5;

  /* Text — warm charcoal on cream */
  --text:       #232220;
  --text-bright:#0F0F0E;
  --text-dim:   #6F6D69;

  /* Accent — the marquee red from the album artwork */
  --gold:       #B3372B;
  --gold-deep:  #8E2A21;

  /* Category colours, drawn from the album's world */
  --cyan:       #1F6E6B;
  --coral:      #C87F35;
  --mint:       #6E8F5E;
  --indigo:     #33566B;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body:    "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 5vw, 56px);
  --measure: 66ch;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* --- Type ----------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); margin: 0; color: var(--text-bright); text-wrap: balance; }

/* The wordmark treatment: wide, heavy, tracked-out caps in gold */
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  line-height: .98;
  font-size: clamp(1.7rem, 5.6vw, 4.2rem);
  margin: 0;
}
.wm-line { display: block; }
.wm-line--first { font-size: 2.56em; line-height: .92; }
h2 {
  font-family: "Besley", Georgia, serif;
  font-size: clamp(1.75rem, 3.8vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.05rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-bright); font-weight: 600; }

.eyebrow {
  font-family: var(--display);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: block;
}
.eyebrow--dim { color: var(--text-dim); }
.lede { font-family: "Literata", Georgia, serif; font-size: clamp(1.04rem, 1.8vw, 1.24rem); line-height: 1.62; color: var(--text-bright); font-weight: 400; max-width: 56ch; }

/* --- Layout --------------------------------------------------------------- */
.shell { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: 860px; }
.band { padding-block: clamp(60px, 9vw, 118px); }
.band--tight { padding-block: clamp(40px, 6vw, 72px); }
.band--deep { background: var(--ink-2); }
.band--raised { background: var(--ink-1); }
.stack > * + * { margin-top: 1.05rem; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95em 1.7em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: #FFFFFF; }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ghost { border-color: rgba(197,208,217,.38); color: var(--text-bright); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: .72em 1.25em; font-size: .74rem; }

.textlink {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.textlink span { transition: transform .25s var(--ease); }
.textlink:hover span { transform: translateX(4px); }

/* --- Navigation ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--rule-soft);
  isolation: isolate;
}
/* The blur lives on a child layer, not on .nav itself: backdrop-filter on the
   header would make it the containing block for the fixed mobile menu panel,
   which would then size against the 76px bar instead of the viewport. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
}
.nav__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: baseline; gap: .55rem; flex: none; }
.nav__brand b {
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.nav__brand i {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.nav__links .btn { color: var(--ink-0); }
.nav__links .btn:hover { color: var(--ink-0); }

.nav__toggle { display: none; width: 44px; height: 44px; margin-right: -10px; position: relative; }
.nav__toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text-bright);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-0);
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--gutter) 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav__links[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .nav__links a {
    font-size: .95rem;
    letter-spacing: .12em;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav__links a[aria-current="page"] { border-bottom-color: var(--rule-soft); }
  .nav__links .btn { margin-top: 20px; justify-content: center; border-bottom: 0; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: min(88svh, 820px); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,   rgba(23,42,46,.96) 4%, rgba(23,42,46,.44) 42%, rgba(23,42,46,.28) 100%),
    linear-gradient(to right, rgba(23,42,46,.93) 0%, rgba(23,42,46,.54) 46%, rgba(23,42,46,0) 78%);
}
/* Hero sits on a dark photo, so its text stays cream regardless of page tokens */
.hero__inner { color: #EFE8D4; }
.hero .lede { color: #F5F0E1; }
.hero .wordmark { color: #E9BE4B; }
.hero .hero__roles { color: #E9BE4B; }
.hero .btn--ghost { color: #F1EDD6; border-color: rgba(241,237,214,.5); }
.hero .btn--ghost:hover { border-color: #E9BE4B; color: #E9BE4B; }
.hero__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(48px, 9vw, 104px); }
.hero__roles {
  display: flex; flex-wrap: wrap; gap: .55rem 1.9rem;
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-size: clamp(.66rem, 1.5vw, .82rem);
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.hero__blurb { margin-top: 1.7rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

/* --- Credentials strip ---------------------------------------------------- */
.creds { border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); background: var(--ink-1); }
.creds__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  margin-inline: calc(var(--gutter) * -1);
}
.creds__item { background: var(--ink-1); padding: clamp(20px, 3vw, 30px) clamp(18px, 3vw, 30px); }
.creds__item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.creds__item span { display: block; margin-top: .5rem; font-size: .87rem; line-height: 1.4; color: var(--text-dim); }

/* --- Section heading ------------------------------------------------------ */
.shead { margin-bottom: clamp(28px, 4vw, 46px); }
.shead p { margin-top: .9rem; color: var(--text-dim); }

/* --- Feature / door cards ------------------------------------------------- */
.doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.door {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--rule-soft);
  border-top: 3px solid var(--accent, var(--gold));
  border-radius: 3px;
  padding: 28px 26px 26px;
  box-shadow: 0 2px 10px rgba(20,20,20,.04);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.door:hover { transform: translateY(-3px); border-color: var(--rule); box-shadow: 0 12px 30px rgba(20,20,20,.10); }
.door__label {
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent, var(--gold));
  margin-bottom: .85rem;
}
.door h3 { margin-bottom: .6rem; }
.door p { font-size: .95rem; color: var(--text-dim); flex: 1; }
.door .textlink { margin-top: 1.4rem; color: var(--accent, var(--gold)); }
.door--cyan   { --accent: var(--cyan); }
.door--coral  { --accent: var(--coral); }
.door--mint   { --accent: var(--mint); }
.door--indigo { --accent: var(--indigo); }

/* --- Academy feature ------------------------------------------------------ */
.academy { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
@media (max-width: 860px) { .academy { grid-template-columns: 1fr; } }
.academy__media { position: relative; border-radius: 3px; overflow: hidden; }
.academy__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.academy__badge {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--gold); color: var(--ink-0);
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .6em 1em; border-radius: 2px;
}
.perks { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .6rem; }
.perks li { position: relative; padding-left: 1.7rem; font-size: .97rem; }
.perks li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
}
.price { display: flex; align-items: baseline; gap: .6rem; margin-top: 1.7rem; }
.price b { font-family: var(--display); font-size: 2.1rem; font-weight: 800; color: var(--text-bright); line-height: 1; }
.price span { font-size: .9rem; color: var(--text-dim); }

/* --- Proof / credits ------------------------------------------------------ */
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); border-radius: 3px; overflow: hidden; }
.proof__col { background: var(--ink-0); padding: 26px 24px 28px; }
.proof__col h4 { color: var(--gold); font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.proof__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .42rem; }
.proof__col li { font-size: .93rem; color: var(--text); line-height: 1.45; }

/* --- Gigs ----------------------------------------------------------------- */
.gigs { display: grid; gap: 1px; background: var(--rule-soft); border-block: 1px solid var(--rule-soft); }
.gig {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--ink-0);
  padding: 20px 4px;
  transition: background-color .2s var(--ease);
}
.gig:hover { background: var(--ink-1); }
.gig__date {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.gig__what h4 { margin-bottom: .18rem; }
.gig__what span { font-size: .89rem; color: var(--text-dim); }
@media (max-width: 620px) {
  .gig { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
  .gig__cta { justify-self: start; margin-top: 8px; }
}

/* --- Split feature -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--flip .split__media { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}
.split__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 3px; }

/* --- Footer --------------------------------------------------------------- */
.foot { background: #1C272B; border-top: 0; padding-block: clamp(44px, 6vw, 72px) 28px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h4 { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #E0B44E; margin-bottom: 1rem; }
.foot__links { display: grid; gap: .55rem; }
.foot__links a { font-size: .93rem; color: #C2CCCE; transition: color .2s var(--ease); }
.foot__links a:hover { color: #E0B44E; }
.foot p { font-size: .93rem; color: #8FA0A3; max-width: 38ch; }
.socials { display: flex; gap: 12px; margin-top: 1.3rem; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid #37454A; border-radius: 50%; color: #C2CCCE;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { color: #E0B44E; border-color: #E0B44E; }
.foot__base {
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: 22px;
  border-top: 1px solid #334146;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .82rem; color: #86979B;
}

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Utility -------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -100px; left: var(--gutter); z-index: 100;
  background: var(--gold); color: var(--ink-0); padding: .7em 1.2em;
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.skip:focus { top: 12px; }

/* --- Academy steps + member quotes --------------------------------------- */
.steps { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .9rem; }
.steps li { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: baseline; }
.steps b { grid-row: 1 / 3; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: #F6F1E4;
  font-family: var(--display); font-size: .85rem; font-weight: 700; display: grid; place-items: center; align-self: start; }
.steps strong { color: var(--text-bright); font-weight: 600; }
.steps span { grid-column: 2; font-size: .92rem; color: var(--text-dim); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: clamp(30px, 4vw, 48px); }
.quote { margin: 0; padding: 22px 24px; background: var(--ink-0); border: 1px solid var(--rule); border-radius: 3px;
  font-family: "Literata", Georgia, serif; font-size: .97rem; line-height: 1.6; color: var(--text); }
.quote cite { display: block; margin-top: .9rem; font-style: normal; font-family: var(--display);
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* --- LTA brand block (deliberately the academy's own branding) ------------ */
.band--lta { background: radial-gradient(1000px 700px at 70% 30%, #1a1b20 0%, #101114 55%, #0a0b0d 100%);
  position: relative; padding-bottom: clamp(72px, 9vw, 130px); }
.band--lta::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: #FDCD66; }
.lta { text-align: center; }
.lta__eyebrow { display: block; font-family: "Manrope", sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 1.2rem; }
.lta__head { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 5.4vw, 4rem); line-height: 1.08; color: #fff; max-width: 20ch; margin: 0 auto; }
.lta__head span { color: #FDCD66; }
.lta__sub { font-family: "Manrope", sans-serif; font-weight: 600; font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,.72); max-width: 52ch; margin: 1.3rem auto 0; }
.lta__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 760px) { .lta__imgs { grid-template-columns: 1fr; } }
.lta__imgs img { width: 100%; border-radius: 12px; border: 1px solid rgba(253,205,102,.25); }
.lta__cta { margin-top: clamp(26px, 4vw, 40px); }
.btn--lta { background: #FDCD66; color: #0B0C0F; border-radius: 60px; font-family: "Manrope", sans-serif;
  font-weight: 800; letter-spacing: .1em; }
.btn--lta:hover { background: #fff; color: #0B0C0F; }
.lta__cover { max-width: 920px; margin: clamp(24px, 3.5vw, 40px) auto 0; }
.lta__cover img { width: 100%; border-radius: 14px; border: 1px solid rgba(253,205,102,.3); }
.lta .lta__sub { margin-top: clamp(20px, 3vw, 30px); }


/* --- Motion: staggered entrances ------------------------------------------ */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* hero content cascades in on load */
.hero__inner > * { animation: rise .85s var(--ease) backwards; }
.hero__inner > *:nth-child(1) { animation-delay: .08s; }
.hero__inner > *:nth-child(2) { animation-delay: .2s; }
.hero__inner > *:nth-child(3) { animation-delay: .32s; }
.hero__inner > *:nth-child(4) { animation-delay: .44s; }

/* door cards cascade as the row scrolls in */
.doors.reveal { opacity: 1; transform: none; }
.doors.reveal .door { opacity: 0; }
.doors.reveal.is-in .door { animation: rise .6s var(--ease) forwards; }
.doors.reveal.is-in .door:nth-child(1) { animation-delay: .02s; }
.doors.reveal.is-in .door:nth-child(2) { animation-delay: .14s; }
.doors.reveal.is-in .door:nth-child(3) { animation-delay: .26s; }
.doors.reveal.is-in .door:nth-child(4) { animation-delay: .38s; }

/* split sections: media follows text by a beat */
.split > .reveal:nth-child(2) { transition-delay: .15s; }


@media (prefers-reduced-motion: reduce) {
  .hero__inner > *, .doors.reveal.is-in .door { animation: none; opacity: 1; }
  .doors.reveal .door { opacity: 1; }
}


/* --- Studio hero: one locked composition, scales as a unit ---------------- */
.hero--studio { display: block; min-height: 0; background: #FFFFFF; }
.hero--studio .hero__inner { display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(20px, 4vw, 64px); align-items: end;
  padding-block: 0; }
.hero__copy { align-self: center; padding-block: clamp(36px, 6vw, 72px); container-type: inline-size; }
.hero--studio .hero__portrait { display: block; width: min(100%, 460px);
  height: auto; justify-self: end; animation: none; }
.hero--studio .wordmark { position: relative; color: var(--gold); font-size: 10.6cqw; }
.hero--studio .wm-line { white-space: nowrap; }
.hero--studio .hero__roles { color: var(--gold-deep); }
.hero--studio .lede { color: var(--text); }
.hero--studio .btn--ghost { border-color: var(--rule); color: var(--text-bright); }
.hero--studio .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 700px) {
  .hero--studio .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { padding-block: 28px 0; }
  .hero--studio .hero__portrait { justify-self: center; width: min(80%, 400px); margin-top: 10px; }
}

/* --- Hero signature motion ------------------------------------------------- */
.wordmark--anim .wl { display: inline-block; animation: wl-rise .65s var(--ease) backwards;
  animation-delay: calc(.35s + .045s * var(--i)); }
@keyframes wl-rise { from { opacity: 0; transform: translateY(.4em); } }
.hero--studio .hero__copy > * { animation: none; }  /* letters + staff replace the block cascade */
.hero--studio .hero__roles, .hero--studio .hero__blurb, .hero--studio .hero__cta {
  animation: rise .8s var(--ease) backwards; }
.hero--studio .hero__roles { animation-delay: 1s; }
.hero--studio .hero__blurb { animation-delay: 1.15s; }
.hero--studio .hero__cta   { animation-delay: 1.3s; }

@media (prefers-reduced-motion: reduce) {
  .wordmark--anim .wl { animation: none; opacity: 1; }
}

/* --- LTA dark band: the photo's backdrop becomes the section --------------- */
.band--lta-dark { background: radial-gradient(900px 600px at 38% 45%, #2B2825 0%, #211F1C 55%, #191715 100%);
  position: relative; }
.band--lta-dark::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 8px; background: #FDCD66; }
.band--lta-dark h2 { color: #FFFFFF; }
.band--lta-dark .lede { color: #EDEAE4; }
.band--lta-dark .lede strong { color: #FDCD66; }
.band--lta-dark p { color: #C6C2BB; }
.lta-logo { height: 52px; width: auto; }
.lta-cta { align-items: center; gap: 22px; }
.lta-photo { width: 100%; border-radius: 12px;
  box-shadow: 0 18px 44px rgba(20, 20, 20, .16); }
.band--lta-dark .btn--gold { background: #FDCD66; color: #191715; }
.band--lta-dark .btn--gold:hover { background: #FFFFFF; color: #191715; }


/* --- Dynamic 3D media: resting tilt, layered shadows, straighten on hover -- */
.split__media { perspective: 1100px; }
.split__media img { border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 15, 14, .12), 0 48px 90px -20px rgba(15, 15, 14, .38);
  transform: rotateY(var(--tilt, 0deg));
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  will-change: transform; }
#album .split__media img { --tilt: -4deg; }
#academy .split__media img { --tilt: 4deg; }
.split__media:hover img { transform: rotateY(0deg) translateY(-6px) scale(1.012);
  box-shadow: 0 6px 14px rgba(15, 15, 14, .13), 0 46px 90px -20px rgba(15, 15, 14, .36); }
@media (prefers-reduced-motion: reduce) {
  .split__media img { transform: none; }
  .split__media:hover img { transform: none; }
}


/* --- Footer, simplified ---------------------------------------------------- */
.foot__top { display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: center; justify-content: space-between; }
.foot__brand { font-family: var(--display); font-weight: 800; font-size: 1rem;
  letter-spacing: .17em; text-transform: uppercase; color: #F1EDE2; margin: 0; }
.foot__tag { font-size: .9rem; color: #8FA0A3; margin: .35rem 0 0; }
.foot__nav { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 34px); }
.foot__nav a { font-family: var(--display); font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #C2CCCE;
  transition: color .2s var(--ease); }
.foot__nav a:hover { color: #E0B44E; }

/* --- Gigs: expandable list ------------------------------------------------- */
.gigs__more { display: none; }
.gigs.gigs--open .gigs__more { display: grid; gap: 1px; }
.gigs__toggle { margin-top: 22px; border-color: var(--rule); color: var(--text-bright); }
.gigs__toggle:hover { border-color: var(--gold); color: var(--gold); }

/* --- Featured gig ----------------------------------------------------------- */
.gig--featured { background: #FBF4EC; border-left: 4px solid var(--gold); padding-left: 16px; }
.gig--featured:hover { background: #F8EEE2; }
.gig--featured .gig__date { color: var(--gold-deep); }
.gig--featured h4::after { content: "One night only"; margin-left: 10px; vertical-align: 2px;
  background: var(--gold); color: #fff; font-family: var(--display); font-size: .62rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; padding: 2px 10px; }
