:root {
  --ink: #242236;
  --muted: #686577;
  --paper: #fffdf8;
  --warm-paper: #f6efe5;
  --blue: #25268a;
  --blue-dark: #171853;
  --sage: #dfeee8;
  --mint: #edf8f4;
  --clay: #ead7cf;
  --sand: #f0e2d1;
  --violet: #ece8f6;
  --line: rgba(37, 38, 138, .14);
  --shadow: 0 18px 48px rgba(31, 32, 88, .10);
  --shadow-soft: 0 10px 28px rgba(31, 32, 88, .07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--paper), var(--warm-paper));
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  line-height: 1.06;
}

h1,
h2,
.subpage-card strong {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 930px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

section {
  padding: 86px 0;
}

.container {
  width: min(100% - 42px, 1160px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 760;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .90);
  border-bottom: 1px solid rgba(37, 38, 138, .09);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 142px;
}

.brand img {
  width: 142px;
  opacity: .84;
  filter: saturate(.85) contrast(.96);
}

.navlinks {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: .91rem;
  color: var(--blue-dark);
}

.navlinks::-webkit-scrollbar {
  display: none;
}

.navlinks a {
  flex: 0 0 auto;
  padding: 9px 10px;
  border-radius: 999px;
  opacity: .76;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  opacity: 1;
  color: var(--blue);
  background: rgba(37, 38, 138, .06);
}

.nav-cta,
.btns,
.badge-row,
.tagrow,
.local-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(37, 38, 138, .20);
  border-radius: 999px;
  background: rgba(255, 253, 248, .70);
  color: var(--blue-dark);
  box-shadow: 0 7px 22px rgba(31, 32, 88, .05);
  font-weight: 760;
  text-align: center;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #3a4a9f);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  box-shadow: none;
}

.btns {
  margin-top: 26px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .42;
}

.lead {
  max-width: 780px;
  color: #49475e;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 72px;
}

.mandala-field {
  position: relative;
  overflow: hidden;
}

.mandala-field::before {
  content: "";
  position: absolute;
  left: -210px;
  top: 10px;
  width: min(720px, 92vw);
  aspect-ratio: 1;
  background: url("assets/mandala-soft.webp") center/contain no-repeat;
  opacity: .12;
  filter: saturate(.82) contrast(.9);
  pointer-events: none;
}

.mandala-field.right::before {
  left: auto;
  right: -230px;
  top: 20px;
  opacity: .10;
}

.mandala-field.center::before {
  left: 50%;
  top: 50%;
  width: min(650px, 86vw);
  transform: translate(-50%, -50%);
  opacity: .08;
}

.hero-grid,
.page-hero-grid,
.split,
.course-inner,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 42px;
}

.hero-grid {
  grid-template-columns: 1fr .72fr;
  gap: 54px;
}

.page-hero-grid {
  grid-template-columns: 1fr .48fr;
  gap: 48px;
}

.split {
  grid-template-columns: .96fr 1.04fr;
}

.split.compact {
  grid-template-columns: 1fr .88fr;
}

.course-inner,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.hero-card,
.booking-card,
.panel,
.card-soft,
.price-card,
.program-card,
.program-detail,
.info-tile,
.location-card,
.subpage-card,
.mini-card,
.schedule-day,
.metric,
.check,
.retreat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .76);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.booking-card,
.panel,
.card-soft,
.price-card {
  padding: 30px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  margin: 0;
  border: 1px solid rgba(37, 38, 138, .12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--warm-paper);
}

.hero-photo-main {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  margin-left: auto;
}

.hero-photo img,
.panel-photo,
.page-photo,
.program-card > img,
.teacher-card img,
.identity-panel img,
.program-panel summary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(31, 32, 88, .08);
}

.hero-advice {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: min(360px, 88%);
  background: rgba(255, 253, 248, .90);
  backdrop-filter: blur(12px);
}

.hero-card,
.page-summary,
.location-card,
.program-card,
.program-detail,
.subpage-card,
.retreat-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.page-summary::after,
.location-card::after,
.subpage-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  aspect-ratio: 1;
  background: url("assets/mandala-restorative.webp") center/contain no-repeat;
  opacity: .13;
  pointer-events: none;
}

.hero-card > *,
.page-summary > *,
.location-card > *,
.subpage-card > *,
.program-card > *,
.program-detail > *,
.course > * {
  position: relative;
  z-index: 1;
}

.soft-mark {
  width: 68px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  background: url("assets/pot-joge-mark.webp") center/contain no-repeat;
  filter: saturate(.72);
  opacity: .58;
}

.trust-row,
.mini-grid,
.schedule-grid,
.pricing-grid,
.subpage-grid,
.metric-row,
.teacher-grid,
.location-cards {
  display: grid;
  gap: 16px;
}

.trust-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 790px;
  margin: 34px 0 0;
  gap: 12px;
}

.trust-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .68);
}

.trust-item b,
.price-card b,
.metric b {
  display: block;
  color: var(--blue);
}

.trust-item b {
  margin-bottom: 6px;
  font-size: 1.34rem;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: .9rem;
}

.intro-section,
.local-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, .52), rgba(223, 238, 232, .38));
}

.program-section,
.page-hero,
.subpages-section {
  background: linear-gradient(180deg, rgba(236, 232, 246, .54), rgba(255, 253, 248, .28));
}

.quiet-section {
  background: rgba(255, 253, 248, .42);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 590px;
  margin-bottom: 0;
}

.badge,
.tag,
.local-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .64);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
}

.badge {
  padding: 8px 12px;
}

.badge-blue {
  background: #ebeefd;
  color: var(--blue);
}

.badge-violet {
  background: var(--violet);
  color: #6257aa;
}

.badge-sand {
  background: var(--sand);
  color: #80624d;
}

.tag,
.local-tags span {
  padding: 7px 10px;
}

label {
  color: var(--blue-dark);
  font-weight: 760;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-card,
.form {
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: #777184;
  font-size: .88rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.program-accordion {
  display: grid;
  gap: 12px;
}

.program-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 38, 138, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 248, .80), var(--program-bg));
  box-shadow: var(--shadow-soft);
}

.program-panel::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -84px;
  width: 220px;
  aspect-ratio: 1;
  background: var(--mandala) center/contain no-repeat;
  opacity: .13;
  pointer-events: none;
}

.program-panel summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 96px minmax(130px, .28fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 22px 26px;
  cursor: pointer;
  color: var(--blue-dark);
  list-style: none;
}

.program-panel summary img {
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.program-panel summary::-webkit-details-marker {
  display: none;
}

.program-panel summary::after {
  content: "+";
  justify-self: end;
  color: var(--program-accent, var(--blue));
  font-size: 1.6rem;
  font-weight: 760;
}

.program-panel[open] summary::after {
  content: "−";
}

.program-panel summary span {
  color: var(--program-accent, var(--blue));
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.program-panel summary b {
  padding-right: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.1;
}

.program-panel p,
.program-panel .card-link {
  position: relative;
  z-index: 1;
  margin-left: 140px;
  margin-right: 26px;
}

.program-panel p {
  max-width: 720px;
}

.program-panel .card-link {
  display: inline-flex;
  margin-bottom: 24px;
}

.program-card {
  grid-column: span 2;
  min-height: 310px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .78), var(--program-bg));
}

.program-card > img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(31, 32, 88, .08);
}

.program-card:nth-child(4),
.program-card:nth-child(5) {
  grid-column: span 3;
}

.program-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.68rem;
}

.program-orbit {
  position: absolute;
  right: -76px;
  bottom: -86px;
  width: 260px;
  aspect-ratio: 1;
  background: var(--mandala) center/contain no-repeat;
  opacity: .22;
}

.program-kicker,
.price-kicker {
  margin: 0 0 12px;
  color: var(--program-accent, var(--blue));
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.program--foundation {
  --program-bg: var(--violet);
  --program-accent: #6257aa;
  --mandala: url("assets/mandala-foundation.webp");
}

.program--dynamic {
  --program-bg: #e8eefb;
  --program-accent: var(--blue);
  --mandala: url("assets/mandala-dynamic.webp");
}

.program--restorative {
  --program-bg: var(--mint);
  --program-accent: #2f846f;
  --mandala: url("assets/mandala-restorative.webp");
}

.program--therapy {
  --program-bg: var(--sand);
  --program-accent: #80624d;
  --mandala: url("assets/mandala-therapy.webp");
}

.program--deepening {
  --program-bg: #f0e9f1;
  --program-accent: #51426f;
  --mandala: url("assets/mandala-deepening.webp");
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.card-link {
  color: var(--blue);
  font-weight: 800;
}

.identity-panel {
  min-height: 420px;
  padding: 0;
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/mandala-soft.webp") center/88% auto no-repeat;
  opacity: .18;
}

.identity-panel img {
  position: relative;
  min-height: 420px;
  opacity: .92;
  filter: saturate(.9) contrast(.98);
}

.mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.mini-card,
.info-tile {
  padding: 22px;
}

.schedule-grid,
.schedule-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-tile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card b {
  margin: 12px 0;
  font-size: 2.25rem;
  line-height: 1;
}

.price-card.featured {
  border: 2px solid rgba(37, 38, 138, .30);
  background: linear-gradient(180deg, rgba(255, 253, 248, .84), rgba(236, 232, 246, .70));
}

.price-note {
  font-size: .94rem;
}

.course {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-dark), #35438e);
  color: #fff;
  box-shadow: var(--shadow);
}

.course::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 560px;
  aspect-ratio: 1;
  background: url("assets/mandala-soft.webp") center/contain no-repeat;
  filter: grayscale(1) brightness(2.1);
  opacity: .16;
}

.course h2,
.course p,
.course .eyebrow {
  color: #fff;
}

.course .eyebrow::before {
  background: rgba(255, 255, 255, .55);
}

.metric-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  gap: 12px;
}

.metric,
.check {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}

.metric {
  padding: 18px;
}

.metric b {
  color: #fff;
  font-size: 1.35rem;
}

.metric span {
  font-size: .86rem;
  opacity: .88;
}

.checklist {
  display: grid;
  gap: 12px;
}

.check {
  padding: 16px 18px;
}

.check::before {
  content: "✓ ";
  font-weight: 900;
}

.checklist-light .check {
  background: rgba(255, 253, 248, .64);
  border-color: var(--line);
  color: var(--blue-dark);
}

.retreat-card {
  min-height: 360px;
  padding: 0;
}

.retreat-card h3,
.retreat-card p {
  padding-inline: 30px;
}

.retreat-card h3 {
  margin-top: 24px;
}

.panel-photo {
  height: 230px;
  border-bottom: 1px solid var(--line);
}

.teacher-grid {
  grid-template-columns: repeat(2, 1fr);
}

.teacher-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: start;
}

.teacher-card img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(31, 32, 88, .08);
}

.teacher-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-band {
  padding: 62px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 248, .80), rgba(223, 238, 232, .62));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow,
.cta-band .btns {
  justify-content: center;
}

.cta-band .lead {
  margin-inline: auto;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .62);
}

.location-cards {
  gap: 16px;
}

.location-cards-two {
  grid-template-columns: repeat(2, 1fr);
}

.location-card {
  padding: 28px;
}

.location-card small,
.subpage-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.68rem;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer img {
  width: 136px;
  opacity: .70;
  filter: saturate(.82);
}

.footer p span {
  display: block;
  margin-top: 3px;
  color: #817b8b;
  font-size: .88rem;
}

.page-hero {
  padding: 92px 0 74px;
}

.schedule-day {
  min-height: 230px;
  padding: 24px;
}

.schedule-day h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.schedule-day p {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(37, 38, 138, .10);
}

.schedule-day b {
  display: block;
  color: var(--blue);
  font-size: .92rem;
}

.schedule-table-wide .schedule-day {
  min-height: 190px;
}

.pricing-grid-detailed .price-card {
  min-height: 330px;
}

.program-list {
  display: grid;
  gap: 18px;
}

.program-detail {
  min-height: 260px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .80), var(--program-bg));
}

.program-detail h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.program-detail p {
  max-width: 780px;
}

.subpage-grid {
  grid-template-columns: repeat(5, 1fr);
}

.subpage-card {
  min-height: 205px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subpage-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.58rem;
  line-height: 1.06;
}

.subpage-card span {
  color: var(--muted);
}

.subpage-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(37, 38, 138, .38);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto 1fr;
    padding: 12px 0;
  }

  .navlinks {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    padding-bottom: 4px;
  }

  .nav-cta {
    justify-content: flex-end;
  }

  .hero-grid,
  .hero-visual,
  .page-hero-grid,
  .split,
  .split.compact,
  .course-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo-main {
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .hero-advice {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .program-grid,
  .subpage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card,
  .program-card:nth-child(4),
  .program-card:nth-child(5) {
    grid-column: auto;
  }

  .pricing-grid,
  .schedule-grid,
  .schedule-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-cards-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 118px;
  }

  .nav-cta .btn:not(.primary) {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .lead {
    font-size: 1.08rem;
  }

  .btn {
    width: 100%;
  }

  .btns {
    width: 100%;
  }

  section {
    padding: 62px 0;
  }

  .trust-row,
  .metric-row,
  .teacher-grid,
  .mini-grid,
  .pricing-grid,
  .schedule-grid,
  .schedule-table,
  .program-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .program-panel summary {
    grid-template-columns: 74px 1fr;
    gap: 8px;
    padding: 20px;
  }

  .program-panel summary b {
    grid-column: 2;
  }

  .program-panel p,
  .program-panel .card-link {
    margin-left: 20px;
    margin-right: 20px;
  }

  .section-head {
    display: block;
  }

  .panel,
  .course,
  .hero-card,
  .booking-card,
  .program-detail,
  .program-card,
  .location-card {
    padding: 24px;
  }

  .identity-panel,
  .retreat-card {
    padding: 0;
  }

  .identity-panel,
  .identity-panel img {
    min-height: 300px;
  }

  .teacher-card {
    grid-template-columns: 1fr;
  }

  .teacher-card img {
    max-width: 180px;
  }

  .retreat-card h3,
  .retreat-card p {
    padding-inline: 24px;
  }

  .mandala-field::before {
    left: -250px;
    opacity: .08;
  }

  .mandala-field.right::before {
    right: -260px;
  }

  .program-orbit {
    right: -96px;
    bottom: -96px;
    opacity: .14;
  }

  .footer-inner {
    display: grid;
    gap: 12px;
  }

  .page-hero {
    padding: 64px 0 52px;
  }

  .schedule-day {
    min-height: auto;
  }

  .cta-band {
    padding: 42px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
