/* Apprenticeship page */

/* ---------- Hero -------------------------------------------------- */
.ap-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: 96px 56px;
  display: flex;
  align-items: center;
}
.ap-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.85) brightness(.55);
  opacity: .35;
}
.ap-hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 100%, rgba(200,144,62,.18), transparent 55%),
    linear-gradient(180deg, rgba(12,9,7,.45) 0%, rgba(12,9,7,.75) 100%);
}
.ap-hero__inner {
  position: relative; z-index: 2;
  max-width: 1040px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  width: 100%;
}
.ap-hero__title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: .98;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sh-cream);
  margin: 0;
  text-align: center;
}
.ap-hero__title--ital {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sh-gold-100);
  font-size: 0.92em;
  display: block;
}
.ap-hero__title-line {
  display: block;
}
.ap-hero__title-line--nowrap {
  white-space: nowrap;
}
.ap-hero__lede {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.25rem; line-height: 1.55;
  color: var(--sh-parchment);
  margin: 22px 0 32px; max-width: 540px;
}
.ap-hero__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ap-hero__video {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.ap-hero__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sh-border);
  box-shadow: var(--sh-shadow-raise);
  background: #0a0705;
}
.ap-hero__video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.ap-hero__video-cover {
  appearance: none; border: 0; cursor: pointer;
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1108;
  color: var(--sh-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
}
.ap-hero__video-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,7,.2) 0%, rgba(12,9,7,.65) 100%);
}
.ap-hero__play {
  position: relative; z-index: 1;
  width: 78px; height: 78px;
  border-radius: 999px;
  background: var(--sh-gold);
  color: var(--sh-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 60px rgba(200,144,62,.5);
}
.ap-hero__video-label {
  position: relative; z-index: 1;
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sh-cream);
}

/* ---------- Quotes ------------------------------------------------ */
.ap-quote-stack {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.ap-quote {
  border-top: 1px solid var(--sh-border);
  padding: 28px 0 0; margin: 0;
}
.ap-quote blockquote {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--sh-cream);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.ap-quote figcaption { display: flex; flex-direction: column; gap: 4px; }
.ap-quote__who {
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sh-gold);
}
.ap-quote__src {
  font-family: var(--sh-font-mono); font-size: 11px;
  color: var(--sh-fg-subtle);
}

/* ---------- Day records (stacked deck) --------------------------- */
.day-records-wrap { max-width: 1180px; margin: 0 auto; }
.day-stack { width: 100%; }
.day-stack__nav {
  display: grid; grid-template-columns: 56px 1fr 56px;
  align-items: center; gap: 24px;
}
.day-stack__stage {
  position: relative;
  height: 380px;
  touch-action: pan-y;
  cursor: grab;
}
.day-stack__stage:active { cursor: grabbing; }
.day-stack__disc {
  position: absolute;
  left: 50%; top: 50%;
  width: 300px; height: 300px;
  transform-origin: 50% 50%;
  appearance: none; background: transparent; border: 0; padding: 0;
  cursor: pointer;
  transition: transform 520ms var(--sh-ease-out),
              opacity 480ms var(--sh-ease-out),
              filter 480ms var(--sh-ease-out);
  will-change: transform, opacity, filter;
}
.day-stack__arrow {
  appearance: none; background: transparent;
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid var(--sh-border);
  color: var(--sh-cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--sh-dur), color var(--sh-dur), background var(--sh-dur);
}
.day-stack__arrow:hover {
  border-color: var(--sh-gold); color: var(--sh-gold-100);
  background: rgba(200,144,62,0.06);
}
.day-stack__dots {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin: 22px 0 4px;
}
.day-stack__dot {
  appearance: none; background: transparent;
  border: 1px solid var(--sh-border);
  color: var(--sh-fg-subtle);
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  transition: border-color var(--sh-dur), color var(--sh-dur), background var(--sh-dur);
}
.day-stack__dot:hover { color: var(--sh-cream); border-color: var(--sh-cream); }
.day-stack__dot.is-on {
  background: var(--sh-gold);
  border-color: var(--sh-gold);
  color: var(--sh-ink);
}

/* Disc visuals (shared with old grid layout) ---------------------- */
.day-disc {
  position: relative;
  appearance: none; background: transparent;
  border: 0; padding: 0;
  cursor: pointer;
}
.day-disc__shadow {
  position: absolute; inset: 8% 6% -2% 6%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%);
  filter: blur(10px); z-index: 0;
}
.day-disc__vinyl {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1a120c 30%, #0a0604 70%);
  box-shadow: inset 0 0 30px rgba(0,0,0,.8), 0 4px 18px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  animation: ap-spin 14s linear infinite;
}
.day-disc.is-open .day-disc__vinyl { animation-duration: 6s; }
@keyframes ap-spin { to { transform: rotate(360deg); } }

.day-disc__grooves {
  position: absolute; inset: 4%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 4px);
}
.day-disc__label {
  position: relative; z-index: 1;
  width: 48%; height: 48%; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #faf6ec 0%, #f3ead8 60%, #e3d4b9 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(74,51,36,0.18),
              inset 0 -4px 12px rgba(74,51,36,0.10);
}
.day-disc__short {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 18px; letter-spacing: .22em; text-transform: uppercase;
  color: #b8553a; line-height: 1;
}
.day-disc__num {
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: #2a2520; margin-top: 6px;
}
.day-disc__spindle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 6%; height: 6%; border-radius: 50%;
  background: #2a2520; z-index: 2;
}
.day-disc__orbit {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  opacity: 0;
  animation: ap-spin 18s linear infinite;
  transition: opacity 320ms var(--sh-ease-out);
}
.day-disc.is-open .day-disc__orbit { opacity: 1; }
.day-disc__orbit-t {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  fill: var(--sh-gold-100);
}
.day-disc.is-open .day-disc__vinyl {
  box-shadow: inset 0 0 30px rgba(0,0,0,.8),
              0 4px 18px rgba(0,0,0,.5),
              0 0 0 2px var(--sh-gold-200),
              0 0 40px rgba(200,144,62,0.4);
}

/* Panel below records */
.day-records__panel {
  margin-top: 36px;
  min-height: 220px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  background: rgba(12,9,7,0.45);
  padding: 32px 40px;
  transition: border-color 320ms, background 320ms;
}
.day-records__panel.is-open {
  border-color: var(--sh-border-warm);
  background: rgba(12,9,7,0.65);
}
.day-panel { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 56px; align-items: start; }
.day-panel__head { padding-top: 4px; }
.day-panel__title {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 1.75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sh-cream); margin: 10px 0 12px;
  line-height: 1.05;
}
.day-panel__blurb {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.0625rem; line-height: 1.45;
  color: var(--sh-parchment); margin: 0;
}
.day-panel__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.day-panel__list li {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  padding: 14px 18px 14px 0;
  border-top: 1px solid var(--sh-border);
  align-items: baseline;
}
.day-panel__list li:first-child,
.day-panel__list li:nth-child(2) { border-top: 0; }
.day-panel__bullet {
  font-family: var(--sh-font-mono); font-size: 11px;
  color: var(--sh-gold); letter-spacing: .12em;
}
.day-panel__theme {
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 0.9375rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sh-cream); line-height: 1.3;
}

@media (max-width: 760px) {
  .day-stack__disc { width: 220px; height: 220px; }
  .day-stack__stage { height: 260px; }
  .day-stack__nav { grid-template-columns: 40px 1fr 40px; gap: 12px; }
  .day-stack__arrow { width: 40px; height: 40px; }
  .day-records__panel { padding: 24px 22px; }
  .day-panel { grid-template-columns: 1fr; gap: 22px; }
  .day-panel__list { grid-template-columns: 1fr; }
  .day-panel__list li:nth-child(2) { border-top: 1px solid var(--sh-border); }
}

/* ---------- Section background photo (low opacity) -------------- */
.ap-photo-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ap-photo-bg::before {
  content: "";
  position: absolute; inset: -20px;
  background-image: var(--ap-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(.8) brightness(.55);
  opacity: 0.16;
  z-index: -2;
}
.ap-photo-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(12,9,7,.4), rgba(12,9,7,.85) 70%);
  z-index: -1;
}
.ap-photo-bg > * { position: relative; z-index: 1; }

/* Curriculum sits flush against the hero — no gap between video and "Inside the Apprenticeship" */
#curriculum.sh-section { padding-top: 0; }
@media (max-width: 760px) {
  #curriculum.sh-section { padding-top: 0; }
}

.ap-details__link {
  color: var(--sh-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ap-details__link:hover { color: var(--sh-gold-100); }

/* ---------- Tickets widget --------------------------------------- */
.ap-tickets__widget {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--sh-bg-warm, rgba(28,22,17,.5));
  border: 1px solid var(--sh-border-warm);
  border-radius: var(--sh-radius-lg);
  padding: 24px;
  min-height: 360px;
}
.ap-tickets__widget .tt-widget {
  /* Ticket Tailor injects its iframe here. Force it to fit our column. */
  width: 100%;
}
.ap-tickets__widget .tt-widget iframe {
  width: 100% !important;
  min-height: 520px;
  border: 0;
  background: transparent;
}
.ap-tickets__widget .tt-widget-fallback {
  text-align: center;
  font-family: var(--sh-font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--sh-fg-muted);
  padding: 24px 0;
}
.ap-tickets__widget .tt-widget-fallback a {
  color: var(--sh-gold);
  text-decoration: underline;
}

/* ---------- Photo break ----------------------------------------- */
.ap-photobreak {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vh, 560px);
  background-size: cover;
  background-position: center;
}
.ap-photobreak::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,7,.55) 0%, rgba(12,9,7,.25) 30%, rgba(12,9,7,.55) 100%);
}
.ap-photobreak__caption {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  gap: 18px;
  padding: 0 24px 40px;
  text-align: center;
  pointer-events: none;
}
.ap-photobreak__rule {
  width: 56px; height: 1px;
  background: var(--sh-gold);
  opacity: .85;
}
.ap-photobreak__title {
  margin: 0;
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sh-cream);
  text-shadow: 0 2px 24px rgba(12,9,7,.55);
}

/* ---------- Fundamentals deck (spinning records) ---------------- */
.ap-deck-nav {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center; gap: 24px;
}
.ap-deck {
  position: relative;
  height: 360px;
  touch-action: pan-y;
  cursor: grab;
  overflow: hidden;
}
.ap-deck:active { cursor: grabbing; }
.ap-record {
  position: absolute;
  left: 50%; top: 50%;
  width: 300px; height: 300px;
  transform-origin: 50% 50%;
  appearance: none; background: transparent; border: 0; padding: 0;
  cursor: pointer;
  transition: transform 520ms var(--sh-ease-out),
              opacity 480ms var(--sh-ease-out),
              filter 480ms var(--sh-ease-out);
  will-change: transform, opacity, filter;
}
.ap-record__shadow {
  position: absolute; inset: 8% 6% -2% 6%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 70%);
  filter: blur(14px); z-index: 0;
}
.ap-record__vinyl {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    /* fine grooves — concentric ridges, slightly catch light */
    repeating-radial-gradient(circle at 50% 50%,
      rgba(255,255,255,.04) 0 1px,
      rgba(0,0,0,.35) 1px 2px,
      transparent 2px 5px),
    /* directional sheen — diagonal light reflection like a pressed LP */
    conic-gradient(from 215deg at 50% 50%,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,.13) 30deg,
      rgba(255,255,255,.02) 75deg,
      rgba(255,255,255,0) 130deg,
      rgba(255,255,255,0) 215deg,
      rgba(255,255,255,.08) 245deg,
      rgba(255,255,255,0) 300deg,
      rgba(255,255,255,0) 360deg),
    /* base vinyl body — slightly off-center light to suggest depth */
    radial-gradient(circle at 50% 45%, #1d1611 0%, #0b0805 55%, #050302 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 0 28px rgba(0,0,0,.75),
    0 18px 36px -10px rgba(0,0,0,.7),
    0 4px 12px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  animation: ap-spin 14s linear infinite;
}
.ap-record.is-active .ap-record__vinyl {
  animation-duration: 6s;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 28px rgba(0,0,0,.75),
    0 18px 36px -10px rgba(0,0,0,.7),
    0 0 0 2px var(--sh-gold-200),
    0 0 44px rgba(200,144,62,0.35);
}
@keyframes ap-spin { to { transform: rotate(360deg); } }
.ap-record__grooves {
  /* dark outer ring + faint inner-ring landings near label edge */
  position: absolute; inset: 3%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(0,0,0,.35) 28.5%, transparent 29.5%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255,255,255,.03) 30.4%, transparent 31.5%);
  pointer-events: none;
}
.ap-record__label {
  position: relative; z-index: 1;
  width: 50%; height: 50%; border-radius: 50%;
  /* off-white paper label — slight warm gradient + paper grain */
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(74,51,36,.07), transparent 60%),
    radial-gradient(circle at 50% 45%, #f6efde 0%, #ede2c9 65%, #d9c8a8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8% 10%;
  box-shadow:
    inset 0 0 0 1px rgba(74,51,36,0.22),
    inset 0 0 0 2px rgba(255,255,255,0.5),
    inset 0 -6px 14px rgba(74,51,36,0.10),
    0 0 0 3px rgba(0,0,0,.4),
    0 0 0 4px rgba(255,255,255,.05);
}
.ap-record__num {
  font-family: var(--sh-font-mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(42,37,32,.55);
  margin-bottom: 4px;
}
.ap-record__title {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 12px; line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b8553a;
  word-break: keep-all;
  text-wrap: balance;
}
.ap-record__title--long {
  font-size: 9px;
  letter-spacing: .04em;
}
.ap-record__brand {
  margin-top: 6px;
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 7px; letter-spacing: .3em; text-transform: uppercase;
  color: #2a2520;
}
.ap-record__spindle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #c8c4be 0%, #6b6760 50%, #1d1a16 100%);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.6),
    0 1px 2px rgba(0,0,0,.6);
  z-index: 2;
}

@media (max-width: 760px) {
  .ap-record { width: 240px; height: 240px; }
  .ap-deck { height: 280px; }
  .ap-deck-nav { grid-template-columns: 40px 1fr 40px; gap: 12px; }
  .ap-record__title { font-size: 12px; }
  .ap-record__title--long { font-size: 9px; }
}

/* ---------- Fundamentals rail (legacy chip styles, kept for safety) -- */
.ap-rail-wrap { max-width: 1180px; margin: 0 auto; }
.ap-rail {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 12px;
  align-items: center;
}
.ap-rail__arrow {
  appearance: none; background: transparent;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--sh-border);
  color: var(--sh-cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--sh-dur), color var(--sh-dur), background var(--sh-dur);
}
.ap-rail__arrow:hover {
  border-color: var(--sh-gold); color: var(--sh-gold-100);
  background: rgba(200,144,62,0.06);
}
.ap-rail__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 4px 8px 12px;
  scroll-behavior: smooth;
}
.ap-rail__track::-webkit-scrollbar { display: none; }
.ap-chip {
  appearance: none; cursor: pointer;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  background: rgba(12,9,7,0.4);
  color: var(--sh-cream);
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: clamp(10px, 2.4vw, 12px);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background var(--sh-dur), border-color var(--sh-dur), color var(--sh-dur), transform var(--sh-dur);
  white-space: nowrap;
  max-width: min(80vw, 320px);
}
@media (max-width: 720px) {
  .ap-chip {
    white-space: normal;
    text-wrap: balance;
    line-height: 1.2;
    text-align: left;
    letter-spacing: .08em;
    max-width: calc(100vw - 140px);
  }
  .ap-chip.is-on { padding: 12px 18px; }
}
.ap-chip:hover {
  border-color: var(--sh-border-warm);
  color: var(--sh-gold-100);
}
.ap-chip.is-on {
  background: var(--sh-gold);
  border-color: var(--sh-gold);
  color: var(--sh-ink);
}
.ap-chip__num {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  color: var(--sh-gold);
  letter-spacing: .12em;
}
.ap-chip.is-on .ap-chip__num { color: rgba(12,9,7,.7); }
.ap-chip__name { font-weight: 600; }

.ap-rail__arrow:disabled {
  opacity: 0.3; cursor: not-allowed; pointer-events: none;
}
.ap-rail__counter {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 14px;
  font-family: var(--sh-font-mono); font-size: 12px;
  color: var(--sh-fg-muted);
}
.ap-rail__counter-sep { color: var(--sh-gold); }

.ap-rail__panel {
  margin-top: 28px;
  border: 1px solid var(--sh-border-warm);
  border-radius: var(--sh-radius-lg);
  background: rgba(12,9,7,0.6);
  height: 320px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) {
  .ap-rail__panel { height: 360px; }
}
.ap-rail__panel-scroll {
  height: 100%;
  padding: 24px 28px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--sh-gold) transparent;
  transform-origin: top center;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(.2,.75,.2,1);
}
.ap-rail__panel-scroll::-webkit-scrollbar { width: 6px; }
.ap-rail__panel-scroll::-webkit-scrollbar-track { background: transparent; }
.ap-rail__panel-scroll::-webkit-scrollbar-thumb {
  background: rgba(200,144,62,.6);
  border-radius: 999px;
}
.ap-rail__panel--closing .ap-rail__panel-scroll {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}
.ap-rail__panel--opening .ap-rail__panel-scroll {
  opacity: 0;
  transform: translateY(-18px);
  transition: none;
}
.ap-rail__panel--open .ap-rail__panel-scroll {
  opacity: 1;
  transform: translateY(0);
}
.ap-rail__panel-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.ap-rail__panel h3 {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 1.375rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sh-cream); margin: 0;
  line-height: 1.1;
}
.ap-rail__panel p {
  font-family: var(--sh-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--sh-fg-muted);
  margin: 0 0 12px;
  max-width: 760px;
}
.ap-rail__panel p:last-child { margin-bottom: 0; }

/* ---------- Fundamentals grid ----------------------------------- */
.ap-fundamentals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid var(--sh-border);
  border-left: 1px solid var(--sh-border);
}
.ap-fundamental {
  appearance: none;
  border: 0;
  border-right: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  background: rgba(12,9,7,0.25);
  padding: 12px 14px 14px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto auto 0fr;
  gap: 0;
  min-height: 96px;
  transition: background var(--sh-dur),
              border-color var(--sh-dur),
              grid-template-rows 360ms var(--sh-ease-out);
  font-family: inherit;
}
.ap-fundamental:hover {
  background: rgba(200,144,62,0.06);
  border-color: var(--sh-border-warm);
}
.ap-fundamental.is-open {
  background: rgba(200,144,62,0.08);
  border-color: var(--sh-border-warm);
  grid-template-rows: auto auto 1fr;
}
.ap-fundamental__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.ap-fundamental__num {
  font-family: var(--sh-font-mono); font-size: 10px;
  color: var(--sh-gold); letter-spacing: .14em;
}
.ap-fundamental__icon {
  font-family: var(--sh-font-display); font-weight: 300;
  font-size: 18px; line-height: 1;
  color: var(--sh-gold);
  flex-shrink: 0;
  transition: transform var(--sh-dur);
}
.ap-fundamental.is-open .ap-fundamental__icon { transform: rotate(45deg); }
.ap-fundamental__theme {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sh-cream); line-height: 1.25;
  margin-top: 10px;
}
.ap-fundamental__desc {
  overflow: hidden;
  min-height: 0;
}
.ap-fundamental__desc p {
  font-family: var(--sh-font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--sh-fg-muted);
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--sh-border-warm);
}
@media (max-width: 1000px) {
  .ap-fundamentals { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .ap-fundamentals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .ap-fundamentals { grid-template-columns: 1fr; }
}

/* ---------- Testimonial ------------------------------------------ */
.ap-testimonial { max-width: 1080px; }
.ap-testimonial__header {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 760px;
}
.ap-testimonial__header .sh-rule { margin: 14px auto 0; }
.ap-testimonial__header .ap-section-title { margin: 0; }
/* Mobile: shrink and tighten the title so it stays on one line */
@media (max-width: 640px) {
  .ap-testimonial__header .ap-section-title {
    font-size: clamp(0.85rem, 4.2vw, 1.25rem);
    letter-spacing: .14em;
    white-space: nowrap;
  }
}
.ap-testimonial__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sh-border);
  box-shadow: var(--sh-shadow-raise);
  background: #0a0705;
  max-width: 960px; margin: 0 auto;
}
.ap-testimonial__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.ap-testimonial__cover {
  appearance: none; border: 0; cursor: pointer;
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1108;
  color: var(--sh-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  transition: transform 600ms var(--sh-ease-out);
}
.ap-testimonial__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,7,.25) 0%, rgba(12,9,7,.7) 100%);
}
.ap-testimonial__cover:hover { transform: scale(1.005); }
.ap-testimonial__play {
  position: relative; z-index: 1;
  width: 88px; height: 88px;
  border-radius: 999px;
  background: var(--sh-gold);
  color: var(--sh-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 60px rgba(200,144,62,.5);
  transition: transform 320ms var(--sh-ease-out), background 320ms var(--sh-ease-out);
}
.ap-testimonial__cover:hover .ap-testimonial__play {
  transform: scale(1.08); background: var(--sh-gold-200);
}
.ap-testimonial__label {
  position: relative; z-index: 1;
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sh-cream);
}

/* ---------- Curriculum -------------------------------------------- */
.ap-curriculum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px; margin: 0 auto;
}
.ap-curriculum__item {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  padding: 28px 26px;
  background: var(--sh-bg-raised);
  transition: border-color var(--sh-dur), transform var(--sh-dur);
}
.ap-curriculum__item:hover {
  border-color: var(--sh-gold);
  transform: translateY(-2px);
}
.ap-curriculum__num {
  font-family: var(--sh-font-mono); font-size: 11px;
  color: var(--sh-gold); margin-bottom: 16px;
}
.ap-curriculum__item h3 {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 1.125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sh-cream); margin: 0 0 10px;
}
.ap-curriculum__item p {
  font-family: var(--sh-font-body); font-size: 0.9375rem;
  line-height: 1.6; color: var(--sh-fg-muted); margin: 0;
}

/* ---------- Hosts ------------------------------------------------- */
.ap-hosts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.ap-hosts--single { grid-template-columns: minmax(0, 760px); justify-content: center; }
.ap-host { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.ap-host--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 32px;
}
.ap-host--centered .ap-host__img {
  width: 320px; aspect-ratio: 4 / 5;
  background-size: 145%;
  background-position: center 22%;
}
.ap-host--centered .ap-host__body { max-width: 680px; }
.ap-host__img {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-border);
}
.ap-host__body h3 {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: .1em; text-transform: uppercase;
  margin: 8px 0 14px; color: var(--sh-cream);
}
.ap-host__body p {
  font-family: var(--sh-font-body); font-size: 0.9375rem;
  line-height: 1.65; color: var(--sh-fg-muted); margin: 0;
}

/* ---------- Farm gallery ----------------------------------------- */
.ap-farm .sh-section-header { text-align: left; margin-bottom: 32px; }
.ap-farm .sh-section-header h2 { letter-spacing: .12em; }
.ap-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.ap-gallery__item {
  background-size: cover; background-position: center;
  border-radius: var(--sh-radius-md);
  border: 1px solid var(--sh-border);
}
.ap-gallery__item--tall { grid-row: span 2; }
.ap-gallery__item--wide { grid-column: span 2; }

/* ---------- "If you don't make this round" ------------------------ */
.ap-if {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.ap-if h2 {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .12em; text-transform: uppercase;
  color: var(--sh-cream); margin: 14px 0 18px;
}
.ap-if p {
  font-family: var(--sh-font-body); font-size: 1rem; line-height: 1.7;
  color: var(--sh-parchment); margin: 0 0 22px; max-width: 540px;
}
.ap-if__photo {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-border);
}

/* ---------- Details ----------------------------------------------- */
.ap-details {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.ap-details__row {
  display: grid; grid-template-columns: 220px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--sh-border);
  align-items: baseline;
}
.ap-details__k {
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sh-fg-subtle);
}
.ap-details__v {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sh-cream);
}

/* ---------- FAQ --------------------------------------------------- */
.ap-faq { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.ap-faq__list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--sh-border); }
.faq-item:last-child { border-bottom: 1px solid var(--sh-border); }
.faq-item__q {
  appearance: none; border: 0; background: transparent;
  width: 100%; padding: 22px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; text-align: left;
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 1rem; letter-spacing: .04em;
  color: var(--sh-cream);
  transition: color var(--sh-dur);
}
.faq-item__q:hover { color: var(--sh-gold-100); }
.faq-item__icon {
  font-family: var(--sh-font-display); font-weight: 300;
  font-size: 24px; color: var(--sh-gold);
  transition: transform var(--sh-dur);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--sh-ease-out);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner {
  overflow: hidden;
}
.faq-item.is-open .faq-item__a-inner { padding: 0 0 22px; }
.faq-item__a p {
  margin: 0 0 12px;
  font-family: var(--sh-font-body); font-size: 0.9375rem;
  line-height: 1.65; color: var(--sh-fg-muted);
}
.faq-item__a p:last-of-type { margin-bottom: 0; }
.faq-item__img {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: var(--sh-radius-md);
  border: 1px solid var(--sh-border);
  max-width: 560px;
}
.faq-item__cta {
  margin-top: 18px;
}
.sh-btn--gold.sh-btn--sm {
  padding: 10px 22px; font-size: 11px;
  border-radius: 4px;
}

/* ---------- Final CTA --------------------------------------------- */
.ap-cta {
  text-align: center;
  padding: 96px 40px 120px;
}
.ap-cta__title {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sh-cream); margin: 14px auto 24px;
  max-width: 920px; line-height: 1.1;
}
.ap-cta p {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.25rem; color: var(--sh-parchment);
  max-width: 640px; margin: 0 auto 36px;
}
.ap-cta__buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive -------------------------------------------- */
@media (max-width: 1100px) {
  .ap-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .ap-hero { padding: 56px 24px 0; min-height: auto; }
  .ap-quote-stack { grid-template-columns: 1fr; }
  .ap-curriculum { grid-template-columns: 1fr 1fr; }
  .ap-hosts { grid-template-columns: 1fr; gap: 32px; }
  .ap-host { grid-template-columns: 1fr; }
  .ap-host__img { aspect-ratio: 16 / 10; max-width: 320px; }
  .ap-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .ap-gallery__item--wide { grid-column: span 2; }
  .ap-if { grid-template-columns: 1fr; }
  .ap-faq { grid-template-columns: 1fr; gap: 24px; }
  .ap-details__row { grid-template-columns: 1fr; gap: 4px; }
}


/* ---------- Promise band (below curriculum) --------------------- */
.ap-promise { padding-top: 56px; padding-bottom: 56px; }
.ap-promise__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.ap-section-title {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  letter-spacing: .22em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--sh-gold-100, var(--sh-gold));
  margin: 0 0 14px;
}
.ap-promise__inner .sh-rule { margin: 0 auto 28px; }

/* ---------- Hero date list (sits under the Audition button) ----- */
.ap-hero__dates-block {
  margin: 6px 0 0;
  text-align: center;
}
.ap-hero__dates-label {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin: 0 0 10px;
  opacity: .9;
}
.ap-hero__dates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: .04em;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.45;
  color: var(--sh-cream);
  text-align: center;
}
.ap-hero__date { white-space: nowrap; }
.ap-hero__date-num {
  font-family: var(--sh-font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--sh-gold);
  margin-right: 6px;
  letter-spacing: .04em;
}
@media (max-width: 560px) {
  .ap-hero__date { white-space: normal; }
}

/* ---------- Oversized Audition button in the hero -------------- */
.ap-hero__register.sh-btn--xl {
  font-size: 0.95rem;
  letter-spacing: .26em;
  padding: 24px 52px;
  border-radius: 8px;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 14px 32px -10px rgba(200,144,62,.55),
    0 4px 16px rgba(0,0,0,.4);
  transition: transform var(--sh-dur), box-shadow var(--sh-dur), background var(--sh-dur), letter-spacing var(--sh-dur);
}
.ap-hero__register.sh-btn--xl:hover {
  transform: translateY(-2px);
  letter-spacing: .34em;
  box-shadow:
    0 20px 40px -10px rgba(200,144,62,.65),
    0 6px 20px rgba(0,0,0,.45);
}
@media (max-width: 760px) {
  .ap-hero__register.sh-btn--xl {
    font-size: 0.8125rem;
    padding: 20px 32px;
    letter-spacing: .22em;
    width: 100%;
    max-width: 460px;
  }
}
.ap-promise__lede {
  font-family: var(--sh-font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--sh-parchment);
  margin: 0 0 28px;
}
.ap-promise__pull {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.45;
  color: var(--sh-cream);
  margin: 0;
  text-wrap: pretty;
}
.ap-promise__pull em {
  color: var(--sh-gold-100, var(--sh-gold));
  font-style: italic;
}


/* ---------- Apply CTA (above tickets widget) -------------------- */
.ap-apply {
  display: flex;
  justify-content: center;
  margin: -8px auto 32px;
}
.ap-apply__btn.sh-btn--xl {
  font-size: 0.875rem;
  letter-spacing: .24em;
  padding: 22px 44px;
  border-radius: 6px;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 12px 28px -10px rgba(200,144,62,.5),
    0 4px 14px rgba(0,0,0,.35);
  transition: transform var(--sh-dur), box-shadow var(--sh-dur), background var(--sh-dur);
}
.ap-apply__btn.sh-btn--xl:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px -10px rgba(200,144,62,.6),
    0 6px 18px rgba(0,0,0,.4);
}
@media (max-width: 760px) {
  .ap-apply__btn.sh-btn--xl {
    font-size: 0.8125rem;
    padding: 18px 28px;
    letter-spacing: .2em;
    width: 100%;
    max-width: 480px;
    text-align: center;
  }
}


/* ---------- Hero meta line (under CTA) -------------------------- */
.ap-hero__meta {
  margin-top: 18px;
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--sh-parchment);
  letter-spacing: .01em;
  max-width: 520px;
}
@media (max-width: 1100px) {
  .ap-hero__meta { margin: 14px auto 0; text-align: center; }
}

/* ---------- Vinyl Tracklist (curriculum) ------------------------- */
.tl-sleeve {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--sh-border-warm);
  border-radius: var(--sh-radius-lg);
  background: linear-gradient(180deg, rgba(28,22,17,.65), rgba(12,9,7,.85));
  padding: 28px 36px 36px;
  box-shadow: var(--sh-shadow-raise);
}
.tl-sleeve__head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--sh-border-warm);
  padding-bottom: 16px;
  margin-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.tl-sleeve__title {
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sh-cream);
}
.tl-sleeve__meta {
  font-family: var(--sh-font-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--sh-parchment);
}
.tl-sleeve__meta b { color: var(--sh-gold); font-weight: 500; }

.tl-track { border-bottom: 1px solid var(--sh-border); transition: background var(--sh-dur); }
.tl-track:last-child { border-bottom: 0; }
.tl-track.is-open { background: rgba(200,144,62,.04); }

.tl-track__row {
  appearance: none; border: 0; background: transparent;
  width: 100%;
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 18px; align-items: center;
  padding: 16px 4px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--sh-cream);
  transition: color var(--sh-dur);
}
.tl-track__row:hover,
.tl-track.is-open .tl-track__row { color: var(--sh-gold-100); }

.tl-track__num {
  font-family: var(--sh-font-mono); font-size: 13px;
  letter-spacing: .12em; color: var(--sh-gold);
}
.tl-track__name {
  font-family: var(--sh-font-display); font-weight: 500;
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.2;
}
.tl-track.is-open .tl-track__name { font-weight: 700; }

.tl-track__icon {
  font-family: var(--sh-font-display); font-size: 22px; font-weight: 300;
  color: var(--sh-gold);
  transition: transform var(--sh-dur);
  line-height: 1;
}
.tl-track.is-open .tl-track__icon { transform: rotate(45deg); }

.tl-track__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--sh-ease-out);
}
.tl-track.is-open .tl-track__panel { grid-template-rows: 1fr; }
.tl-track__panel-inner { overflow: hidden; min-height: 0; }
.tl-track.is-open .tl-track__panel-inner { padding: 4px 0 24px 54px; }
.tl-track__panel p {
  font-family: var(--sh-font-body); font-size: 0.9375rem;
  line-height: 1.65; color: var(--sh-fg-muted);
  margin: 0 0 10px;
  max-width: 620px;
}
.tl-track__panel p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .tl-sleeve { padding: 22px 20px; }
  .tl-track__row { grid-template-columns: 28px 1fr auto; gap: 12px; padding: 14px 0; }
  .tl-track.is-open .tl-track__panel-inner { padding-left: 40px; }
}
