:root {
  --ink: #171717;
  --muted: #575757;
  --paper: #f5f5f2;
  --white: #fff;
  --blue: #42b5de;
  --blue-soft: #dff4fb;
  --blue-dark: #006986;
  --orange: #f57d17;
  --orange-soft: #ffe5cd;
  --orange-dark: #8a3c00;
  --yellow: #ffe735;
  --yellow-soft: #fff8bd;
  --line: #d9d9d4;
  --shadow: 0 1.4rem 3.5rem rgb(23 23 23 / 10%);
}

*,
*::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:
    linear-gradient(90deg, rgb(66 181 222 / 7%) 1px, transparent 1px),
    linear-gradient(rgb(66 181 222 / 7%) 1px, transparent 1px),
    var(--paper);
  background-size: 3rem 3rem;
  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: 30;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.4rem;
  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: 5rem;
  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.9rem;
  height: 2.9rem;
  display: block;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

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

.brand strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

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

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

.header-action {
  padding: 0.68rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0.22rem 0.22rem 0 var(--orange);
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.header-action:hover {
  box-shadow: 0.1rem 0.1rem 0 var(--orange);
  transform: translate(0.12rem, 0.12rem);
}

main {
  padding: 0.2rem 0 2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.3rem 0.1rem 1rem;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  min-height: 30rem;
  padding: clamp(2.25rem, 4.5vw, 3.75rem);
  overflow: hidden;
  border-radius: 1.5rem;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  color: var(--ink);
  background: var(--yellow);
}

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

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

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.15rem, 5vw, 4.8rem);
}

h1 mark {
  display: inline-block;
  margin-top: 0.12em;
  padding: 0 0.12em 0.08em;
  color: var(--ink);
  background: var(--blue);
}

.hero-description {
  max-width: 36rem;
  margin: 1.35rem 0;
  color: #e3e3df;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.6;
}

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

.hero-facts li {
  min-width: 7.2rem;
  display: grid;
  gap: 0.12rem;
  padding-right: 0.8rem;
  border-right: 1px solid #515151;
}

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

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

.hero-facts span,
.hero-actions p {
  color: #bfbfba;
  font-size: 0.66rem;
}

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

.hero-actions p {
  margin: 0;
}

.primary-action {
  min-width: 16.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.88rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0.28rem 0.28rem 0 var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.primary-action:hover {
  box-shadow: 0.12rem 0.12rem 0 var(--blue);
  transform: translate(0.16rem, 0.16rem);
}

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

.logo-frame {
  position: relative;
  z-index: 2;
  width: min(75%, 18rem);
  padding: 0.65rem;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0.7rem 0.7rem 0 var(--blue);
  transform: rotate(-2deg);
}

.logo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.85rem;
}

.hero-art > p {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0.2rem;
  max-width: 13rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0.65rem;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.45;
  transform: rotate(2deg);
}

.speech-shape {
  position: absolute;
  border-radius: 1.5rem;
}

.speech-shape::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 1.2rem;
  border-width: 0.85rem 0.85rem 0 0;
  border-style: solid;
  border-color: currentColor transparent transparent transparent;
}

.speech-shape--blue {
  width: 10rem;
  height: 7rem;
  top: 0;
  right: -1rem;
  color: var(--blue);
  background: var(--blue);
}

.speech-shape--yellow {
  width: 7rem;
  height: 5.5rem;
  bottom: 1rem;
  left: 0;
  color: var(--yellow);
  background: var(--yellow);
}

.speech-shape--orange {
  width: 8rem;
  height: 5rem;
  top: 3rem;
  left: -1.2rem;
  color: var(--orange);
  background: var(--orange);
}

.schedule-section,
.club-details,
.join-panel {
  margin-top: 1rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.schedule-section {
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  background: #fff;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.club-details h2,
.join-panel h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
}

.section-heading > p:last-child,
.join-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.next-session {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.65fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0.32rem 0.32rem 0 var(--ink);
}

.next-session-copy {
  min-width: 0;
  padding: 1.2rem 1.35rem;
  background: var(--blue);
}

.next-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-session h3 {
  margin: 0.75rem 0 0.25rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.next-session-copy > p:last-child {
  margin: 0;
  font-size: 0.72rem;
}

.next-session-time {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.65rem;
  padding: 1.2rem 1.3rem;
  background: var(--yellow-soft);
}

.next-session-time p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

[data-countdown] {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 0.45rem;
  background: #fff;
  font-size: 0.93rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

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

.session-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.session-card {
  display: grid;
  grid-template-columns: 4.1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--paper);
}

.session-card > time {
  align-self: stretch;
  display: grid;
  place-content: center;
  min-height: 4rem;
  border-radius: 0.65rem;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
}

.session-card > time span {
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-card > time strong {
  font-size: 1.55rem;
  line-height: 1;
}

.format-label {
  color: var(--blue-dark);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.session-card h3 {
  margin: 0.2rem 0 0.15rem;
  font-size: 1rem;
  line-height: 1.25;
}

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

.session-status {
  padding: 0.3rem 0.45rem;
  border: 1px solid #8bcfe6;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.session-card[data-state="next"] {
  border-color: var(--ink);
  box-shadow: 0.2rem 0.2rem 0 var(--orange);
}

.session-card[data-state="next"] .session-status {
  color: var(--ink);
  border-color: #d3bd00;
  background: var(--yellow);
}

.session-card[data-state="live"] {
  border-color: var(--orange-dark);
  background: var(--orange-soft);
}

.session-card[data-state="live"] .session-status {
  color: var(--ink);
  border-color: var(--orange-dark);
  background: var(--orange);
}

.session-card[data-state="past"] {
  border-color: #d1d1cc;
  background: #ececea;
}

.session-card[data-state="past"] > time {
  color: #3f3f3f;
  background: #d8d8d3;
}

.session-card[data-state="past"] .format-label,
.session-card[data-state="past"] h3,
.session-card[data-state="past"] p {
  color: #555;
}

.session-card[data-state="past"] .session-status {
  color: #4f4f4f;
  border-color: #b7b7b2;
  background: #e2e2de;
}

.club-details {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(27rem, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  background: var(--yellow);
}

.club-details h2 {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  gap: 0.65rem;
}

.detail-grid article {
  padding: 1.1rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 0.85rem;
  background: #fff;
}

.detail-grid article:nth-child(1) {
  box-shadow: 0.25rem 0.25rem 0 var(--blue);
}

.detail-grid article:nth-child(2) {
  box-shadow: 0.25rem 0.25rem 0 var(--orange);
}

.detail-grid article:nth-child(3) {
  box-shadow: 0.25rem 0.25rem 0 #7acb53;
}

.detail-grid article > span {
  color: var(--orange-dark);
  font-size: 0.62rem;
  font-weight: 900;
}

.detail-grid h3 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.15rem;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
  color: #fff;
  background: var(--ink);
}

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

.join-panel .eyebrow {
  color: #8fdcf3;
}

.join-panel h2 {
  margin-bottom: 1rem;
}

.join-panel p:not(.eyebrow) {
  color: #d3d3ce;
}

.primary-action--yellow {
  align-self: end;
}

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

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

.breadcrumb a:hover,
footer a:hover {
  color: var(--blue-dark);
}

.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(--orange-dark);
  outline-offset: 4px;
}

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

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

  .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.5rem;
  }

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

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

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

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

  .hero,
  .schedule-section,
  .club-details,
  .join-panel {
    border-radius: 1rem;
  }

  .hero {
    min-height: auto;
    gap: 1.2rem;
    padding: 1.9rem 1.3rem 1.2rem;
  }

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

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

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

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

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

  .logo-frame {
    width: min(60%, 12rem);
  }

  .hero-art > p {
    max-width: 10rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
  }

  .speech-shape--blue {
    width: 7rem;
    height: 5rem;
  }

  .speech-shape--yellow,
  .speech-shape--orange {
    width: 5rem;
    height: 3.6rem;
  }

  .schedule-section,
  .club-details,
  .join-panel {
    padding: 1.8rem 1.25rem;
  }

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

  .next-session-copy,
  .next-session-time {
    padding: 1rem 1.1rem;
  }

  .session-card {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .session-status {
    grid-column: 2;
    justify-self: start;
  }

  .session-card > time {
    grid-row: 1 / span 2;
  }

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

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

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