:root {
  --mrl-ink: #071727;
  --mrl-deep: #0b2440;
  --mrl-water: #54d8e6;
  --mrl-water-soft: #c9f5f5;
  --mrl-coral: #b9362f;
  --mrl-coral-bright: #ff8b82;
  --mrl-cream: #f5f2e9;
  --mrl-white: #ffffff;
  --mrl-muted: #4d5a69;
  --mrl-line: rgba(7, 23, 39, 0.15);
  --mrl-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --mrl-body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body.mrl-page {
  margin: 0;
  color: var(--mrl-ink);
  background: var(--mrl-cream);
  font-family: var(--mrl-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

.mrl-page a {
  color: inherit;
}

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

.mrl-page button,
.mrl-page a {
  -webkit-tap-highlight-color: transparent;
}

.mrl-page a:focus-visible,
.mrl-page button:focus-visible {
  outline: 3px solid var(--mrl-coral);
  outline-offset: 4px;
}

.mrl-skip {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 3px;
  color: var(--mrl-white);
  background: var(--mrl-ink);
  transform: translateY(-140%);
}

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

.mrl-preview {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 8px 24px;
  color: #071727;
  background: #ffe17c;
  border-bottom: 1px solid rgba(7, 23, 39, 0.25);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
}

.mrl-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 4vw;
  color: var(--mrl-white);
  background: rgba(7, 23, 39, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.mrl-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--mrl-white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.mrl-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--mrl-ink);
  background: var(--mrl-water);
  border-radius: 50%;
  font-size: 18px;
  letter-spacing: 0;
}

.mrl-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}

.mrl-nav a,
.mrl-header-action {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.mrl-nav a:hover,
.mrl-header-action:hover {
  color: var(--mrl-water);
}

.mrl-header-action {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--mrl-water);
  font-size: 13px;
  font-weight: 750;
}

.mrl-kicker {
  margin: 0 0 24px;
  color: var(--mrl-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.mrl-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  min-height: 820px;
  color: var(--mrl-white);
  background: var(--mrl-ink);
  isolation: isolate;
}

.mrl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image: linear-gradient(rgba(84, 216, 230, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(84, 216, 230, 0.6) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.mrl-hero-copy {
  align-self: center;
  width: 100%;
  min-width: 0;
  max-width: 690px;
  padding: 86px 6vw 140px 7vw;
}

.mrl-hero h1 {
  max-width: 720px;
  margin: 0 0 30px;
  font-family: var(--mrl-display);
  font-size: clamp(68px, 7.2vw, 126px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.mrl-hero h1 span {
  color: var(--mrl-water);
}

.mrl-hero .mrl-kicker,
.mrl-pool-title .mrl-kicker,
.mrl-pool-metro,
.mrl-team .mrl-kicker {
  color: var(--mrl-coral-bright);
}

.mrl-hero-copy > p:not(.mrl-kicker) {
  max-width: 640px;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.mrl-hero-copy .mrl-lead {
  color: var(--mrl-white);
  font-size: 20px;
  font-weight: 720;
}

.mrl-hero-copy .mrl-next {
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.92);
}

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

.mrl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.mrl-button-primary {
  color: var(--mrl-ink);
  background: var(--mrl-water);
  border-color: var(--mrl-water);
}

.mrl-button-primary:hover {
  background: var(--mrl-white);
  border-color: var(--mrl-white);
}

.mrl-button-ghost:hover {
  border-color: var(--mrl-water);
}

.mrl-hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.mrl-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 23, 39, 0.48) 0, transparent 42%, rgba(7, 23, 39, 0.12) 100%);
}

.mrl-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.mrl-lane {
  position: absolute;
  z-index: 2;
  width: 180%;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--mrl-coral) 0 24px, var(--mrl-white) 24px 34px, var(--mrl-water) 34px 58px, var(--mrl-white) 58px 68px);
  border: 4px solid rgba(7, 23, 39, 0.22);
  border-radius: 99px;
  transform: rotate(-18deg);
  box-shadow: 0 8px 22px rgba(7, 23, 39, 0.24);
}

.mrl-lane-one {
  left: -25%;
  bottom: 20%;
}

.mrl-lane-two {
  left: -15%;
  bottom: 8%;
}

.mrl-photo-note {
  position: absolute;
  right: 3.5vw;
  bottom: 11%;
  z-index: 3;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  color: var(--mrl-ink);
  background: var(--mrl-white);
  border-radius: 50%;
  text-align: center;
}

.mrl-photo-note strong {
  font-family: var(--mrl-display);
  font-size: 48px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.mrl-photo-note span {
  font-size: 11px;
  font-weight: 800;
}

.mrl-score {
  position: absolute;
  left: 7vw;
  bottom: 35px;
  z-index: 4;
  display: flex;
  gap: 42px;
}

.mrl-score div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mrl-score strong {
  color: var(--mrl-water);
  font-family: var(--mrl-display);
  font-size: 38px;
  letter-spacing: -0.05em;
}

.mrl-score span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrl-formats {
  padding: 120px 7vw 130px;
  background: var(--mrl-cream);
}

.mrl-section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 5vw;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 70px;
}

.mrl-section-head .mrl-kicker {
  align-self: start;
}

.mrl-section-head h2,
.mrl-pool-title h2,
.mrl-tariff-intro h2,
.mrl-first-heading h2,
.mrl-team-copy h2,
.mrl-contact h2 {
  margin: 0;
  font-family: var(--mrl-display);
  font-size: clamp(48px, 6vw, 94px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.mrl-section-head > p:last-child {
  margin: 0;
  color: var(--mrl-muted);
  font-size: 15px;
}

.mrl-format-track {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.mrl-format {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--mrl-white);
  border-top: 5px solid var(--mrl-ink);
}

.mrl-format-kids {
  grid-column: 1 / 6;
}

.mrl-format-adults {
  grid-column: 6 / 10;
  margin-top: 82px;
}

.mrl-format-personal {
  grid-column: 10 / 13;
  margin-top: 164px;
}

.mrl-format img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.86);
}

.mrl-format-kids img {
  height: 370px;
}

.mrl-format > div {
  padding: 27px 28px 34px;
}

.mrl-format-index {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--mrl-ink);
  background: var(--mrl-water);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.mrl-format-label {
  margin: 0 0 6px;
  color: var(--mrl-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrl-format h3 {
  margin: 0 0 14px;
  font-family: var(--mrl-display);
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.mrl-format p:not(.mrl-format-label) {
  margin: 0 0 11px;
  color: var(--mrl-muted);
  font-size: 14px;
}

.mrl-format p[id] {
  color: var(--mrl-ink);
  font-weight: 680;
}

.mrl-pools {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 760px;
  color: var(--mrl-white);
  background: var(--mrl-deep);
}

.mrl-pool-title {
  padding: 120px 6vw 100px 7vw;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.mrl-pool-title > p:last-child {
  max-width: 500px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.68);
}

.mrl-pool-console {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 96px 7vw 90px 5vw;
  overflow: hidden;
}

.mrl-pool-console::before {
  content: "25M";
  position: absolute;
  right: -30px;
  bottom: -70px;
  color: rgba(84, 216, 230, 0.06);
  font-family: var(--mrl-display);
  font-size: 300px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.mrl-pool-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(540px, 100%);
  margin-bottom: 70px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mrl-pool-tabs button {
  min-height: 58px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.mrl-pool-tabs button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.mrl-pool-tabs button[aria-pressed="true"] {
  color: var(--mrl-ink);
  background: var(--mrl-water);
}

.mrl-pool-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  align-items: start;
}

.mrl-pool-panel[hidden] {
  display: none;
}

.mrl-pool-number {
  padding-top: 5px;
  color: var(--mrl-water);
  font-family: var(--mrl-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mrl-pool-metro {
  margin: 0 0 8px;
  color: var(--mrl-coral-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mrl-pool-panel h3 {
  margin: 0 0 20px;
  font-family: var(--mrl-display);
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.mrl-pool-panel p:last-child {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.75);
}

.mrl-pool-caveat {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: auto 0 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.57);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.mrl-tariffs {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  padding: 120px 7vw;
  background: var(--mrl-water-soft);
}

.mrl-tariff-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.mrl-tariff-intro p:last-child {
  max-width: 440px;
  margin-top: 28px;
  color: #3b5663;
}

.mrl-price-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--mrl-ink);
  border-left: 1px solid var(--mrl-ink);
}

.mrl-price-board article {
  min-height: 190px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.35);
  border-right: 1px solid var(--mrl-ink);
  border-bottom: 1px solid var(--mrl-ink);
}

.mrl-price-board article > p:first-child {
  margin: 0 0 23px;
  color: #44606b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mrl-price-board h3 {
  margin: 0 0 6px;
  color: var(--mrl-coral);
  font-family: var(--mrl-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.mrl-price-board p:last-child {
  margin: 0;
  font-size: 13px;
}

.mrl-price-board strong {
  display: block;
  margin-bottom: 5px;
  color: var(--mrl-ink);
  font-size: 18px;
  line-height: 1.3;
}

.mrl-price-wide {
  grid-column: 1 / -1;
}

.mrl-price-accent {
  color: var(--mrl-white);
  background: var(--mrl-ink) !important;
}

.mrl-price-accent > p:first-child,
.mrl-price-accent strong {
  color: var(--mrl-white) !important;
}

.mrl-freeze {
  grid-column: 2;
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--mrl-white);
  background: var(--mrl-coral);
  font-size: 14px;
  font-weight: 700;
}

.mrl-first {
  padding: 120px 7vw 130px;
  background: var(--mrl-white);
}

.mrl-first-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  max-width: 1320px;
  margin: 0 auto 70px;
}

.mrl-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--mrl-ink);
}

.mrl-checklist article {
  min-height: 290px;
  padding: 28px 30px 36px;
  border-bottom: 1px solid var(--mrl-ink);
}

.mrl-checklist article + article {
  border-left: 1px solid var(--mrl-ink);
}

.mrl-checklist span {
  color: var(--mrl-coral);
  font-size: 12px;
  font-weight: 900;
}

.mrl-checklist h3 {
  margin: 48px 0 15px;
  font-family: var(--mrl-display);
  font-size: 36px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mrl-checklist p {
  margin: 0;
  color: var(--mrl-muted);
  font-size: 15px;
}

.mrl-first-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1320px;
  margin: 52px auto 0;
  padding: 30px 35px;
  color: var(--mrl-white);
  background: var(--mrl-deep);
}

.mrl-first-action p {
  max-width: 760px;
  margin: 0;
}

.mrl-first-action a {
  color: var(--mrl-water);
  font-weight: 850;
  text-decoration: none;
}

.mrl-team {
  display: grid;
  grid-template-columns: 0.9fr 0.55fr 0.55fr;
  gap: 28px;
  padding: 120px 7vw;
  color: var(--mrl-white);
  background: var(--mrl-ink);
}

.mrl-team-copy {
  align-self: center;
  padding-right: 5vw;
}

.mrl-team-copy p:not(.mrl-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.67);
}

.mrl-team-copy p[id] {
  color: var(--mrl-white);
  font-weight: 650;
}

.mrl-coach {
  margin: 0;
}

.mrl-coach-two {
  margin-top: 100px;
}

.mrl-coach img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #d7e2ea;
  filter: saturate(0.7) contrast(1.04);
}

.mrl-coach figcaption {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrl-contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 9vw;
  align-items: end;
  padding: 120px 7vw;
  color: var(--mrl-white);
  background: var(--mrl-coral);
}

.mrl-contact .mrl-kicker {
  color: var(--mrl-white);
}

.mrl-contact > div:first-child > p:last-child {
  max-width: 540px;
  margin-top: 30px;
  font-weight: 680;
}

.mrl-contact-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
  color: var(--mrl-ink);
  background: var(--mrl-white);
  box-shadow: 18px 18px 0 var(--mrl-ink);
}

.mrl-contact-label {
  margin: 0 0 35px;
  color: var(--mrl-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mrl-contact-card > a:not(.mrl-contact-main) {
  width: fit-content;
  margin-bottom: 10px;
  font-family: var(--mrl-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-decoration: none;
}

.mrl-contact-main {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--mrl-ink);
  border-bottom: 1px solid var(--mrl-ink);
  font-weight: 850;
  text-decoration: none;
}

.mrl-contact-card > p:last-child {
  margin: 24px 0 0;
  color: var(--mrl-muted);
  font-size: 12px;
}

.mrl-sources {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.8fr;
  gap: 5vw;
  padding: 70px 7vw;
  background: var(--mrl-cream);
  border-bottom: 1px solid var(--mrl-line);
}

.mrl-sources h2 {
  margin: 0;
  font-family: var(--mrl-display);
  font-size: 28px;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.mrl-sources > p {
  margin: 0;
  color: var(--mrl-muted);
  font-size: 13px;
}

.mrl-sources > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.mrl-sources a {
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: var(--mrl-coral);
  text-underline-offset: 4px;
}

.mrl-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 7vw;
  color: rgba(255, 255, 255, 0.55);
  background: var(--mrl-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .mrl-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .mrl-hero-copy {
    padding-left: 5vw;
  }

  .mrl-section-head {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .mrl-section-head > p:last-child {
    grid-column: 2;
  }

  .mrl-format-kids {
    grid-column: 1 / 7;
  }

  .mrl-format-adults {
    grid-column: 7 / 13;
  }

  .mrl-format-personal {
    grid-column: 3 / 11;
    margin-top: 0;
  }

  .mrl-pools,
  .mrl-tariffs {
    grid-template-columns: 1fr;
  }

  .mrl-pool-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mrl-tariff-intro {
    position: static;
  }

  .mrl-freeze {
    grid-column: 1;
  }

  .mrl-team {
    grid-template-columns: 1fr 0.65fr 0.65fr;
  }

  .mrl-contact {
    gap: 5vw;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  body.mrl-page {
    font-size: 16px;
  }

  .mrl-preview {
    padding: 8px 12px;
    font-size: 10px;
    line-height: 1.35;
  }

  .mrl-header {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 18px;
  }

  .mrl-nav {
    display: none;
  }

  .mrl-brand-mark {
    width: 34px;
    height: 34px;
  }

  .mrl-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .mrl-hero-copy {
    order: 2;
    padding: 52px 20px 135px;
  }

  .mrl-hero h1 {
    margin-bottom: 25px;
    max-width: 100%;
    font-size: clamp(48px, 15.2vw, 60px);
    line-height: 0.82;
  }

  .mrl-hero-copy .mrl-lead {
    font-size: 18px;
  }

  .mrl-hero-copy > p:not(.mrl-kicker) {
    font-size: 14px;
  }

  .mrl-hero-visual {
    order: 1;
    height: 350px;
    min-height: 350px;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }

  .mrl-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .mrl-lane {
    width: 170%;
  }

  .mrl-photo-note {
    right: 18px;
    bottom: 12%;
    width: 112px;
    height: 112px;
  }

  .mrl-photo-note strong {
    font-size: 38px;
  }

  .mrl-score {
    left: 20px;
    bottom: 34px;
    gap: 20px;
  }

  .mrl-score div {
    display: grid;
    gap: 0;
  }

  .mrl-score strong {
    font-size: 30px;
  }

  .mrl-score span {
    font-size: 9px;
  }

  .mrl-button {
    width: 100%;
  }

  .mrl-formats,
  .mrl-first,
  .mrl-team,
  .mrl-contact {
    padding: 80px 20px;
  }

  .mrl-section-head,
  .mrl-first-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .mrl-section-head > p:last-child {
    grid-column: 1;
  }

  .mrl-section-head h2,
  .mrl-pool-title h2,
  .mrl-tariff-intro h2,
  .mrl-first-heading h2,
  .mrl-team-copy h2,
  .mrl-contact h2 {
    font-size: 49px;
  }

  .mrl-format-track {
    display: flex;
    flex-direction: column;
  }

  .mrl-format,
  .mrl-format-kids,
  .mrl-format-adults,
  .mrl-format-personal {
    min-height: 0;
    margin-top: 0;
  }

  .mrl-format img,
  .mrl-format-kids img {
    height: 320px;
  }

  .mrl-pool-title {
    padding: 78px 20px 55px;
  }

  .mrl-pool-console {
    min-height: 590px;
    padding: 45px 20px 60px;
  }

  .mrl-pool-tabs {
    margin-bottom: 48px;
  }

  .mrl-pool-tabs button {
    min-height: 52px;
    padding: 0 8px;
    font-size: 12px;
  }

  .mrl-pool-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mrl-pool-number {
    font-size: 34px;
  }

  .mrl-pool-panel h3 {
    font-size: 40px;
  }

  .mrl-tariffs {
    gap: 48px;
    padding: 80px 20px;
  }

  .mrl-price-board {
    grid-template-columns: 1fr;
  }

  .mrl-price-wide {
    grid-column: 1;
  }

  .mrl-checklist {
    grid-template-columns: 1fr;
  }

  .mrl-checklist article {
    min-height: 0;
  }

  .mrl-checklist article + article {
    border-left: 0;
  }

  .mrl-checklist h3 {
    margin-top: 28px;
  }

  .mrl-first-action {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .mrl-team {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mrl-team-copy {
    grid-column: 1 / -1;
    padding: 0 0 26px;
  }

  .mrl-coach-two {
    margin-top: 62px;
  }

  .mrl-coach figcaption {
    font-size: 9px;
  }

  .mrl-contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mrl-contact-card {
    padding: 28px 22px;
    box-shadow: 10px 10px 0 var(--mrl-ink);
  }

  .mrl-contact-card > a:not(.mrl-contact-main) {
    font-size: 23px;
    overflow-wrap: anywhere;
  }

  .mrl-sources {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 55px 20px;
  }

  .mrl-footer {
    flex-direction: column;
    padding: 25px 20px;
  }
}

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