:root {
  --paper: #fffdf5;
  --ink: #111111;
  --muted: #565656;
  --line: #111111;
  --red: #ef3e2f;
  --blue: #2468ff;
  --green: #67c45a;
  --yellow: #f7f241;
  --cream: #f4ead2;
  --white: #ffffff;
  --header-height: 76px;
  --wide: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.45;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  border-bottom: 3px solid var(--line);
  background: rgba(255, 253, 245, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  border-right: 3px solid var(--line);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: var(--header-height);
  background: var(--yellow);
  border-right: 3px solid var(--line);
  font-family: var(--wide);
  font-size: 3.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name,
.brand-service {
  padding-inline: 14px;
  font-family: var(--wide);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand-divider {
  width: 3px;
  height: 30px;
  background: var(--line);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
}

.site-nav a {
  display: grid;
  place-items: center;
  padding: 0 19px;
  border-right: 2px solid var(--line);
  font-family: var(--wide);
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:first-child {
  border-left: 2px solid var(--line);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.header-cta {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 160px;
  padding-inline: 18px;
  background: var(--red);
  border-left: 3px solid var(--line);
  color: var(--white);
  font-family: var(--wide);
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--yellow);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(610px, 82svh, 790px);
  overflow: hidden;
  border-bottom: 3px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 72%, var(--blue) 72% calc(72% + 16px), transparent calc(72% + 16px)),
    linear-gradient(0deg, transparent 0 calc(100% - 118px), var(--yellow) calc(100% - 118px) calc(100% - 98px), transparent calc(100% - 98px)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--ink) 2px, transparent 2px),
    linear-gradient(90deg, var(--ink) 2px, transparent 2px);
  background-size: 84px 84px;
  opacity: 0.055;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(960px, calc(100% - 42px));
  max-width: calc(100% - 42px);
  padding: clamp(52px, 8vw, 96px) 0 118px clamp(0px, 4vw, 70px);
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 10px 6px;
  border: 3px solid var(--line);
  background: var(--white);
  font-family: var(--wide);
  font-size: clamp(0.73rem, 1.2vw, 0.9rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: Impact, var(--wide);
  font-size: clamp(6rem, 20vw, 17rem);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  width: min(100%, 580px);
  max-width: 580px;
  margin: clamp(28px, 3vw, 38px) 0 0;
  padding: 18px 20px;
  border-left: 12px solid var(--red);
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--line);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.22;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  font-family: var(--wide);
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--line);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  background: var(--yellow);
}

.button-outline {
  background: var(--white);
}

.movement-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.stage-label {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--line);
  background: var(--green);
  font-family: var(--wide);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
}

.stage-label.top {
  top: 36px;
  right: clamp(20px, 5vw, 72px);
  padding: 10px 12px;
  transform: rotate(3deg);
}

.stage-label.bottom {
  right: clamp(18px, 8vw, 120px);
  bottom: 34px;
  padding: 12px 14px;
  background: var(--white);
  transform: rotate(-2deg);
}

.figure {
  position: absolute;
  overflow: visible;
  filter: drop-shadow(5px 5px 0 rgba(17, 17, 17, 0.16));
}

.figure path,
.figure circle {
  vector-effect: non-scaling-stroke;
}

.figure path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.figure circle {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 8;
}

.motion-mark {
  stroke-width: 10;
}

.motion-mark.red {
  stroke: var(--red);
}

.motion-mark.blue {
  stroke: var(--blue);
}

.motion-mark.yellow {
  stroke: var(--yellow);
}

.motion-mark.green {
  stroke: var(--green);
}

.motion-mark.short {
  stroke-width: 7;
}

.ground path {
  stroke-width: 7;
}

.figure-toe {
  right: clamp(38px, 15vw, 240px);
  bottom: clamp(104px, 15vh, 150px);
  width: clamp(112px, 14vw, 172px);
  animation: figureFloat 5.8s ease-in-out infinite;
}

.toe-upper {
  transform-box: fill-box;
  transform-origin: 65px 84px;
  animation: toeFold 3.4s ease-in-out infinite;
}

.toe-arm-left,
.toe-arm-right {
  transform-box: fill-box;
  transform-origin: top;
  animation: toeHands 3.4s ease-in-out infinite;
}

.figure-jump {
  right: clamp(18px, 4vw, 78px);
  top: clamp(96px, 15vh, 160px);
  width: clamp(132px, 17vw, 238px);
}

.jump-person {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: jumpLift 1.65s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.jump-arm,
.jump-leg {
  transform-box: fill-box;
  transform-origin: top center;
}

.jump-arm.left {
  animation: jumpArmLeft 1.65s ease-in-out infinite;
}

.jump-arm.right {
  animation: jumpArmRight 1.65s ease-in-out infinite;
}

.jump-leg.left {
  animation: jumpLegLeft 1.65s ease-in-out infinite;
}

.jump-leg.right {
  animation: jumpLegRight 1.65s ease-in-out infinite;
}

.figure-dance {
  left: clamp(360px, 41vw, 730px);
  bottom: clamp(48px, 8vh, 96px);
  width: clamp(118px, 15vw, 210px);
}

.dance-person {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: danceSway 2.1s ease-in-out infinite;
}

.dance-arm,
.dance-leg {
  transform-box: fill-box;
  transform-origin: top center;
}

.dance-arm.left {
  animation: danceArmLeft 2.1s ease-in-out infinite;
}

.dance-arm.right {
  animation: danceArmRight 2.1s ease-in-out infinite;
}

.dance-leg.left {
  animation: danceLegLeft 2.1s ease-in-out infinite;
}

.dance-leg.right {
  animation: danceLegRight 2.1s ease-in-out infinite;
}

.figure-balance {
  left: clamp(260px, 31vw, 520px);
  top: clamp(66px, 11vh, 110px);
  width: clamp(112px, 13vw, 178px);
  animation: balanceDrift 4.4s ease-in-out infinite;
}

.balance-person {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: balanceTilt 3.2s ease-in-out infinite;
}

.balance-leg.lifted {
  transform-box: fill-box;
  transform-origin: left top;
  animation: balanceLeg 3.2s ease-in-out infinite;
}

.figure-lunge {
  right: clamp(210px, 28vw, 430px);
  top: clamp(238px, 36vh, 360px);
  width: clamp(130px, 15vw, 205px);
}

.lunge-person {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: lungePulse 2.6s ease-in-out infinite;
}

.lunge-arm.left,
.lunge-arm.right {
  transform-box: fill-box;
  transform-origin: top center;
  animation: lungeArms 2.6s ease-in-out infinite;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 76px);
  border-bottom: 3px solid var(--line);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(30px, 6vw, 64px);
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--wide);
  font-size: clamp(2.45rem, 5.4vw, 5.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(270px, 0.8fr) auto;
  gap: 24px;
  align-items: end;
  max-width: none;
}

.section-heading-wide p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 3px solid var(--line);
  background: var(--blue);
  color: var(--white);
  font-family: var(--wide);
  line-height: 1;
  text-transform: uppercase;
}

.about {
  position: relative;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.route-card {
  display: grid;
  border: 3px solid var(--line);
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--line);
}

.route-card > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 18px;
  border-bottom: 3px solid var(--line);
  font-family: var(--wide);
  font-size: clamp(1.35rem, 2.65vw, 2.75rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.route-flag {
  flex: 0 0 auto;
  border: 3px solid var(--line);
  background: var(--white);
}

.swiss-flag {
  width: clamp(30px, 4vw, 42px);
  height: clamp(30px, 4vw, 42px);
}

.swiss-flag rect {
  fill: var(--red);
}

.swiss-flag path {
  fill: var(--white);
}

.us-flag {
  width: clamp(40px, 5.5vw, 58px);
  height: clamp(28px, 3.9vw, 40px);
}

.us-flag > rect:first-child {
  fill: var(--white);
}

.us-flag path {
  stroke: var(--red);
  stroke-width: 4;
}

.us-flag > rect:last-child {
  fill: var(--blue);
}

.us-stars circle {
  fill: var(--white);
}

.route-card > span:nth-child(2) {
  background: var(--red);
  color: var(--white);
}

.route-card > span:nth-child(3) {
  background: var(--blue);
  color: var(--white);
}

.route-card > span:nth-child(4) {
  border-bottom: 0;
  background: var(--green);
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 870px;
}

.about-copy p {
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 3px solid var(--line);
  background: var(--paper);
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
  font-weight: 740;
}

.classes {
  background:
    linear-gradient(90deg, var(--paper) 0 50%, var(--white) 50% 100%);
}

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

.class-card,
.schedule-note,
.training-card,
.contact-panel {
  border: 3px solid var(--line);
  background: var(--white);
}

.class-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 0;
  box-shadow: 6px 6px 0 var(--line);
}

.class-card:nth-child(1),
.class-card:nth-child(2) {
  grid-column: span 6;
}

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

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 3px solid var(--line);
  background: var(--ink);
  color: var(--white);
  font-family: var(--wide);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.card-topline span {
  display: block;
  padding: 13px 14px;
}

.card-topline span + span {
  border-left: 3px solid var(--line);
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

.class-card h3,
.training-card h3,
.contact-panel h3 {
  margin: 0;
  padding: 20px 18px 0;
  font-family: var(--wide);
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.class-card p,
.training-card p,
.contact-panel p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0 18px 18px;
  list-style: none;
}

.tag-list li {
  padding: 7px 9px 6px;
  border: 2px solid var(--line);
  background: var(--paper);
  font-family: var(--wide);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.accent-red .card-topline {
  background: var(--red);
}

.accent-blue .card-topline {
  background: var(--blue);
}

.accent-yellow .card-topline {
  background: var(--yellow);
  color: var(--ink);
}

.accent-green .card-topline {
  background: var(--green);
  color: var(--ink);
}

.schedule-note {
  grid-column: span 12;
  padding: 18px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--wide);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.training {
  background: var(--ink);
  color: var(--paper);
}

.training .eyebrow,
.training .section-heading-wide p {
  color: var(--ink);
}

.training .section-heading-wide p {
  border: 3px solid var(--paper);
  background: var(--blue);
  color: var(--white);
  padding: 18px;
}

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

.training-card {
  position: relative;
  min-height: 420px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.training-card:nth-child(2) {
  box-shadow: 6px 6px 0 var(--blue);
}

.training-card:nth-child(3) {
  box-shadow: 6px 6px 0 var(--green);
}

.training-number {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 74px;
  height: 64px;
  border-left: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  background: var(--blue);
  color: var(--white);
  font-family: var(--wide);
  font-size: 2rem;
  line-height: 1;
}

.training-card h3 {
  max-width: calc(100% - 70px);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(310px, 500px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 116px) clamp(20px, 5vw, 76px);
  border-bottom: 3px solid var(--line);
  background: var(--blue);
  color: var(--white);
}

.contact-band h2 {
  max-width: 850px;
}

.contact-band .eyebrow {
  color: var(--ink);
}

.contact-panel {
  background: var(--white);
  box-shadow: 10px 10px 0 var(--line);
}

.contact-panel h3 {
  padding-right: 18px;
}

.contact-list {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 3px solid var(--line);
}

.contact-list dt {
  font-family: var(--wide);
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel .button {
  margin: 0 18px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 26px clamp(20px, 5vw, 76px);
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong,
.site-footer nav a {
  font-family: var(--wide);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@keyframes figureFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes toeFold {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }
  45%,
  60% {
    transform: rotate(24deg) translateY(5px);
  }
}

@keyframes toeHands {
  0%,
  100% {
    transform: rotate(0deg);
  }
  45%,
  60% {
    transform: rotate(9deg);
  }
}

@keyframes jumpLift {
  0%,
  100% {
    transform: translateY(26px) scaleY(0.96);
  }
  46% {
    transform: translateY(-22px) scaleY(1.03);
  }
}

@keyframes jumpArmLeft {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

@keyframes jumpArmRight {
  0%,
  100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes jumpLegLeft {
  0%,
  100% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes jumpLegRight {
  0%,
  100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-12deg);
  }
}

@keyframes danceSway {
  0%,
  100% {
    transform: rotate(-6deg) translateX(-4px);
  }
  50% {
    transform: rotate(7deg) translateX(6px);
  }
}

@keyframes danceArmLeft {
  0%,
  100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(18deg);
  }
}

@keyframes danceArmRight {
  0%,
  100% {
    transform: rotate(14deg);
  }
  50% {
    transform: rotate(-17deg);
  }
}

@keyframes danceLegLeft {
  0%,
  100% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

@keyframes danceLegRight {
  0%,
  100% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(9deg);
  }
}

@keyframes balanceDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes balanceTilt {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

@keyframes balanceLeg {
  0%,
  100% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes lungePulse {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(9px) translateY(7px) rotate(2deg);
  }
}

@keyframes lungeArms {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-9deg);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    height: calc(100svh - var(--header-height));
    background: var(--paper);
    border-bottom: 3px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: start;
    padding: 0 clamp(20px, 6vw, 58px);
    border-right: 0;
    border-bottom: 3px solid var(--line);
    font-size: clamp(2.1rem, 8vw, 5rem);
  }

  .site-nav a:first-child {
    border-left: 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 7px;
    width: 70px;
    height: var(--header-height);
    border: 0;
    border-left: 3px solid var(--line);
    background: var(--white);
    cursor: pointer;
  }

  .menu-line {
    width: 30px;
    height: 4px;
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section-heading-wide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading-wide .button {
    width: fit-content;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 780px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 27vw, 11rem);
  }

  .hero-copy {
    max-width: min(560px, calc(100vw - 32px));
  }

  .figure-jump {
    right: 8px;
    top: 116px;
    width: clamp(116px, 22vw, 180px);
  }

  .figure-balance {
    left: auto;
    right: 146px;
    top: 210px;
  }

  .figure-lunge {
    right: 46px;
    top: auto;
    bottom: 110px;
  }

  .figure-toe {
    right: auto;
    left: 30px;
    bottom: 42px;
  }

  .figure-dance {
    left: 50%;
    bottom: 34px;
  }

  .about-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .class-card:nth-child(1),
  .class-card:nth-child(2),
  .class-card:nth-child(3),
  .class-card:nth-child(4),
  .class-card:nth-child(5) {
    grid-column: span 12;
  }

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

  .training-card {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
    width: 100%;
    padding-right: 70px;
  }

  .brand-name,
  .brand-service {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .brand-mark {
    width: 58px;
    font-size: 2.55rem;
  }

  .brand-name,
  .brand-service {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
  }

  .hero {
    min-height: 750px;
    background:
      linear-gradient(90deg, transparent 0 82%, var(--blue) 82% calc(82% + 12px), transparent calc(82% + 12px)),
      linear-gradient(0deg, transparent 0 calc(100% - 100px), var(--yellow) calc(100% - 100px) calc(100% - 83px), transparent calc(100% - 83px)),
      var(--paper);
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 40px 16px 260px;
  }

  .hero-copy {
    width: min(100%, 520px);
    max-width: 520px;
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .stage-label.top {
    top: auto;
    right: 22px;
    bottom: 238px;
  }

  .stage-label.bottom {
    right: 18px;
    bottom: 18px;
  }

  .figure-jump {
    right: 18px;
    top: 122px;
    width: 106px;
  }

  .figure-balance {
    right: 96px;
    top: auto;
    bottom: 190px;
    width: 102px;
  }

  .figure-lunge {
    right: 22px;
    bottom: 83px;
    width: 118px;
  }

  .figure-toe {
    left: 12px;
    bottom: 54px;
    width: 116px;
  }

  .figure-dance {
    left: 37%;
    bottom: 48px;
    width: 112px;
  }

  .section,
  .contact-band {
    padding-inline: 16px;
  }

  .class-card h3,
  .training-card h3,
  .contact-panel h3 {
    font-size: clamp(1.65rem, 10vw, 2.7rem);
  }

  .route-card {
    box-shadow: 6px 6px 0 var(--line);
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  .brand-divider {
    display: none;
  }

  .hero h1 {
    font-size: clamp(5rem, 31vw, 7.2rem);
  }

  .hero-copy {
    width: 100%;
    max-width: 340px;
  }

  .hero-actions {
    max-width: 340px;
  }

  .section-heading h2,
  .contact-band h2 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .figure-jump {
    top: 154px;
    width: 96px;
  }

  .figure-balance {
    right: 82px;
    bottom: 198px;
    width: 92px;
  }
}

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