/* Landing page — choose a camp */

.camps-stage {
  position: relative;
  padding: 56px 40px 96px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(200,144,62,.18), transparent 60%),
    radial-gradient(ellipse at 20% 0%, rgba(58,39,24,.5), transparent 60%),
    var(--sh-bg);
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center;
}

.camps-stage__intro {
  max-width: 820px;
  margin: 24px auto 56px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.camps-stage__title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sh-cream);
  margin: 18px 0 0;
}
.camps-stage__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.9em;
}
.camps-stage__lede {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.25rem; line-height: 1.55;
  color: var(--sh-parchment);
  margin: 22px auto 0; max-width: 580px;
}
.camps-stage__hint {
  position: relative; z-index: 2;
  margin-top: 56px;
  font-family: var(--sh-font-mono);
  font-size: 12px;
  color: var(--sh-fg-subtle);
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: .08em;
}
.camps-stage__hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sh-gold);
  box-shadow: 0 0 12px var(--sh-ember-glow);
  animation: hint-pulse 2.4s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ---------- Card deck ---------------------------------------------- */
.camps-deck {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%; max-width: 1280px;
}
.camps-deck__divider {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.camps-deck__divider::before {
  content: ""; position: absolute;
  top: 30%; bottom: 30%; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sh-border) 30%, var(--sh-border) 70%, transparent);
}
.camps-deck__or {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.5rem; color: var(--sh-gold);
  background: var(--sh-bg);
  padding: 8px 0;
  position: relative; z-index: 1;
}

/* ---------- Camp Card --------------------------------------------- */
.camp-card {
  position: relative;
  display: block;
  text-decoration: none; color: var(--sh-cream);
  /* Thicker gold border so the two camps read as featured cards */
  border: 5px solid var(--sh-gold);
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  min-height: 560px;
  background: var(--sh-bg-raised);
  box-shadow: var(--sh-shadow-card);
  transition: transform 480ms var(--sh-ease-out),
              box-shadow 480ms var(--sh-ease-out),
              border-color 480ms var(--sh-ease-out),
              filter 480ms var(--sh-ease-out);
  isolation: isolate;
}
/* Default rest: both cards look bright and clickable.
   We only dim a card when the OTHER one is being hovered. */
.camp-card.is-rest {
  filter: none;
  border-color: var(--sh-gold);
  box-shadow:
    0 10px 28px -12px rgba(200,144,62,.35),
    0 0 0 1px rgba(200,144,62,.18),
    var(--sh-shadow-card, 0 0 0 transparent);
}
.camps-stage--bootcamp .camp-card--apprentice.is-rest,
.camps-stage--apprentice .camp-card--bootcamp.is-rest {
  filter: saturate(.75) brightness(.85);
  border-color: var(--sh-gold-600);
}
.camp-card.is-hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-shadow-glow);
  border-color: var(--sh-gold-100);
  filter: none;
  z-index: 3;
}

.camp-card__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 1.4s var(--sh-ease-out), filter 600ms var(--sh-ease-out);
  filter: saturate(1) brightness(.88) contrast(1.05);
}
.camp-card.is-hover .camp-card__photo {
  transform: scale(1.12);
  filter: saturate(1.1) brightness(.98) contrast(1.1);
}
.camp-card__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,7,0.15) 0%, rgba(12,9,7,0.45) 45%, rgba(12,9,7,0.82) 100%);
  transition: background 480ms var(--sh-ease-out);
}
.camp-card--apprentice .camp-card__veil {
  background:
    linear-gradient(180deg, rgba(12,9,7,0.2) 0%, rgba(42,29,20,0.45) 45%, rgba(12,9,7,0.82) 100%);
}
.camp-card.is-hover .camp-card__veil {
  background:
    linear-gradient(180deg, rgba(12,9,7,0.1) 0%, rgba(12,9,7,0.42) 50%, rgba(12,9,7,0.85) 100%);
}

.camp-card__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%;
  min-height: 560px;
  padding: 32px 36px 36px;
}
.camp-card__top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.camp-card__num {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--sh-fg-subtle);
}

.camp-card__body { margin-top: auto; }
.camp-card__meta {
  font-family: var(--sh-font-display);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 16px;
}
.camp-card__title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 2.6vw, 2.625rem);
  line-height: 1.0;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sh-cream);
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  transition: letter-spacing 480ms var(--sh-ease-out), color 480ms var(--sh-ease-out);
}
.camp-card.is-hover .camp-card__title {
  letter-spacing: .14em;
  color: var(--sh-gold-100);
}
.camp-card__lede {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: 1.125rem; line-height: 1.5;
  color: var(--sh-parchment);
  margin: 18px 0 24px;
  max-width: 460px;
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height 600ms var(--sh-ease-out), opacity 480ms var(--sh-ease-out), margin 480ms var(--sh-ease-out);
}
.camp-card.is-hover .camp-card__lede {
  max-height: 200px; opacity: 1;
}
.camp-card__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sh-font-display);
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sh-cream);
  padding-top: 18px;
  border-top: 1px solid var(--sh-border);
  transition: letter-spacing 480ms var(--sh-ease-out), color 480ms var(--sh-ease-out), border-color 480ms var(--sh-ease-out);
}
.camp-card.is-hover .camp-card__cta {
  letter-spacing: .34em;
  color: var(--sh-gold-100);
  border-top-color: var(--sh-border-warm);
}
.camp-card__cta-arrow {
  display: inline-block;
  transition: transform 480ms var(--sh-ease-out);
}
.camp-card.is-hover .camp-card__cta-arrow {
  transform: translateX(8px);
}

/* ---------- "Select a camp to learn more" — under Two Camps ------ */
.camps-stage__hint-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sh-gold);
  text-align: center;
  margin: 18px 0 0;
}
.camps-stage__hint-label::before,
.camps-stage__hint-label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sh-gold);
  opacity: .85;
}

/* ---------- Upcoming dates row (sits directly under the deck) ------- */
.camps-deck__dates {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  width: 100%; max-width: 1280px;
  margin: 22px 0 0;
}
.camps-deck__dates-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sh-font-display);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sh-gold);
}
.camps-deck__dates-col li {
  white-space: normal;
}
.camps-deck__dates-col--left {
  text-align: left;
  padding-right: 8px;
}
.camps-deck__dates-col--right {
  text-align: left;
  padding-left: 8px;
}

/* ---------- Spinning record ---------------------------------------- */
.camp-card__record {
  position: absolute;
  top: 60px; right: -120px;
  width: 320px; height: 320px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translateX(80px) rotate(-12deg) scale(0.85);
  transition: transform 600ms var(--sh-ease-out), opacity 480ms var(--sh-ease-out);
}
.camp-card--right .camp-card__record {
  right: auto; left: -120px;
  transform: translateX(-80px) rotate(12deg) scale(0.85);
}
.camp-card.is-hover .camp-card__record {
  opacity: 1;
  transform: translateX(0) rotate(0) scale(1);
}

.record-disc {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    /* concentric grooves — fine ridges that catch light when spinning */
    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 — angled highlight off the surface */
    conic-gradient(from 215deg at 50% 50%,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,.14) 30deg,
      rgba(255,255,255,.02) 75deg,
      rgba(255,255,255,0) 130deg,
      rgba(255,255,255,0) 215deg,
      rgba(255,255,255,.09) 245deg,
      rgba(255,255,255,0) 300deg,
      rgba(255,255,255,0) 360deg),
    /* deep black vinyl body */
    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 30px rgba(0,0,0,.75),
    0 30px 80px -20px rgba(0,0,0,.9),
    0 0 40px rgba(243,234,216,0.10);
  animation: record-spin 6s linear infinite;
  animation-play-state: paused;
}
.camp-card.is-hover .record-disc {
  animation-play-state: running;
}
@keyframes record-spin {
  to { transform: rotate(360deg); }
}

.record-grooves {
  position: absolute; inset: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 28%, rgba(0,0,0,.45) 28.5%, transparent 30%),
    radial-gradient(circle at center, transparent 30%, rgba(255,255,255,.04) 30.4%, transparent 32%);
  pointer-events: none;
}

.record-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42%; height: 42%;
  border-radius: 50%;
  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;
  box-shadow:
    inset 0 0 0 1px rgba(74,51,36,0.22),
    inset 0 0 0 2px rgba(255,255,255,.5),
    inset 0 -6px 14px rgba(74,51,36,0.10),
    0 0 0 3px rgba(0,0,0,.45),
    0 0 0 4px rgba(255,255,255,.06);
  padding: 10px;
}
.record-label__line {
  font-family: var(--sh-font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: #b8553a;
  line-height: 1.05;
  max-width: 100%;
  text-align: center;
  word-break: keep-all;
}
.record-label__line--short {
  font-size: 13px;
  letter-spacing: .14em;
}
.record-label__line--long {
  font-size: 10px;
  letter-spacing: .04em;
}
.record-label__sub {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #2a2520;
  margin-top: 6px;
}
.record-spindle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  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);
}

/* curved orbiting text — sits on top, separate animation */
.record-curved-text {
  position: absolute; inset: -20px;
  width: calc(100% + 40px); height: calc(100% + 40px);
  color: #b8553a;
  animation: record-spin 14s linear infinite;
  animation-play-state: paused;
  filter: drop-shadow(0 0 8px rgba(243,234,216,.5));
}
.camp-card.is-hover .record-curved-text {
  animation-play-state: running;
}
.record-curved-text__t {
  font-family: var(--sh-font-display);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

/* ---------- Comparison table --------------------------------------- */
.camps-side-by-side { padding-top: 96px; padding-bottom: 96px; }
.comparison {
  border-top: 1px solid var(--sh-border);
}
.comparison__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 22px 12px;
  align-items: center;
  border-bottom: 1px solid var(--sh-border);
}
.comparison__row--head {
  padding: 32px 12px;
  background: linear-gradient(to bottom, transparent, rgba(200,144,62,0.04));
}
.comparison__label {
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sh-fg-muted);
}
.comparison__col {
  font-family: var(--sh-font-body);
  font-size: 15px; line-height: 1.5;
  color: var(--sh-fg-muted);
}
.comparison__col--gold { color: var(--sh-cream); }
.comparison__col-title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: .08em;
  color: var(--sh-cream);
  margin-top: 8px;
}
.comparison__col--gold .comparison__col-title { color: var(--sh-gold-100); }
.comparison__row--cta { padding: 32px 12px; border-bottom: 0; }

/* ---------- Quote band -------------------------------------------- */
.sh-quote-band {
  background: var(--sh-bg-warm);
  padding: 96px 40px;
  text-align: center;
}
.sh-quote-band blockquote {
  font-family: var(--sh-font-serif); font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.0rem);
  line-height: 1.4;
  color: var(--sh-cream);
  max-width: 760px;
  margin: 18px auto;
}
.sh-quote-band__by {
  font-family: var(--sh-font-display); font-size: 11px;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--sh-gold);
}

/* ---------- Responsive --------------------------------------------- */
@media (max-width: 900px) {
  .camps-stage { padding: 32px 16px 56px; }
  .camps-deck { grid-template-columns: 1fr; gap: 18px; }
  .camps-deck__divider { display: none; }
  .camps-deck__dates {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }
  .camps-deck__dates-spacer { display: none; }
  .camps-deck__dates-col--left,
  .camps-deck__dates-col--right { padding: 0; }
  /* Mobile: make the camp cards short rectangles (info-card shape)
     instead of the tall near-square they used to be. */
  .camp-card { min-height: 280px; }
  .camp-card__inner { min-height: 280px; padding: 22px; }
  .camp-card__lede { max-height: 120px; opacity: 1; }
  .camp-card__record { display: none; }
  .camp-card.is-rest { filter: none; }
  .comparison__row, .comparison__row--head, .comparison__row--cta {
    grid-template-columns: 1fr; gap: 8px;
  }
  .comparison__label { color: var(--sh-gold); margin-top: 6px; }
  .sh-quote-band { padding: 64px 22px; }
}


/* ---------- Camp card subtitle ----------------------------------- */
.camp-card__subtitle {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--sh-gold-100, var(--sh-gold));
  margin: 10px 0 0;
  max-width: 32ch;
  opacity: .92;
}

/* ---------- Landing tickets section ------------------------------ */
.camps-tickets {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 56px auto 0;
}
.camps-tickets__widget {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(28,22,17,.55);
  border: 1px solid var(--sh-border-warm);
  border-radius: var(--sh-radius-lg);
  padding: 24px;
  min-height: 360px;
}
.camps-tickets__widget .tt-widget { width: 100%; }
.camps-tickets__widget .tt-widget iframe {
  width: 100% !important;
  min-height: 520px;
  border: 0;
  background: transparent;
}
.camps-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;
}
.camps-tickets__widget .tt-widget-fallback a {
  color: var(--sh-gold);
  text-decoration: underline;
}

/* ---------- Custom Dates list (replaces TT widget) --------------- */
.camps-dates-block {
  max-width: 980px;
  margin: 0 auto 56px;
}
.camps-dates-block:last-child { margin-bottom: 0; }

.camps-dates-block__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--sh-font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sh-gold);
  text-align: center;
  margin: 0 0 22px;
}
.camps-dates-block__label::before,
.camps-dates-block__label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sh-gold);
  opacity: .85;
}

.camps-dates-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.camps-dates-row {
  border-top: 1px solid var(--sh-border);
  transition: background var(--sh-dur);
}
.camps-dates-row:last-child {
  border-bottom: 1px solid var(--sh-border);
}
.camps-dates-row__link {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 26px 24px;
  text-decoration: none;
  color: var(--sh-cream);
  transition: background var(--sh-dur), color var(--sh-dur);
}
.camps-dates-row__link:hover {
  background: rgba(200,144,62,.06);
}
.camps-dates-row__num {
  font-family: var(--sh-font-mono, var(--sh-font-display));
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--sh-gold);
}
.camps-dates-row__name {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--sh-parchment);
  line-height: 1.3;
}
.camps-dates-row__range {
  display: inline-flex;
  align-items: baseline;
  gap: 22px;
  font-family: var(--sh-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sh-cream);
}
.camps-dates-row__month {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1;
}
.camps-dates-row__days {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1;
  color: var(--sh-gold-100, var(--sh-cream));
  letter-spacing: .04em;
}
.camps-dates-row__year {
  font-family: var(--sh-font-mono, var(--sh-font-display));
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--sh-fg-muted);
  min-width: 4ch;
  text-align: right;
}

@media (max-width: 760px) {
  .camps-dates-row__link {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    padding: 20px 14px;
  }
  .camps-dates-row__num { grid-row: 1; grid-column: 1; }
  .camps-dates-row__name { grid-row: 1; grid-column: 2; font-size: 1rem; }
  .camps-dates-row__range {
    grid-row: 2; grid-column: 2;
    gap: 14px;
  }
  .camps-dates-row__month,
  .camps-dates-row__days { font-size: 1.5rem; }
  .camps-dates-row__year {
    grid-row: 2; grid-column: 1;
    text-align: left;
    font-size: 11px;
    align-self: end;
  }
}
