:root {
  --ink: #3a1930;
  --muted: #755d6c;
  --paper: #fbf6ee;
  --surface: #fffdf9;
  --rose: #e46f9d;
  --rose-deep: #9d315f;
  --rose-soft: #f7d8e4;
  --peach: #f5c28f;
  --peach-soft: #fcebd9;
  --line: rgb(58 25 48 / 14%);
  --shadow: 0 24px 70px rgb(91 42 70 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 7%, rgb(245 194 143 / 25%), transparent 23rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header,
main,
footer {
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand span {
  display: grid;
  gap: 0.08rem;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand small,
.breadcrumb,
.header-action,
footer {
  font-size: 0.72rem;
}

.brand small,
.breadcrumb,
footer {
  color: var(--muted);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.header-action:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-1px);
}

main {
  padding: 0.25rem 0 2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.3rem 0.15rem 1.15rem;
}

.breadcrumb a,
footer a {
  text-underline-offset: 0.2rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  min-height: 30rem;
  padding: clamp(2.2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(125deg, rgb(255 253 249 / 97%), rgb(252 235 217 / 92%)),
    var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.065em;
  line-height: 0.91;
}

h1 em {
  color: var(--rose-deep);
  font-weight: 400;
}

.hero-description {
  max-width: 35rem;
  margin: 1.3rem 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 7.4rem;
  display: grid;
  gap: 0.15rem;
  padding-right: 0.9rem;
  border-right: 1px solid var(--line);
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-actions {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.primary-action {
  min-width: 16.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 0.77rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.primary-action:hover {
  color: var(--ink);
  background: var(--peach);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  min-height: 21rem;
  display: grid;
  place-items: center;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: min(72%, 17rem);
  height: auto;
  display: block;
  border: 0.6rem solid rgb(255 255 255 / 62%);
  border-radius: 50%;
  box-shadow: 0 1.6rem 4rem rgb(157 49 95 / 22%);
  transform: rotate(-3deg);
}

.hero-art p {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0.35rem;
  max-width: 12rem;
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 1rem;
  color: #fff;
  background: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  line-height: 1.35;
  transform: rotate(3deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgb(157 49 95 / 23%);
  border-radius: 50%;
}

.orbit--one {
  width: 100%;
  aspect-ratio: 1;
}

.orbit--two {
  width: 77%;
  aspect-ratio: 1;
  border-color: rgb(228 111 157 / 35%);
}

.spark {
  position: absolute;
  z-index: 3;
  color: var(--rose-deep);
  font-size: 2.5rem;
}

.spark--one {
  top: 4%;
  right: 11%;
}

.spark--two {
  bottom: 13%;
  left: 2%;
  color: var(--peach);
  font-size: 1.7rem;
}

.schedule-section {
  margin-top: 1.4rem;
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.7rem;
}

.section-heading h2,
.formats h2,
.join-panel h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.schedule-layout {
  max-width: 54rem;
}

.next-session {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(14rem, 0.75fr);
  overflow: hidden;
  border-radius: 1.3rem;
  color: #fff;
  background: var(--ink);
}

.next-session-copy {
  min-width: 0;
  padding: 1.25rem 1.4rem;
  background:
    radial-gradient(circle at 92% 8%, rgb(228 111 157 / 22%), transparent 11rem),
    var(--ink);
}

.next-session-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.next-session-heading p {
  margin: 0;
  color: #e6d7e0;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 0.32rem rgb(245 194 143 / 14%);
}

.next-session h3 {
  margin: 1.05rem 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.next-session-copy > p {
  margin: 0;
  color: #e6d7e0;
  font-size: 0.7rem;
}

.next-session-footer {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem;
  color: var(--ink);
  background: var(--peach-soft);
}

.next-session-footer p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
}

.next-session-footer [data-countdown] {
  min-height: 1.55rem;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgb(157 49 95 / 18%);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgb(255 255 255 / 58%);
  font-size: 0.92rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

[data-countdown]:empty {
  display: none;
}

.week-list {
  margin-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.day-group {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.45rem 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.day-group > h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.day-group > h3 span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.session-card {
  grid-column: 2;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.7rem;
  padding: 0.68rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--paper);
  transition: opacity 150ms ease;
}

.session-card.is-past time,
.session-card.is-past > div {
  opacity: 0.46;
}

.session-card time {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}

.format-label {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.session-card h4 {
  margin: 0.15rem 0 0.18rem;
  font-size: 0.82rem;
  line-height: 1.25;
}

.session-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.61rem;
}

.session-status {
  padding: 0.25rem 0.42rem;
  border: 1px solid rgb(157 49 95 / 22%);
  border-radius: 999px;
  color: var(--rose-deep);
  background: var(--rose-soft);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.session-status--next {
  color: var(--ink);
  border-color: rgb(245 194 143 / 65%);
  background: var(--peach);
}

.session-status--done {
  color: var(--muted);
  border-color: var(--line);
  background: transparent;
}

.formats {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 1.4rem;
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  border-radius: 2rem;
  color: #fff;
  background: var(--rose-deep);
  box-shadow: var(--shadow);
}

.formats .eyebrow {
  color: var(--peach);
}

.formats h2 {
  margin-bottom: 0;
}

.format-grid {
  display: grid;
  gap: 1rem;
}

.format-grid article {
  padding: 1.2rem 1.3rem;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 1.1rem;
  background: rgb(255 255 255 / 8%);
}

.format-grid article > span {
  color: var(--peach);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.format-grid h3 {
  margin: 0.55rem 0 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.format-grid p {
  margin: 0;
  color: #f4dfe9;
  font-size: 0.8rem;
  line-height: 1.6;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 1.4rem;
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 94% 12%, rgb(228 111 157 / 25%), transparent 17rem),
    var(--peach-soft);
  box-shadow: var(--shadow);
}

.join-panel > div {
  max-width: 39rem;
}

.join-panel h2 {
  margin-bottom: 0;
}

.join-panel p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.primary-action--light {
  min-width: 17.5rem;
  color: #fff;
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.primary-action--light:hover {
  color: var(--ink);
  background: #fff;
}

.noscript-note {
  margin: 1.4rem 0 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  font-size: 0.78rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.7rem 0 2rem;
}

.breadcrumb a:hover,
footer a:hover {
  color: var(--rose-deep);
}

.brand:focus-visible,
.header-action:focus-visible,
.breadcrumb a:focus-visible,
.primary-action:focus-visible,
footer a:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 4px;
}

@media (max-width: 56rem) {
  .hero,
  .formats,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 19rem;
  }

  .join-panel {
    align-items: start;
  }

  .join-panel .primary-action {
    justify-self: start;
  }
}

@media (max-width: 44rem) {
  .site-header,
  main,
  footer {
    width: min(100% - 1.5rem, 72rem);
  }

  .site-header {
    min-height: 4.6rem;
  }

  .brand img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand small,
  .header-action span {
    display: none;
  }

  .header-action {
    padding-inline: 0.75rem;
  }

  .breadcrumb {
    padding-bottom: 0.8rem;
    font-size: 0.64rem;
  }

  .hero,
  .schedule-section,
  .formats,
  .join-panel {
    border-radius: 1.35rem;
  }

  .hero {
    min-height: auto;
    gap: 1.25rem;
    padding: 1.9rem 1.35rem 1.15rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
  }

  .hero-facts li {
    min-width: 0;
    padding-right: 0.45rem;
  }

  .hero-facts strong {
    font-size: 1rem;
  }

  .primary-action {
    width: 100%;
    min-width: 0;
  }

  .hero-art {
    min-height: 14.5rem;
  }

  .hero-art img {
    width: min(62%, 12.5rem);
  }

  .hero-art p {
    right: 0.5rem;
    bottom: 0.1rem;
    max-width: 10rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.75rem;
  }

  .schedule-section,
  .formats,
  .join-panel {
    margin-top: 0.9rem;
    padding: 1.85rem 1.35rem;
  }

  .next-session {
    grid-template-columns: 1fr;
  }

  .next-session-copy,
  .next-session-footer {
    padding: 1.1rem 1.2rem;
  }

  .next-session-footer {
    gap: 0.55rem;
  }

  .day-group {
    grid-template-columns: 3rem 1fr;
    gap: 0.55rem;
  }

  .day-group > h3 {
    font-size: 1.15rem;
  }

  .session-card {
    grid-template-columns: 2.65rem minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.68rem;
  }

  .session-card time {
    font-size: 0.86rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

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

  .header-action,
  .primary-action,
  .session-card {
    transition: none;
  }
}
