:root {
  --bg: #f2f6f3;
  --surface: #ffffff;
  --surface-alt: #f8faf8;
  --surface-sage: #eef4ef;
  --section-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 248, 0.98) 100%);
  --section-tint: linear-gradient(180deg, rgba(236, 243, 237, 0.96) 0%, rgba(229, 238, 231, 0.98) 100%);
  --sage: #d9e6da;
  --sage-deep: #b8c8ba;
  --ink: #1f2926;
  --muted: #68736f;
  --border: #d7e1da;
  --border-strong: #c5d1c8;
  --shadow: 0 18px 40px rgba(31, 41, 38, 0.06);
  --wrap: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(217, 230, 218, 0.42) 0%, rgba(217, 230, 218, 0) 28%),
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 200px, var(--bg) 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  border-bottom-color: rgba(40, 49, 47, 0.08);
  box-shadow: 0 10px 28px rgba(31, 41, 38, 0.06);
}

.header-grid {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 24px 0 22px;
}

.header-grid--center {
  justify-items: center;
}

.brand img {
  width: min(420px, 82vw);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 12px 20px rgba(40, 49, 47, 0.12));
}

main {
  padding-bottom: 56px;
}

.hero,
.content-section,
.band-section,
.site-footer {
  position: relative;
}

.hero,
.content-section,
.band-section {
  padding: 82px 0;
}

.content-section::before,
.band-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100vw - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 41, 38, 0.1), transparent);
  transform: translateX(-50%);
}

.hero {
  padding-top: 34px;
}

.band-section {
  background: linear-gradient(180deg, rgba(248, 250, 248, 0.88) 0%, rgba(241, 246, 242, 0.96) 100%);
}

.band-section--white {
  background: var(--surface);
}

.section-tone--surface {
  background: var(--section-surface);
}

.section-tone--tint {
  background: var(--section-tint);
}

.hero-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.hero-heading h1,
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero-heading h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.02;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  line-height: 1.02;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.95rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.18;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow--icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.video-section {
  padding-top: 28px;
}

.video-card {
  display: grid;
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.video-header {
  display: grid;
  justify-items: center;
}

.video-header__logo {
  width: min(100%, 420px);
  height: auto;
}

.video-player {
  width: 100%;
}

.video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-strong);
  background: #101414;
  box-shadow: 0 14px 32px rgba(15, 22, 20, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-embed:hover,
.video-embed:focus-visible {
  transform: translateY(-2px);
  border-color: #b9c8bc;
  box-shadow: 0 20px 42px rgba(15, 22, 20, 0.1);
}

.video-details {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.video-details__eyebrow,
.video-details__date,
.video-details__venue,
.video-details__location {
  margin: 0;
}

.video-details__eyebrow {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-details__date {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.video-details__venue,
.video-details__location {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-carousel {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(26, 32, 30, 0.34);
  color: #fff;
  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.feature-carousel__nav--prev {
  left: 18px;
}

.feature-carousel__nav--next {
  right: 18px;
}

.feature-carousel:hover .feature-carousel__nav,
.feature-carousel:focus-within .feature-carousel__nav {
  opacity: 1;
  pointer-events: auto;
}

.feature-carousel__nav:hover,
.feature-carousel__nav:focus-visible {
  background: rgba(26, 32, 30, 0.56);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.feature-carousel__nav:focus-visible {
  outline: 0;
}

.feature-carousel__nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-carousel__track {
  position: relative;
  min-height: clamp(280px, 38vw, 560px);
  background: transparent;
  overflow: hidden;
  transition: height 0.35s ease;
  border: 1px solid var(--border-strong);
  box-shadow: 0 22px 50px rgba(31, 41, 38, 0.05);
}

.feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.feature-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  z-index: 3;
}

.feature-slide.is-entering,
.feature-slide.is-exiting {
  visibility: visible;
}

.feature-slide.is-entering {
  opacity: 1;
  z-index: 3;
  animation: heroSlideIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide.is-exiting {
  z-index: 2;
  animation: heroSlideOut 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--surface);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.split-layout--reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.content-copy {
  max-width: 430px;
}

.content-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-lead {
  max-width: 40ch;
  white-space: normal;
  font-size: 1.03rem;
  margin: 0;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.licensing-section {
  display: grid;
  gap: 34px;
}

.licensing-header {
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.licensing-meta-row {
  display: block;
  margin-top: 16px;
}

.licensing-detail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.licensing-register-card {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.licensing-register-card__header {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.licensing-register-card__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.licensing-register-card__title {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
  max-width: 36ch;
}

.licensing-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 18px;
}

.licensing-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  max-width: 100%;
  border: 1px solid #5d7164;
  background: linear-gradient(180deg, #2c3b36 0%, #202b28 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  box-shadow: 0 12px 24px rgba(31, 41, 38, 0.1);
  overflow: hidden;
  isolation: isolate;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.licensing-actions__button::before,
.workshop-actions__button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -140%;
  width: 120%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 100%);
  transform: skewX(-22deg);
  transition: transform 0.55s ease;
  z-index: -1;
}

.licensing-actions__button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.licensing-actions__button:hover,
.licensing-actions__button:focus-visible {
  background: linear-gradient(180deg, #344640 0%, #26322f 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(31, 41, 38, 0.14);
}

.licensing-actions__button:hover::before,
.licensing-actions__button:focus-visible::before,
.workshop-actions__button:hover::before,
.workshop-actions__button:focus-visible::before {
  transform: translateX(220%) skewX(-22deg);
}

.licensing-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: transparent;
}

.licensing-media img {
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.licensing-media:hover img {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(31, 41, 38, 0.09);
}

.weekly-sessions-header {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.weekly-sessions-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.weekly-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.session-card {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid #bfd0c1;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.session-card:hover,
.session-card:focus-within {
  transform: translateY(-3px);
  border-color: #c6d1c7;
  box-shadow: 0 20px 40px rgba(31, 41, 38, 0.08);
}

.session-card img {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.session-card__body {
  display: grid;
  gap: 14px;
  padding: 20px 20px 22px;
}

.session-card__details {
  display: grid;
  gap: 8px;
}

.session-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.session-card__detail svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.session-card__button {
  width: 100%;
}

.framed-media {
  padding: 0;
  background: transparent;
  border: 0;
}

.framed-media img {
  width: 100%;
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
}

.stacked-media {
  display: grid;
  gap: 18px;
}

.stacked-media img {
  padding: 12px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.schedule-card {
  overflow: hidden;
}

.schedule-card img {
  width: 100%;
  background: var(--surface-alt);
}

.schedule-card__body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--border);
}

.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.duo-grid--center {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
}

.duo-card {
  display: grid;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.duo-card__copy--center {
  text-align: center;
}

.duo-card--center h3 {
  margin-top: 0;
}

.duo-card img,
.gallery-card img {
  width: 100%;
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1120px;
  margin: 28px auto 0;
  padding-bottom: 4px;
}

.workshop-carousel {
  position: relative;
}

.workshop-carousel__nav,
.workshop-carousel__dots {
  display: none;
}

.workshop-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(26, 32, 30, 0.58);
  color: #fff;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.workshop-carousel__nav:disabled {
  opacity: 0.45;
}

.workshop-carousel__nav--prev {
  left: 8px;
}

.workshop-carousel__nav--next {
  right: 8px;
}

.workshop-carousel__nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workshop-carousel__dots {
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.workshop-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: rgba(104, 115, 111, 0.28);
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.workshop-carousel__dot.is-active {
  background: #2c3b36;
  transform: scale(1.15);
}

.workshop-gallery::-webkit-scrollbar {
  height: 10px;
}

.workshop-gallery::-webkit-scrollbar-thumb {
  background: var(--sage-deep);
}

.workshop-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 34px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.workshop-actions__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.workshop-actions__text {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
}

.workshop-actions__text--single-line-desktop {
  white-space: nowrap;
}

.workshop-actions__text strong {
  color: var(--ink);
  font-weight: 700;
}

.workshop-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  max-width: 100%;
  border: 1px solid #5d7164;
  background: linear-gradient(180deg, #2c3b36 0%, #202b28 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  box-shadow: 0 12px 24px rgba(31, 41, 38, 0.1);
  overflow: hidden;
  isolation: isolate;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.workshop-actions__button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workshop-actions__button:hover,
.workshop-actions__button:focus-visible {
  background: linear-gradient(180deg, #344640 0%, #26322f 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(31, 41, 38, 0.14);
}

.workshop-card {
  width: 100%;
  padding: 0;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: none;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.workshop-card:hover,
.workshop-card:focus-visible {
  transform: translateY(-2px);
  border-color: #bcc9be;
  box-shadow: 0 16px 34px rgba(31, 41, 38, 0.08);
}

.workshop-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.workshop-card:hover img,
.workshop-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.qualifiers-section {
  padding-top: 48px;
}

.qualifiers-header {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 32px;
  text-align: center;
}

.qualifiers-title {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.qualifiers-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.qualifiers-copy--single-line-desktop {
  max-width: none;
  white-space: nowrap;
}

.qualifiers-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.qualifiers-media:hover,
.qualifiers-media:focus-visible {
  transform: translateY(-2px);
  border-color: #bcc9be;
  box-shadow: 0 24px 44px rgba(31, 41, 38, 0.1);
}

.qualifiers-media img {
  width: 100%;
  display: block;
}

.qualifiers-actions {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}

.qualifiers-carousel {
  max-width: 1080px;
  margin: 0 auto;
}

.feature-carousel--hero .feature-carousel__track,
.qualifiers-carousel .feature-carousel__track {
  min-height: clamp(320px, 42vw, 780px);
  background: var(--surface);
}

.feature-carousel--hero .feature-slide img,
.qualifiers-carousel .feature-slide img {
  object-fit: contain;
}

.feature-carousel--hero .feature-carousel__nav,
.qualifiers-carousel .feature-carousel__nav {
  opacity: 1;
  pointer-events: auto;
  background: rgba(26, 32, 30, 0.5);
  border-color: rgba(255, 255, 255, 0.84);
}

.qualifiers-media--carousel {
  height: 100%;
  border: 0;
  box-shadow: none;
}

.qualifiers-media--carousel:hover,
.qualifiers-media--carousel:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.qualifiers-media--carousel img {
  height: 100%;
  object-fit: contain;
}

.album-section {
  padding-top: 48px;
}

.album-header {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 36px;
  text-align: center;
}

.album-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.album-copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.album-actions {
  display: grid;
  justify-items: center;
  margin-top: 6px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.album-photo {
  width: 100%;
  padding: 0;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: none;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.album-photo:hover,
.album-photo:focus-visible {
  transform: translateY(-2px);
  border-color: #bcc9be;
  box-shadow: 0 16px 34px rgba(31, 41, 38, 0.08);
}

.album-photo img {
  width: 100%;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card__body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--border);
}

.office-section {
  padding-top: 40px;
}

.office-header {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.office-title {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.office-copy {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.office-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 178px;
  padding: 24px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 248, 0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.office-card:hover,
.office-card:focus-visible {
  transform: translateY(-3px);
  border-color: #bcc9be;
  box-shadow: 0 24px 46px rgba(31, 41, 38, 0.09);
}

.office-card:focus-visible {
  outline: 0;
}

.office-card.is-active {
  border-color: #5d7164;
  background: linear-gradient(180deg, #2c3b36 0%, #202b28 100%);
  box-shadow: 0 24px 46px rgba(31, 41, 38, 0.14);
}

.office-card.is-active .eyebrow,
.office-card.is-active .eyebrow svg,
.office-card.is-active .office-address,
.office-card.is-active .office-address svg {
  color: rgba(255, 255, 255, 0.82);
  stroke: rgba(255, 255, 255, 0.82);
}

.office-card.is-active h2 {
  color: #ffffff;
}

.office-card .eyebrow {
  margin-bottom: 2px;
}

.office-card h2 {
  max-width: none;
  font-size: clamp(1.28rem, 1.58vw, 1.72rem);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: anywhere;
}

.office-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.office-address svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-map {
  margin-top: 24px;
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(31, 41, 38, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.office-map:hover {
  transform: translateY(-2px);
  border-color: #bcc9be;
  box-shadow: 0 24px 44px rgba(31, 41, 38, 0.09);
}

.site-footer {
  margin-top: 40px;
  padding: 56px 0 60px;
  background: linear-gradient(180deg, #26322f 0%, #1d2523 100%);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(22, 29, 28, 0.82);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 920px);
  max-height: 88vh;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.lightbox__image {
  width: 100%;
  max-height: calc(88vh - 32px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}


.footer-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: min(220px, 52vw);
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-copy svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0.35;
    transform: translate3d(14%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-14%, 0, 0);
  }
}

.reveal-item {
  will-change: opacity, transform, filter;
}

html.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.motion-ready .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1024px) {
  .split-layout,
  .split-layout--reverse,
  .licensing-detail-row,
  .duo-grid,
  .album-grid,
  .gallery-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .split-layout--reverse {
    gap: 28px;
  }

  .duo-grid--center {
    grid-template-columns: 1fr;
  }

  .workshop-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: none;
  }

  .gallery-card--wide {
    grid-column: span 1;
  }

  .feature-carousel__track {
    min-height: clamp(240px, 46vw, 420px);
  }

  .feature-carousel__nav {
    width: 44px;
    height: 44px;
  }

  .feature-carousel__nav--prev {
    left: 10px;
  }

  .feature-carousel__nav--next {
    right: 10px;
  }

  .content-copy {
    max-width: none;
  }

  .licensing-actions {
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: min(100vw - 24px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-grid {
    padding: 18px 0;
  }

  .hero,
  .content-section,
  .band-section {
    padding: 56px 0;
  }

  .weekly-sessions-header,
  .qualifiers-header,
  .office-header,
  .album-header {
    margin-bottom: 24px;
  }

  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .weekly-sessions-grid {
    grid-template-columns: 1fr;
  }

  .hero-heading {
    margin-bottom: 18px;
  }

  .hero-banner,
  .feature-carousel,
  .split-layout,
  .video-card,
  .duo-card {
    padding: 0;
  }

  .office-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-card h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    white-space: normal;
  }

  .office-map {
    aspect-ratio: 4 / 3;
  }

  .workshop-carousel {
    margin-top: 28px;
    padding-inline: 10px;
  }

  .workshop-carousel__nav {
    display: grid;
  }

  .workshop-carousel__dots {
    display: flex;
  }

  .workshop-gallery {
    display: flex;
    gap: 14px;
    margin-top: 0;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .workshop-gallery::-webkit-scrollbar {
    display: none;
  }

  .workshop-card {
    flex: 0 0 calc(100% - 28px);
    scroll-snap-align: center;
  }

  .pill-row--three {
    grid-template-columns: 1fr;
  }

  .workshop-actions {
    padding: 0;
  }

  .workshop-actions__button,
  .licensing-actions__button {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .licensing-actions {
    align-items: flex-start;
    justify-content: center;
  }

  .section-lead {
    white-space: normal;
  }

  .workshop-actions__text--single-line-desktop {
    white-space: normal;
  }

  .licensing-register-card {
    padding: 0;
  }

  .framed-media,
  .stacked-media img {
    padding: 10px;
  }

  .feature-carousel__track {
    min-height: 220px;
  }

  .feature-carousel--hero .feature-carousel__track,
  .qualifiers-carousel .feature-carousel__track {
    min-height: clamp(220px, 62vw, 420px);
  }

  h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .video-details__venue,
  .video-details__location {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .qualifiers-copy--single-line-desktop {
    white-space: normal;
  }

  .session-card__body,
  .schedule-card__body,
  .gallery-card__body {
    padding: 18px 16px;
  }

  .session-card__detail,
  .office-address {
    align-items: flex-start;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__dialog {
    width: min(100vw - 16px, 920px);
    max-height: 92vh;
    padding: 12px;
  }

  .lightbox__image {
    max-height: calc(92vh - 24px);
  }
}

@media (max-width: 520px) {
  .hero,
  .content-section,
  .band-section {
    padding: 48px 0;
  }

  .feature-carousel__nav {
    width: 38px;
    height: 38px;
  }

  .feature-carousel__nav svg {
    width: 18px;
    height: 18px;
  }

  .feature-carousel__nav--prev {
    left: 8px;
  }

  .feature-carousel__nav--next {
    right: 8px;
  }

  .feature-carousel--hero .feature-carousel__track,
  .qualifiers-carousel .feature-carousel__track {
    min-height: clamp(190px, 64vw, 320px);
  }

  .album-grid {
    grid-template-columns: 1fr;
  }

  .workshop-carousel {
    padding-inline: 6px;
  }

  .workshop-card {
    flex-basis: calc(100% - 20px);
  }

  .video-details__date {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }
}
