:root {
  --orange: #e86f1f;
  --orange-dark: #b94e10;
  --black: #050807;
  --ink: #101418;
  --muted: #5d6872;
  --ice: #edf7fb;
  --blue: #1b5f8f;
  --red: #bd1f2d;
  --white: #ffffff;
  --line: rgba(16, 20, 24, 0.12);
  --shadow: 0 22px 70px rgba(5, 8, 7, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(237, 247, 251, 0.9) 0%, rgba(255, 255, 255, 0) 34rem),
    var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  max-width: 17rem;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  min-height: 42px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #2f363c;
  font-size: 0.94rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(232, 111, 31, 0.12);
  color: var(--orange-dark);
}

.main-nav .nav-pill {
  margin-left: 6px;
  border: 1px solid rgba(232, 111, 31, 0.42);
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 185px);
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(2.85rem, 5.45vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 48rem;
  color: #35404a;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(232, 111, 31, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--orange-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 111, 31, 0.3);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-media {
  position: relative;
  min-height: 370px;
}

.logo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 370px;
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(5, 8, 7, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 251, 0.78)),
    repeating-linear-gradient(90deg, rgba(5, 8, 7, 0.04) 0 12px, transparent 12px 26px);
  box-shadow: var(--shadow);
}

.logo-stage img {
  width: min(100%, 350px);
  filter: drop-shadow(0 18px 24px rgba(5, 8, 7, 0.18));
}

.rink-card {
  position: absolute;
  right: -24px;
  bottom: 8px;
  width: min(60%, 320px);
  aspect-ratio: 1.6;
  overflow: hidden;
  border: 1px solid rgba(5, 8, 7, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49%, rgba(189, 31, 45, 0.8) 49% 51%, transparent 51%),
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(27, 95, 143, 0.45) 23% 24%, transparent 25%),
    var(--ice);
  box-shadow: 0 16px 40px rgba(5, 8, 7, 0.16);
}

.rink-line {
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
}

.rink-line-blue {
  left: 22%;
  background: rgba(27, 95, 143, 0.6);
}

.rink-line-red {
  right: 22%;
  background: rgba(189, 31, 45, 0.45);
}

.rink-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.support-strip {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  margin: 0 clamp(18px, 4vw, 64px);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(27, 95, 143, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 247, 251, 0.94), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 14px 45px rgba(5, 8, 7, 0.08);
}

.support-strip img {
  width: 150px;
  justify-self: center;
}

.support-strip .eyebrow {
  color: var(--blue);
}

.support-strip h2 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.support-strip p {
  max-width: 54rem;
  margin: 18px 0 0;
  color: #3d4953;
  font-size: 1.04rem;
  line-height: 1.65;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.content-stack {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: #34404a;
  font-size: 1.12rem;
  line-height: 1.75;
}

.content-stack p {
  margin-bottom: 0;
}

.school-story {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(237, 247, 251, 0.72)),
    var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(5, 8, 7, 0.07);
}

.story-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 32px;
  padding: 7px 11px;
  border-radius: var(--radius);
  background: rgba(232, 111, 31, 0.12);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card p,
.instructor-card p:not(.tag) {
  color: #3d4953;
  line-height: 1.65;
}

.instructors-block {
  margin-top: clamp(52px, 7vw, 90px);
}

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

.instructor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 8, 7, 0.08);
}

.instructor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  background: var(--ice);
}

.instructor-card div {
  padding: clamp(22px, 3vw, 30px);
}

.instructor-card .tag {
  margin-bottom: 10px;
}

.program-section {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.program-section h2,
.program-section .eyebrow {
  color: var(--white);
}

.program-section .eyebrow {
  color: var(--orange);
}

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

.program-card,
.edition-card {
  border-radius: var(--radius);
}

.program-card {
  min-height: 280px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.program-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.program-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.editions-section {
  background:
    linear-gradient(180deg, rgba(237, 247, 251, 0.7), rgba(255, 255, 255, 1)),
    var(--white);
}

.edition-list {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.editions-intro {
  max-width: 760px;
  margin: calc(clamp(28px, 5vw, 52px) * -0.45) 0 clamp(24px, 4vw, 36px);
  color: #3d4953;
  font-size: 1.08rem;
  line-height: 1.7;
}

.edition-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-chip {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #36424c;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

.filter-chip.is-active {
  border-color: rgba(232, 111, 31, 0.38);
  background: rgba(232, 111, 31, 0.12);
  color: var(--orange-dark);
}

.edition-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(5, 8, 7, 0.08);
}

.edition-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(232, 111, 31, 0.14), rgba(237, 247, 251, 0.94)),
    var(--white);
}

.edition-status {
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-soon {
  background: rgba(232, 111, 31, 0.12);
  color: var(--orange-dark);
}

.status-info {
  background: rgba(27, 95, 143, 0.12);
  color: var(--blue);
}

.edition-meta {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.edition-meta div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 20, 24, 0.1);
}

.edition-meta dt,
.edition-meta dd {
  margin: 0;
}

.edition-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.edition-meta dd {
  color: var(--ink);
  font-weight: 780;
}

.edition-card p:not(.tag) {
  color: #3d4953;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 64px);
  background: var(--black);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--orange);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .edition-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 390px;
  }

  .logo-stage {
    min-height: 360px;
  }

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

  .story-layout,
  .instructors-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 220px;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    max-width: 12rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav .nav-pill {
    margin-left: 0;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  h2 {
    max-width: 11ch;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 320px;
  }

  .logo-stage {
    min-height: 310px;
  }

  .rink-card {
    right: 8px;
    width: 56%;
  }

  .support-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-strip h2 {
    max-width: none;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 18px;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-media {
    min-height: 270px;
  }

  .logo-stage {
    min-height: 260px;
    padding: 16px;
  }
}
