:root {
  --pink: #ef2b78;
  --pink2: #ff6aa3;
  --pink3: #ffd9e8;
  --soft: #fff1f6;
  --soft2: #fff8fb;
  --purple: #a66bd6;
  --blue: #2d9bf0;
  --green: #70bf44;
  --black: #101010;
  --text: #333;
  --muted: #666;
  --white: #fff;
  --line: #f4d7e3;
  --shadow: 0 18px 45px rgba(239, 43, 120, 0.13);
  --shadow2: 0 14px 34px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --container: 1180px;
}

/* Registration */

.registration-page {
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}

.registration-page .container {
  max-width: none;
}

.registration-page .registration-shell {
  overflow: visible;
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 217, 232, 0.72), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff8fb 42%, #fff 100%);
}

.registration-page .registration-main {
  position: relative;
  z-index: 1;
}

.registration-page .registration-nav-active {
  box-shadow: 0 12px 24px rgba(239, 43, 120, 0.24);
}

.registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: center;
  min-height: 390px;
  padding-top: 58px;
  padding-bottom: 48px;
}

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

.registration-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration-eyebrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.registration-hero h1 {
  margin: 0;
  color: var(--black);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.registration-hero h1 span {
  display: block;
  color: var(--pink);
  font-size: 0.68em;
  letter-spacing: -0.04em;
}

.registration-intro {
  max-width: 720px;
  margin-top: 24px;
  color: #555;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.registration-intro > :first-child,
.registration-after-form > :first-child,
.registration-side-content > :first-child {
  margin-top: 0;
}

.registration-intro > :last-child,
.registration-after-form > :last-child,
.registration-side-content > :last-child {
  margin-bottom: 0;
}

.registration-hero-art {
  position: relative;
  align-self: stretch;
  min-height: 290px;
}

.registration-hero-art::before {
  position: absolute;
  inset: 30px -30px 8px 10px;
  border-radius: 50% 45% 48% 52%;
  content: "";
  background: linear-gradient(145deg, var(--pink3), #fff0f6);
  transform: rotate(-7deg);
}

.registration-hero-art img {
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 1;
  width: min(100%, 300px);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(239, 43, 120, 0.16));
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 28px;
  padding-bottom: 76px;
}

.registration-form {
  display: grid;
  gap: 22px;
}

.registration-form-card,
.registration-side-card {
  position: relative;
  margin: 0;
  border: 1px solid rgba(239, 43, 120, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.registration-form-card {
  padding: 30px;
}

.registration-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.registration-card-heading > span {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  box-shadow: 0 10px 22px rgba(239, 43, 120, 0.2);
}

.registration-card-heading p {
  margin: 0 0 2px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration-card-heading h2 {
  margin: 0;
  color: var(--black);
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.1;
}

.registration-fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 16px;
}

.registration-field {
  grid-column: span 3;
  min-width: 0;
}

.registration-field-wide {
  grid-column: 1 / -1;
}

.registration-field-city {
  grid-column: span 4;
}

.registration-field-postcode {
  grid-column: span 2;
}

.registration-field-email {
  grid-column: span 4;
}

.registration-field-phone {
  grid-column: span 2;
}

.registration-field label {
  display: block;
  margin-bottom: 7px;
  color: #272127;
  font-size: 13px;
  font-weight: 800;
}

.registration-field label span,
.registration-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.registration-field small {
  display: block;
  margin-top: 7px;
  line-height: 1.45;
}

.registration-page .form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid #ecdce3;
  border-radius: 13px;
  color: var(--text);
  font: 600 15px/1.3 Inter, Arial, sans-serif;
  background: #fffafd;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.registration-page .form-control:hover {
  border-color: #e3b7c9;
  background: #fff;
}

.registration-page .form-control:focus {
  border-color: var(--pink);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 43, 120, 0.12);
}

.registration-page input[type="file"].form-control {
  padding: 9px 11px;
}

.registration-page input[type="file"]::file-selector-button {
  margin: -3px 12px -3px -3px;
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  color: var(--pink);
  font-weight: 800;
  background: var(--soft);
  cursor: pointer;
}

.registration-page .invalid-feedback {
  margin-top: 6px;
  color: #ff0000;
  font-size: 12px;
  font-weight: 700;
}

.registration-page .was-validated .form-control:invalid,
.registration-page .form-control.is-invalid {
  border-color: #d92b68;
  background-image: none;
}

.registration-groups {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.registration-page .groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-page .group-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  margin: 0;
  padding: 20px;
  border: 2px solid #f0dfe6;
  border-radius: 18px;
  color: var(--text);
  background: #fffafd;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.registration-page .group-card:hover {
  border-color: #eea6c2;
  box-shadow: 0 12px 25px rgba(239, 43, 120, 0.1);
  transform: translateY(-2px);
}

.registration-page .group-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.registration-page .radio-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 23px;
  height: 23px;
  border: 2px solid #d5bdc7;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.registration-page .group-card:has(input[type="radio"]:checked) {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 43, 120, 0.11), 0 14px 28px rgba(239, 43, 120, 0.12);
}

.registration-page .group-card:has(input[type="radio"]:checked) .radio-mark {
  border-color: var(--pink);
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 12px var(--pink);
}

.registration-page .group-card:has(input[disabled]) {
  opacity: 0.52;
  filter: grayscale(0.2);
  cursor: not-allowed;
}

.registration-page .group-card:has(input[disabled]):hover {
  border-color: #f0dfe6;
  box-shadow: none;
  transform: none;
}

.registration-page .group-card-content {
  display: grid;
  gap: 7px;
  padding-right: 28px;
}

.registration-page .group-card .title {
  display: block;
  margin: 0;
  color: var(--black);
  font-family: Poppins, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.registration-page .group-card .meta {
  display: block;
  color: #5c5559;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.registration-page .group-card .meta.trener {
  color: var(--pink);
  font-weight: 800;
}

.registration-page .group-card .footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.registration-page .group-card .badge {
  display: inline-flex;
  border-radius: 999px;
  font-weight: 800;
}

.registration-page .group-card .group-age {
  max-width: 64%;
  padding: 6px 9px;
  color: #9a1d50;
  font-size: 10px;
  line-height: 1.25;
  background: var(--pink3);
}

.registration-page .group-card .cap {
  display: grid;
  justify-items: end;
  padding: 0;
  color: var(--pink);
  line-height: 1;
  background: transparent;
}

.registration-page .group-card .cap strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
}

.registration-page .group-card .cap small {
  max-width: 80px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.15;
  text-align: right;
}

.registration-page .group-card .cap.free strong {
  color: #4f9d2f;
}

.registration-page .group-card .cap.warning strong {
  color: #e88716;
}

.registration-page .group-card .cap.full strong {
  color: #d62c55;
}

.registration-page .groups-grid.is-invalid + .invalid-feedback {
  display: block;
}

.registration-consents {
  display: grid;
  gap: 12px;
}

.registration-consents .registration-card-heading {
  margin-bottom: 10px;
}

.registration-check {
  position: relative;
}

.registration-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.registration-check label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 1.5px solid #f0dfe6;
  border-radius: 14px;
  color: #494147;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  background: #fffafd;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.registration-check label > span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #d7bdc8;
  border-radius: 8px;
  color: transparent;
  background: #fff;
}

.registration-check label svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.registration-check input:checked + label {
  border-color: var(--pink);
  background: #fff;
}

.registration-check input:checked + label > span {
  border-color: var(--pink);
  color: #fff;
  background: var(--pink);
}

.registration-check input:focus-visible + label {
  outline: 3px solid rgba(239, 43, 120, 0.2);
  outline-offset: 2px;
}

.registration-check label a,
.registration-side-card a,
.registration-after-form a {
  color: var(--pink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.registration-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), #f94e90);
  box-shadow: 0 14px 28px rgba(239, 43, 120, 0.25);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.registration-submit:hover {
  box-shadow: 0 18px 34px rgba(239, 43, 120, 0.3);
  transform: translateY(-2px);
}

.registration-submit svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.registration-after-form {
  padding: 20px 22px;
  border: 1px solid #f2d3df;
  border-radius: 16px;
  color: #554d52;
  font-size: 14px;
  line-height: 1.65;
  background: var(--soft2);
}

.registration-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.registration-side-card {
  overflow: hidden;
  padding: 24px;
}

.registration-side-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  border-radius: 0 0 0 100%;
  content: "";
  background: var(--soft);
}

.registration-side-kicker {
  position: relative;
  margin: 0 0 5px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration-side-card h2 {
  position: relative;
  margin: 0 0 16px;
  color: var(--black);
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.registration-side-card ol {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
  padding-left: 20px;
  color: #5c5559;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.registration-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 14px;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--pink);
}

.registration-download svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.registration-download span {
  display: grid;
  gap: 1px;
}

.registration-download strong {
  font-size: 13px;
}

.registration-download small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
}

.registration-side-content {
  position: relative;
  color: #5c5559;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .registration-hero {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .registration-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 26px;
  }

  .registration-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .registration-intro {
    font-size: 14px;
  }

  .registration-hero-art {
    display: none;
  }

  .registration-form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .registration-card-heading > span {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .registration-fields,
  .registration-page .groups-grid,
  .registration-sidebar {
    grid-template-columns: 1fr;
  }

  .registration-field,
  .registration-field-city,
  .registration-field-postcode,
  .registration-field-email,
  .registration-field-phone,
  .registration-field-wide {
    grid-column: auto;
  }

  .registration-page .group-card {
    min-height: 195px;
  }

  .registration-layout {
    width: min(var(--container), calc(100% - 28px));
    padding-bottom: 48px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
  background: #fff;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.container {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.bg-blob {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.86;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bg-blob::before,
.bg-blob::after {
  content: none;
}

.bg-blob-one {
  top: -20px;
  left: -22px;
  width: 310px;
  height: 160px;
  background-image: url("assets/bg-wave-top-left.svg");
}

.bg-blob-two {
  top: 240px;
    right: -250px;
    width: 520px;
    height: 330px;
    border-radius: 55% 45% 40% 60%;
    background: linear-gradient(135deg, #ffc1d8, #ef2b78);
    transform: rotate(-12deg);
}

.bg-blob-three {
  right: 0;
  bottom: 0;
  width: 421px;
  height: 201px;
  background-image: url("assets/bg-wave-bottom-right.svg");
}
.bg-blob-four {
    left: 0;
    bottom: 0;
    width: 298px;
    height: 105px;
    background-image: url(assets/bg-wave-bottom-left.svg);
    z-index: 2;
}

.dots {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 88px;
  height: 88px;
  opacity: 0.42;
  background-image: radial-gradient(var(--pink2) 3px, transparent 3px);
  background-size: 18px 18px;
}

.dots-one {
  top: 145px;
  right: 95px;
}

.dots-two {
  top: 430px;
  left: 18px;
}

.dots-three {
  top: 900px;
  right: 45px;
}

.dots-four {
  bottom: 270px;
  left: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0;
  background: rgb(255 255 255 / 63%);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 72px;
}

.logo-link {
  flex: 0 0 auto;
}

.logo {
  display: block;
  width: 110px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #171717;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--pink);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
  transform: translateX(-50%);
}

.join-button,
.home-primary,
.home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.join-button:hover,
.home-primary:hover,
.home-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(237, 31, 112, 0.23);
}

.join-button {
  flex: 0 0 auto;
  padding: 14px 26px;
  color: #fff;
  font-size: 14px;
  background: var(--pink);
}

.join-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--pink);
  background: #fff;
  font-size: 25px;
  font-weight: 900;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

main {
  position: relative;
  z-index: 1;
}

.home-hero {
  padding: 18px 0 36px;
}

.home-hero-inner {
  min-height: 548px;
}

.home-copy {
  position: relative;
  z-index: 3;
  width: min(560px, 54%);
  padding-top: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.home-copy h1 {
  margin: 0;
  color: var(--black);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-copy h1 span,
.home-copy h1 strong {
  display: block;
}

.home-copy h1 strong {
  color: var(--pink);
}

.home-copy h1 svg {
  width: 0.7em;
  height: 0.7em;
  margin-left: 2px;
  fill: currentColor;
  vertical-align: baseline;
}

.home-lead {
  margin: 24px 0 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.home-primary,
.home-secondary {
  min-height: 52px;
  padding: 0 25px;
  font-size: 14px;
}

.home-primary {
  color: #fff;
  background: var(--pink);
}

.home-secondary {
  color: #151515;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.home-primary svg,
.home-secondary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-art {
  position: absolute;
  top: 24px;
  right: -92px;
  z-index: 1;
  width: min(790px, 66vw);
  height: 500px;
}

.home-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 158px 158px;
  filter: saturate(1.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
}

.availability {
  padding: 16px 0 40px;
}

.availability-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 20px;
}

.availability h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.availability h2 span {
  color: var(--pink);
}

.availability-head p {
  margin: 0 0 6px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 324px;
  gap: 28px;
  align-items: stretch;
}

.schedule-card,
.why-card {
  border: 1px solid rgba(246, 202, 221, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.schedule-card {
  overflow: hidden;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.54fr 0.82fr;
}

.schedule-title {
  display: grid;
  place-items: center;
  min-height: 63px;
  padding: 14px 12px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: var(--pink);
}

.time-cell,
.spots-list,
.days-cell {
  min-height: 104px;
  border-bottom: 1px solid #ffc6da;
}

.time-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}

.time-cell svg {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 13px;
  border: 1px solid #ffd5e4;
  border-radius: 50%;
  color: var(--pink);
  background: #fff0f6;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.time-cell strong {
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  white-space: nowrap;
}

.spots-list {
  display: grid;
  gap: 8px;
  align-content: center;
  margin: 0;
  padding: 21px 26px;
  color: #202020;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  justify-content: center;
}

.spots-list strong {
  color: var(--pink);
  font-weight: 900;
}

.days-cell {
  grid-row: span 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 20px 12px;
  color: var(--pink);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #fff0f6;
  border-bottom: 0;
}

.days-cell svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.time-cell:nth-last-child(-n + 2),
.spots-list:nth-last-child(-n + 1) {
  border-bottom: 0;
}

.why-card {
  position: relative;

  padding: 32px 28px;
}



.why-heart {

  margin-bottom: 18px;
 position: absolute;
    top: -15px;
    left: 50%;
    width: 33px;
    height: 33px;
    color: var(--pink);
    fill: currentColor;
    transform: translateX(-50%);
}

.why-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.why-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-card li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  color: #252525;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.why-card li svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  color: var(--pink);
  background: #fff0f6;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-section {
  position: relative;
  z-index: 1;
  padding: 48px 0 48px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
  min-height: 420px;
}

.about-copy {
  position: relative;
  z-index: 3;
}

.about-copy h1 {
  margin: 0 0 18px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(66px, 7vw, 94px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-copy h1 span {
  color: var(--pink);
}

.about-kicker {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-kicker svg {
  width: 46px;
  height: 46px;
  color: var(--pink);
  fill: currentColor;
}

.about-kicker p {
  margin: 0;
}

.about-kicker span {
  color: var(--pink);
}

.about-lead {
  max-width: 420px;
  margin: 0;
  color: #111;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.about-hero-art {
  position: relative;
  justify-self: end;
  width: min(790px, 64vw);
  margin-right: -92px;
}

.about-hero-art img {
  width: 100%;
  height: auto;
}

.about-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 30px;
  align-items: center;
  margin-top: 10px;
  padding: 25px 36px;
  border: 1px solid rgba(244, 215, 227, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow2);
}

.about-intro-card p {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.about-intro-card p + p {
  margin-top: 12px;
}

.about-intro-card strong {
  color: var(--pink);
  font-weight: 900;
}

.about-icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.about-icon-row article {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.about-icon-row svg {
  width: 48px;
  height: 48px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-icon-row article:last-child svg {
  fill: currentColor;
  stroke: none;
}

.about-icon-row strong {
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-card {
  position: relative;
  min-height: 344px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 227, 0.72);
  border-radius: 16px;
  background: #fff3f8;
  box-shadow: var(--shadow);
}

.about-card-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border: 2px solid #ffd2e3;
  border-radius: 50%;
  color: var(--pink);
  background: #fff;
}

.about-card-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon.photo {
  overflow: hidden;
  padding: 0;
}

.about-card-icon.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-card h2 {
  margin: 0 0 14px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.about-card p {
  margin: 0 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.48;
}

.about-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.about-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.about-card li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--pink);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 12 4 4 8-8' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 0 16px;
  border-radius: 7px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.about-card-heart {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 32px;
  height: 32px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-founder-card {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
  margin-top: 40px;
  padding: 0 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 227, 0.86);
  border-radius: 18px;
  background: #fff8fb;
  box-shadow: var(--shadow2);
}

.about-founder-photo {
  width: 100%;
  height: 100%;
  min-height: 372px;
  object-fit: cover;
  object-position: center top;
}

.about-founder-copy h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-founder-copy h2 svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.founder-name {
  margin: 0 0 22px;
  color: var(--pink);
  font-family: "Dancing Script", cursive;
  font-size: 46px;
  line-height: 1;
}

.about-founder-copy p:not(.founder-name) {
  margin: 0 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.about-success {
  display: grid;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid #f3b6cf;
}

.about-success > strong {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.about-success article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.about-success article span,
.about-success article svg {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--pink);
}

.about-success article span {
  border: 4px dotted var(--pink);
  border-radius: 50%;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.about-success article svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-success article p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.38;
}

.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  min-height: 210px;
  margin-top: 42px;
  padding: 28px 34px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffb7d3 0%, #ffd8e7 52%, #f469a2 100%);
  box-shadow: var(--shadow);
}

.about-cta-silhouette {
  width: 140px;
}

.about-cta h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-cta h2 svg {
  width: 0.72em;
  height: 0.72em;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-cta p {
  margin: 12px 0 22px;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.about-cta a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-cta-girls {
  align-self: end;
  width: 360px;
  margin-bottom: -28px;
}

.training-section {
  position: relative;
  z-index: 1;
  padding: 64px 0 56px;
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(610px, 1fr) minmax(0, 0.95fr);
  gap: 10px;
  align-items: center;
  min-height: 520px;
}

.training-copy {
  position: relative;
  z-index: 3;
}

.training-copy h1 {
  margin: 0;
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(42px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.training-copy h1 span {
  display: block;
  color: var(--pink);
}

.training-copy h1 .training-title-main {
  color: var(--black);
  white-space: nowrap;
}

.training-lead {
  max-width: 580px;
  margin: 16px 0 22px;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.training-points {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.training-points article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
}

.training-points span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--pink);
  background: #fff1f6;
}

.training-points svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-points h2 {
  margin: 0 0 4px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.training-points p {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
}

.training-hero-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(690px, 56vw);
  height: 500px;
  overflow: hidden;
  margin-right: -104px;
}

.training-hero-art::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 210px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0) 100%);
}

.training-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.24);
  transform-origin: right center;
}

.training-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid #f8cbdc;
  border-radius: 18px;
  background: rgba(255, 247, 250, 0.96);
  box-shadow: var(--shadow2);
}

.training-stats article {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 122px;
  padding: 18px 16px;
  border-right: 1px solid #f3b6cf;
  color: #111;
  text-align: center;
}

.training-stats article:last-child {
  border-right: 0;
}

.training-stats svg {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-stats strong {
  display: block;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.32;
  text-transform: uppercase;
}

.training-stats span {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
}

.training-heading {
  padding-top: 34px;
  text-align: center;
}

.training-heading h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.training-heading p {
  max-width: 860px;
  margin: 12px auto 0;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.training-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 24px;
}

.training-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.training-card header {
  padding: 14px 12px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.training-card-body {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 22px 20px 20px;
  text-align: center;
}

.training-card h2 {
  min-height: 64px;
  margin: 0;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.training-card p {
  margin: 14px 0 18px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.48;
}

.coach-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  text-align: left;
}

.coach-row img {
  width: 62px;
  height: 62px;
  border: 3px solid currentColor;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

.coach-row strong {
  display: inline-flex;
  min-width: 92px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.coach-row span {
  display: block;
  margin-top: 6px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.training-card-spacer {
  min-height: 91px;
}

.training-mini-list {
  display: grid;
  gap: 8px;
  align-self: flex-start;
  width: min(180px, 100%);
  margin: auto 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  list-style: none;
  text-align: left;
}

.training-mini-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.training-mini-list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.training-card.purple { color: #9d5ad2; }
.training-card.green { color: #74bd48; }
.training-card.blue { color: #2695eb; }
.training-card.pink { color: var(--pink); }
.training-card.purple header,
.training-card.purple .coach-row strong,
.training-card.purple .training-mini-list svg { background: #9d5ad2; }
.training-card.green header,
.training-card.green .coach-row strong,
.training-card.green .training-mini-list svg { background: #74bd48; }
.training-card.blue header,
.training-card.blue .coach-row strong,
.training-card.blue .training-mini-list svg { background: #2695eb; }
.training-card.pink header,
.training-card.pink .coach-row strong,
.training-card.pink .training-mini-list svg { background: var(--pink); }
.training-card.purple .training-mini-list { background: #f0e3fb; }
.training-card.green .training-mini-list { background: #edf7e7; }
.training-card.blue .training-mini-list { background: #e6f3ff; }
.training-card.pink .training-mini-list { background: #ffe3ed; }

.training-cta {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 218px;
  margin-top: 48px;
  padding: 30px 430px 30px 36px;
  overflow: visible;
  border-radius: 18px;
  background: linear-gradient(135deg, #f469a2 0%, #ffb7d3 20%, #ffd8e7 52%, #f469a287 80%, #f469a2 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

/*.training-cta::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -74px;
  width: 260px;
  height: 160px;
  border-radius: 60% 40% 0 0;
  background: rgba(239, 43, 120, 0.36);
}*/

.training-cta-silhouette {
  position: relative;
  z-index: 1;
  width: 160px;
  height: auto;
}

.training-cta > div {
  position: relative;
  z-index: 1;
}

.training-cta h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.training-cta h2 svg {
  width: 0.7em;
  height: 0.7em;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.training-cta p {
  max-width: 620px;
  margin: 14px 0 20px;
  color: #111;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.training-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.training-cta a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-cta-girls {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 0;
  width: 370px;
  max-width: none;
  filter: drop-shadow(0 10px 18px rgba(239, 43, 120, 0.12));
}
.about-girls
{
  width: 344px;
}

.competition-section {
  position: relative;
  z-index: 1;
  padding: 58px 0 48px;
}

.competition-hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.78fr) minmax(0, 1.22fr);
  gap: 8px;
  align-items: center;
  min-height: 520px;
}

.competition-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.competition-copy h1 {
  margin: 0 0 16px;
  color: #111;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(58px, 6.1vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.competition-copy h1 span {
  display: block;
  color: var(--pink);
}

.competition-kicker {
  max-width: 510px;
  margin: 0 0 16px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.26;
  text-transform: uppercase;
}

.competition-lead {
  max-width: 520px;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.competition-heart {
  width: 48px;
  height: 48px;
  margin-top: 22px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.competition-hero-art {
  position: relative;
  justify-self: end;
  width: min(820px, 66vw);
  height: 520px;
  margin-right: -104px;
  overflow: hidden;
}

.competition-hero-art::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 220px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0) 100%);
}

.competition-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.08);
  transform-origin: right center;
}

.competition-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) repeat(3, minmax(0, 0.62fr));
  gap: 16px;
  margin-top: -18px;
}

.competition-intro-card,
.competition-mini-card,
.competition-representation,
.competition-benefit-grid article {
  border: 1px solid rgba(244, 215, 227, 0.82);
  border-radius: 16px;
  background: rgba(255, 247, 250, 0.96);
  box-shadow: var(--shadow);
}

.competition-intro-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 34px;
}

.competition-intro-card > span,
.competition-mini-card > span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: #fff0f6;
}

.competition-intro-card > span {
  width: 68px;
  height: 68px;
}

.competition-intro-card svg,
.competition-mini-card svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.competition-intro-card h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.competition-intro-card h2 strong {
  display: block;
  color: var(--pink);
}

.competition-intro-card p,
.competition-mini-card p,
.competition-representation p,
.competition-benefit-grid p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.48;
}

.competition-mini-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 205px;
  padding: 22px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}

.competition-mini-card > span {
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
}

.competition-mini-card h2 {
  margin: 0 0 10px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.competition-representation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(370px, 0.9fr);
  gap: 0;
  align-items: stretch;
  min-height: 320px;
  margin-top: 26px;
  padding: 0;
  overflow: visible;
}

.competition-representation::before {
  content: "";
  position: absolute;
  top: 0px;
  right: calc(38.8% - 96px);
  bottom: 0px;
  z-index: 2;
  width: 170px;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(255 247 251) 0%, rgb(255 247 250) 28%, rgb(255 247 250 / 92%) 48%, rgb(255 247 250 / 3%) 88%);
}

.competition-representation-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
  padding: 34px 0 30px 36px;
}

.competition-representation h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.competition-representation h2 span {
  color: var(--pink);
}

.competition-badges {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: calc(100% + 92px);
  margin: 22px -92px 22px 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #ffe8f1;
}

.competition-badges span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.competition-badges svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  padding: 3px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.competition-representation img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 0 16px 16px 0;
  object-fit: cover;
  object-position: center center;
}

.competition-floating-heart {
  position: absolute;
  z-index: 6;
  top: -20px;
  right: -18px;
  width: 58px;
  height: 58px;
  padding: 14px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  background: #fff;
  border-radius: 50%;
  filter: drop-shadow(0 10px 22px rgba(239, 43, 120, 0.12));
}

.competition-benefits {
  margin-top: 28px;
}

.competition-benefits > h2 {
  margin: 0 0 22px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.competition-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 16px;
}

.competition-benefit-grid article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 0;
  box-shadow: none;
}

.competition-benefit-grid article + article {
  border-left: 0;
}

.competition-benefit-grid span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
}

.competition-benefit-grid article.purple span {
  background: var(--purple);
}

.competition-benefit-grid svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.competition-benefit-grid article:last-child svg {
  fill: none;
}

.competition-benefit-grid h3 {
  margin: 0 0 8px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.competition-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.competition-gallery img {
  width: 100%;
  aspect-ratio: 1.22;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.competition-cta {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  margin-top: 34px;
  padding: 24px 28px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f469a2 0%, #ffb7d3 20%, #ffd8e7 52%, #f469a287 100%);
  box-shadow: var(--shadow);
}

/*.competition-cta::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -88px;
  width: 270px;
  height: 165px;
  border-radius: 60% 40% 0 0;
  background: rgba(239, 43, 120, 0.36);
}*/

.competition-cta-silhouette {
  width: 150px;

}

.competition-cta h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(26px, 2.7vw, 34px);
    font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.competition-cta h2 svg {
  width: 0.68em;
  height: 0.68em;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.competition-cta p {
  margin: 10px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.competition-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.competition-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.competition-cta-actions .primary {
  color: #fff;
  background: var(--pink);
}

.competition-cta-actions .secondary {
  color: #111;
  background: #fff;
}

.competition-cta-actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-section,
.gallery-page-section,
.contact-page-section,
.tax-section {
  padding: 54px 0 46px;
}

.team-hero,
.gallery-hero,
.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.team-copy h1,
.gallery-hero h1,
.contact-page-hero h1 {
  margin: 0;
  color: #050505;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.team-copy h1 span,
.gallery-hero h1 span,
.contact-page-hero h1 span {
  color: var(--pink);
}

.team-script {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  color: #101010;
  font-family: "Dancing Script", cursive;
  font-size: clamp(29px, 3.3vw, 42px);
  line-height: 1.05;
}

.team-script svg {
  width: 32px;
  height: 32px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.team-lead,
.gallery-lead,
.contact-page-lead {
  max-width: 650px;
  margin: 0;
  color: #171717;
  font-size: 17px;
  font-weight: 500;
}

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

.contact-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(239, 43, 120, 0.18);
}

.contact-hero-actions a + a {
  color: var(--pink);
  border: 1px solid #f5bfd2;
  background: #fff;
}

.contact-hero-actions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-hero-art {
  position: relative;
  min-height: 360px;
  overflow: visible;
}



.team-hero-art img {
  position: absolute;
      right: 0px;
    bottom: 30px;
  width: min(430px, 88%);
  opacity: 0.9;
  filter: drop-shadow(0 18px 34px rgba(239, 43, 120, 0.22));
}

.team-grid {
  display: grid;
  grid-template-columns: 1.22fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 26px;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px 16px 24px;
  border: 1px solid #f9dce7;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-card-featured {
  border: 2px solid var(--pink);
  background: linear-gradient(180deg, #fff0f6 0%, #fff8fb 100%);
  box-shadow: 0 16px 44px rgba(239, 43, 120, 0.18);
}

.team-photo {
  height: 304px;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 18px 18px 14px 14px;
  background: #ffe4ef;
}

.team-card-featured .team-photo {
  height: 330px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card h2 {
  margin: 0;
  color: #101010;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.team-card h2 span {
  display: block;
  color: var(--pink);
}

.team-role {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  min-height: 38px;
  margin: 16px 0 18px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  background: var(--pink);
}

.team-card > p:not(.team-role):not(.team-note) {
  margin: 14px 2px 0;
  color: #171717;
  font-size: 15px;
  font-weight: 500;
}

.team-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #161616;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  text-align: left;
}

.team-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
}

.team-list svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-note {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--pink);
  font-family: "Dancing Script", cursive;
  font-size: 24px;
  line-height: 1.05;
}

.team-card-heart {
  width: 36px;
  height: 36px;
  margin: auto auto 0;
  padding-top: 22px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.team-values {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.7fr));
  gap: 0;
  align-items: stretch;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #f9dce7;
  border-radius: 20px;
  background: rgba(255, 241, 246, 0.92);
  box-shadow: var(--shadow);
}

.team-values-title {
  display: grid;
  grid-template-columns: 82px 1fr;
      gap: 6px;
    align-items: center;
    padding: 22px 29px;
}

.team-values-title svg,
.team-values article svg {
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-values-title svg {
  width: 72px;
  height: 72px;
}

.team-values h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(19px, 2.3vw, 20px);
  font-weight: 600;
  line-height: 1.16;
  text-transform: uppercase;
}

.team-values h2 span {
  color: var(--pink);
}

.team-values article {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px 20px;
  border-left: 1px solid #f3b6cf;
  text-align: center;
}

.team-values article svg {
  width: 46px;
  height: 46px;
}

.team-values article strong {
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-cta,
.gallery-cta {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  margin-top: 34px;
  padding: 24px 28px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffb7d3 0%, #ffd8e7 54%, #f5358499 100%);
  box-shadow: var(--shadow);
}

.team-cta {
  grid-template-columns: 178px minmax(320px, 1fr) auto;
  gap: 24px;
  min-height: 166px;
  padding: 20px 178px 16px 38px;
  isolation: isolate;
}

.team-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/team-cta-background.svg") center / 100% 100% no-repeat;
}

.team-cta::after,
.gallery-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 300px;
  height: 180px;
  border-radius: 60% 40% 0 0;
  background: rgba(239, 43, 120, 0.28);
}

.team-cta::after {
  display: none;
}

.team-cta > img,
.team-cta > div,
.team-cta > a {
  position: relative;
  z-index: 1;
}

.team-cta > img {
  align-self: end;
  justify-self: center;
  width: 166px;
  margin-bottom: 23px;
    filter: drop-shadow(0 14px 12px rgba(239, 43, 120, 0.22));
}

.team-cta h2,
.gallery-cta h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(27px, 2.6vw, 39px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.team-cta h2 span {
  display: block;
  color: var(--pink);
  font-family: "Dancing Script", cursive;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 0.95;
  text-transform: none;
}

.team-cta h2 {
  font-size: clamp(25px, 2.05vw, 32px);
  line-height: 1.04;
}

.team-cta h2 svg,
.gallery-cta h2 svg {
  width: 0.7em;
  height: 0.7em;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.team-cta p,
.gallery-cta p {
  margin: 8px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.team-cta p {
  margin-top: 10px;
}

.team-cta a,
.gallery-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.team-cta a {
  justify-self: center;
  min-width: 176px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(239, 43, 120, 0.2);
}

.team-cta a svg,
.gallery-cta a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.gallery-hero img,
.contact-page-hero img {
  width: 100%;
  min-height: 350px;
  /*border-radius: 28px 28px 110px 28px;*/
  object-fit: cover;
 /* box-shadow: var(--shadow);*/
}

.gallery-hero img {
  max-height: 430px;
  object-position: center;
}

.gallery-eyebrow,
.contact-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pink);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-eyebrow svg,
.contact-page-eyebrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-hero h1,
.contact-page-hero h1 {
  font-size: clamp(48px, 6.4vw, 86px);
}

.gallery-hero h1 span,
.contact-page-hero h1 span {
  display: block;
}

.gallery-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-feature-row article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid #f9dce7;
  border-radius: 20px;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-feature-row svg {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 50%;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  background: var(--pink);
}

.gallery-feature-row article:nth-child(2) svg {
  background: var(--purple);
}

.gallery-feature-row strong {
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-feature-row span {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 178px;
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 30px;
}

.gallery-tile {
  position: relative;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow2);
}

.gallery-tile-large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-tile-wide {
  grid-column: span 6;
}

.gallery-tile-tall {
  grid-row: span 2;
}

.gallery-tile-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-tile-button:focus-visible {
  outline: 4px solid rgba(239, 43, 120, 0.45);
  outline-offset: -4px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-tile:hover img {
  transform: scale(1.035);
}

.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(239, 43, 120, 0.9);
  pointer-events: none;
}

.gallery-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 132px;
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 92px 88px 54px;
  background: rgba(17, 10, 14, 0.9);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0;
}

.gallery-lightbox-frame img {
  width: min(100%, 1120px);
  height: auto;
  max-height: calc(100vh - 180px);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-frame figcaption {
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(239, 43, 120, 0.2);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(239, 43, 120, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  transform: translateY(-2px);
  background: #ff3b88;
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.gallery-lightbox-close {
  top: 24px;
  right: 28px;
  width: 54px;
  height: 54px;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.gallery-lightbox-prev {
  left: 26px;
}

.gallery-lightbox-next {
  right: 26px;
}

.gallery-lightbox-close svg,
.gallery-lightbox-nav svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
}

.contact-page-hero img {
  min-height: 320px;
  max-height: 390px;
  object-position: center bottom;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.contact-info-panel,
.contact-form-panel,
.contact-map-card,
.contact-note-panel {
  border: 1px solid #f9dce7;
  border-radius: 22px;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: var(--shadow);
}

.contact-location-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
}

.contact-form-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
}

.contact-info-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.contact-info-panel article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
}

.contact-info-panel article + article {
  border-top: 1px solid #f5c8d9;
}

.contact-info-panel span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
}

.contact-info-panel svg,
.contact-form-panel button svg,
.contact-benefits svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-panel svg {
  width: 30px;
  height: 30px;
}

.contact-info-panel h2 {
  margin: 0 0 4px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-panel a,
.contact-info-panel p {
  margin: 0;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.contact-form-head {
  grid-column: 1 / -1;
}

.contact-form-head h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-head p {
  margin: 6px 0 0;
  color: #555;
  font-weight: 600;
}

.contact-form-panel label {
  display: grid;
  gap: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-panel label:has(textarea),
.contact-form-panel button {
  grid-column: 1 / -1;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid #f3b6cf;
  border-radius: 14px;
  color: #111;
  font: 600 16px Inter, Arial, sans-serif;
  background: #fff;
  outline: 0;
}

.contact-form-panel input {
  height: 52px;
  padding: 0 16px;
}

.contact-form-panel textarea {
  resize: vertical;
  min-height: 130px;
  padding: 14px 16px;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(239, 43, 120, 0.12);
}

.contact-form-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
  cursor: pointer;
}

.contact-form-panel button svg {
  width: 20px;
  height: 20px;
}

.contact-map-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
}

.contact-map-card::after {
  content: "Popradská 258/84";
  position: absolute;
  top: 318px;
  right: 44px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(239, 43, 120, 0.2);
  pointer-events: none;
}

.contact-map-copy {
  display: grid;
  gap: 6px;
}

.contact-map-copy p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--pink);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map-copy p svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-map-card h2,
.contact-note-panel h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-map-copy span {
  color: #333;
  font-size: 16px;
  font-weight: 800;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 318px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe1ec, #fff8fb);
  filter: saturate(0.95);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.contact-map-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-note-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
}

.contact-note-panel article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid #f5c8d9;
  color: #222;
  font-weight: 800;
}

.contact-note-panel article:first-of-type {
  border-top: 0;
}

.contact-note-panel svg {
  width: 26px;
  height: 26px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tax-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: stretch;
}

.tax-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pink);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-eyebrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tax-hero h1 {
  margin: 0;
  color: #050505;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(68px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.tax-hero h1 span {
  display: block;
  color: var(--pink);
}

.tax-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #171717;
  font-size: 18px;
  font-weight: 600;
}

.tax-hero-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  overflow: hidden;
  border-radius: 24px;
  color: #111;
  background: linear-gradient(135deg, #ffe0eb, #fff8fb 54%, #f36aa2);
  box-shadow: var(--shadow);
}

.tax-hero-card svg {
  width: 62px;
  height: 62px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.tax-hero-card strong {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.tax-hero-card span {
  font-size: 16px;
  font-weight: 700;
}

.tax-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 22px;
  margin-top: 34px;
}

.tax-data-card,
.tax-download-card,
.tax-step-grid article,
.tax-note {
  border: 1px solid #f9dce7;
  border-radius: 22px;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: var(--shadow);
}

.tax-data-card,
.tax-download-card {
  padding: 28px;
}

.tax-data-card h2,
.tax-download-card h2,
.tax-steps > h2,
.tax-note h2 {
  margin: 0;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.tax-data-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.tax-data-card div {
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
}

.tax-data-card dt {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-data-card dd {
  margin: 4px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.tax-download-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.tax-download-card p {
  margin: 0;
  color: #333;
  font-weight: 650;
}

.tax-downloads {
  display: grid;
  gap: 12px;
}

.tax-downloads a,
.tax-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

.tax-downloads svg,
.tax-note a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tax-steps {
  margin-top: 34px;
}

.tax-steps > h2 {
  text-align: center;
}

.tax-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tax-step-grid article {
  padding: 26px;
}

.tax-step-grid span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
}

.tax-step-grid article:nth-child(2) span {
  background: var(--purple);
}

.tax-step-grid svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tax-step-grid h3 {
  margin: 18px 0 10px;
  color: #111;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-step-grid p {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.tax-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  background: linear-gradient(135deg, #ffe0eb, #fff8fb);
}

.tax-note p {
  margin: 8px 0 0;
  color: #333;
  font-weight: 650;
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #f9dce7;
  border-radius: 18px;
  background: #ffe1ec;
  box-shadow: var(--shadow);
}

.contact-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 24px;
  color: #111;
  font-weight: 900;
}

.contact-benefits article + article {
  border-left: 1px solid #f3b6cf;
}

.contact-benefits svg {
  width: 34px;
  height: 34px;
  color: var(--pink);
}

.contact-strip {
  padding: 0 0 54px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 28px;
  border-radius: 22px;
  color: #1f1f1f;
  font-weight: 900;
  background: #f9d2e0c2;
  box-shadow: var(--shadow);
}

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

.contact-inner svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-inner span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.socials {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.socials strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--pink);
}

@media (max-width: 1100px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    display: none;
    width: min(330px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 6px;
  }

  .nav a.active::after {
    left: 6px;
    bottom: 5px;
    width: 36px;
    transform: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .home-hero-inner {
    min-height: 820px;
  }

  .home-copy {
    width: min(620px, 100%);
    padding-top: 52px;
  }

  .home-hero-art {
    top: auto;
    right: 50%;
    bottom: 0;
    width: min(820px, 100%);
    height: 420px;
    transform: translateX(50%);
  }

  .home-hero-art img {
    border-radius: 34px 34px 120px 120px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .availability-head,
  .availability-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .training-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-art {
    justify-self: center;
    width: min(820px, 100%);
    margin-right: 0;
  }

  .about-intro-card {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-founder-card {
    grid-template-columns: 280px 1fr;
    padding-right: 28px;
  }

  .about-success {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0 28px;
    border-left: 0;
    border-top: 1px solid #f3b6cf;
  }

  .about-success > strong {
    grid-column: 1 / -1;
  }

  .about-cta {
    grid-template-columns: 120px 1fr;
  }

  .about-cta-girls {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .competition-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .competition-hero-art {
    justify-self: center;
    width: min(840px, 100%);
    height: 430px;
    margin-right: 0;
  }

  .competition-top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .competition-intro-card {
    grid-column: 1 / -1;
  }

  .competition-representation {
    grid-template-columns: 1fr;
    padding: 0;
    overflow: hidden;
  }

  .competition-representation::before {
    display: none;
  }

  .competition-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    margin-right: 0;
  }

  .competition-floating-heart {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    padding: 6px;
  }

  .competition-benefit-grid,
  .competition-gallery {
    grid-template-columns: 1fr;
  }

  .competition-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .competition-cta {
    grid-template-columns: 120px 1fr;
  }

  .competition-cta-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .training-hero-art {
    justify-self: center;
    width: min(760px, 100%);
    height: 420px;
    margin-right: 0;
  }

  .training-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .training-stats article {
    border-bottom: 1px solid #f3b6cf;
  }

  .training-stats article:nth-child(3) {
    border-right: 0;
  }

  .training-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .training-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-cta {
    grid-template-columns: 120px 1fr;
    padding-right: 330px;
  }

  .training-cta-girls {
    right: 18px;
    width: 360px;
  }

  .availability-head p {
    max-width: 650px;
    text-align: left;
  }

  .contact-inner {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 60px;
  }

  .logo {
    width: 135px;
    max-height: 52px;
  }

  .join-button {
    display: none;
  }

  .home-hero {
    padding-top: 8px;
  }

  .home-hero-inner {
    min-height: auto;
    padding-bottom: 24px;
  }

  .home-copy {
    padding-top: 38px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .home-copy h1 {
    font-size: clamp(39px, 11.4vw, 48px);
    line-height: 0.98;
  }

  .home-lead {
    font-size: 18px;
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-primary,
  .home-secondary {
    width: 100%;
  }

  .home-hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    height: 325px;
    width: 100%;
    margin-top: 28px;
    transform: none;
  }

  .home-hero-art img {
    border-radius: 28px 28px 96px 96px;
    object-position: 12% center;
  }

  .availability {
    padding-top: 8px;
  }

  .training-section {
    padding: 42px 0 42px;
  }

  .about-section {
    padding: 36px 0 42px;
  }

  .about-copy h1 {
    font-size: clamp(58px, 17vw, 72px);
  }

  .about-kicker {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    font-size: 18px;
  }

  .about-kicker svg {
    width: 38px;
    height: 38px;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-hero-art {
    margin-top: 8px;
    overflow: hidden;
    border-radius: 28px 28px 80px 80px;
  }

  .about-hero-art img {
    width: 130%;
    max-width: none;
    transform: translateX(-17%);
  }

  .about-intro-card {
    padding: 22px 20px;
  }

  .about-icon-row,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-icon-row {
    gap: 14px;
  }

  .about-card {
    min-height: auto;
  }

  .about-founder-card {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }

  .about-founder-photo {
    width: calc(100% + 40px);
    height: 320px;
    min-height: 0;
    margin-left: -20px;
  }

  .about-founder-copy h2 {
    font-size: 22px;
  }

  .founder-name {
    font-size: 38px;
  }

  .about-success {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .about-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px 0;
    text-align: center;
  }

  .about-cta-silhouette {
    display: none;
  }

  .about-cta a {
    width: 100%;
  }

  .about-cta-girls {
    justify-self: center;
    width: min(330px, 100%);
  }

  .competition-section {
    padding: 36px 0 42px;
  }

  .competition-copy h1 {
    font-size: clamp(36px, 10.7vw, 43px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .competition-kicker {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .competition-lead {
    font-size: 16px;
  }

  .competition-heart {
    width: 40px;
    height: 40px;
  }

  .competition-hero-art {
    height: 310px;
    border-radius: 28px 28px 90px 90px;
  }

  .competition-hero-art::before {
    width: 82px;
  }

  .competition-hero-art img {
    transform: scale(1.12);
  }

  .competition-top-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .competition-intro-card {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .competition-intro-card h2 {
    font-size: 23px;
  }

  .competition-mini-card {
    min-height: auto;
  }

  .competition-representation {
    padding: 0;
  }

  .competition-representation-copy {
    padding: 24px 20px 20px;
  }

  .competition-representation h2 {
    font-size: 29px;
  }

  .competition-badges {
    grid-template-columns: 1fr;
    width: auto;
    margin-right: 0;
  }

  .competition-representation img {
    min-height: 230px;
    border-radius: 0 0 16px 16px;
  }

  .competition-benefits > h2 {
    font-size: 26px;
  }

  .competition-benefit-grid {
    grid-template-columns: 1fr;
  }

  .competition-benefit-grid article {
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .competition-benefit-grid span {
    width: 64px;
    height: 64px;
  }

  .competition-benefit-grid svg {
    width: 36px;
    height: 36px;
  }

  .competition-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .competition-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }

  .competition-cta-silhouette {
    display: none;
  }

  .competition-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .competition-cta-actions a {
    width: 100%;
  }

  .training-copy h1 {
    font-size: clamp(34px, 10.6vw, 46px);
  }

  .training-copy h1 .training-title-main {
    white-space: normal;
  }

  .training-lead {
    font-size: 15px;
  }

  .training-points {
    gap: 14px;
  }

  .training-points article {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .training-points span {
    width: 52px;
    height: 52px;
  }

  .training-points svg {
    width: 28px;
    height: 28px;
  }

  .training-points h2 {
    font-size: 16px;
  }

  .training-points p {
    font-size: 14px;
  }

  .training-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .training-hero-art {
    height: 310px;
  }

  .training-hero-art::before {
    width: 90px;
  }

  .training-stats article,
  .training-stats article:nth-child(3),
  .training-stats article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #f3b6cf;
  }

  .training-stats article:last-child {
    border-bottom: 0;
  }

  .training-heading {
    padding-top: 30px;
  }

  .training-heading h2 {
    font-size: 34px;
  }

  .training-heading p {
    font-size: 15px;
  }

  .training-groups {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .training-card-body {
    min-height: auto;
  }

  .training-card h2 {
    min-height: auto;
  }

  .training-card-spacer {
    display: none;
  }

  .training-mini-list {
    margin-top: 22px;
  }

  .training-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px 0;
    text-align: center;
  }

  .training-cta-silhouette {
    display: none;
  }

  .training-cta a {
    width: 100%;
  }

  .training-cta-girls {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: auto;
    justify-self: center;
    width: min(360px, 108%);
    max-width: 108%;
    margin: 6px auto -16px;
  }

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

  .schedule-title {
    display: none;
  }

  .time-cell,
  .spots-list,
  .days-cell {
    min-height: auto;
  }

  .time-cell {
    padding: 18px 18px 10px;
    border-bottom: 0;
  }

  .spots-list {
    padding: 4px 24px 18px 34px;
  }

  .days-cell {
    grid-row: auto;
    gap: 8px;
    padding: 18px;
    font-size: 21px;
    border-bottom: 1px solid #ffc6da;
  }

  .why-card {
    padding: 28px 22px;
  }

  .contact-inner {
    padding: 18px;
    font-size: 14px;
  }

  .dots {
    opacity: 0.24;
  }

  .bg-blob {
    opacity: 0.38;
  }
}

@media (max-width: 1100px) {
  .team-hero,
  .gallery-hero,
  .contact-page-hero,
  .tax-hero,
  .tax-layout {
    grid-template-columns: 1fr;
  }

  .team-hero-art {
    min-height: 280px;
  }

  .team-hero-art::before {
    right: 50%;
    width: min(760px, 118%);
    transform: translateX(50%);
  }

  .team-hero-art img {
    right: 50%;
    bottom: 28px;
    width: min(430px, 88%);
    transform: translateX(50%);
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-values-title {
    grid-column: 1 / -1;
  }

  .team-values article {
    border-top: 1px solid #f3b6cf;
  }

  .team-values article:first-of-type {
    border-left: 0;
  }

  .team-cta {
    grid-template-columns: 120px 1fr;
  }

  .team-cta a {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .gallery-feature-row {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-tile,
  .gallery-tile-wide {
    grid-column: span 3;
  }

  .gallery-tile-large {
    grid-column: span 6;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .tax-step-grid {
    grid-template-columns: 1fr;
  }

  .tax-note {
    grid-template-columns: 1fr;
  }

  .tax-note a {
    justify-self: start;
  }

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .contact-benefits article + article {
    border-left: 0;
    border-top: 1px solid #f3b6cf;
  }
}

@media (max-width: 700px) {
  .team-section,
  .gallery-page-section,
  .contact-page-section,
  .tax-section {
    padding: 36px 0 38px;
  }

  .team-copy h1,
  .gallery-hero h1,
  .contact-page-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
    overflow-wrap: anywhere;
  }

  .contact-page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .team-script {
    align-items: flex-start;
    font-size: 28px;
  }

  .team-lead,
  .gallery-lead,
  .contact-page-lead {
    font-size: 15px;
  }

  .team-hero-art {
    min-height: 252px;
    margin-top: 10px;
  }

  .team-hero-art::before {
    right: -120px;
    bottom: 0;
    width: 520px;
    height: 170px;
    transform: none;
  }

  .team-hero-art img {
    right: 8px;
    bottom: 8px;
    width: 286px;
    transform: none;
  }

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

  .team-card {
    padding: 14px 14px 22px;
  }

  .team-photo,
  .team-card-featured .team-photo {
    height: 330px;
  }

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

  .team-values-title {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
    text-align: center;
  }

  .team-values-title svg {
    justify-self: center;
  }

  .team-values article,
  .team-values article:first-of-type {
    border-left: 0;
    border-top: 1px solid #f3b6cf;
  }

  .team-cta,
  .gallery-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }

  .team-cta > img {
    display: none;
  }

  .team-cta a,
  .gallery-cta a {
    width: 100%;
  }

  .gallery-hero img,
  .contact-page-hero img {
    min-height: 270px;
    border-radius: 24px 24px 82px 24px;
  }

  .gallery-feature-row article {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .gallery-feature-row svg {
    width: 50px;
    height: 50px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 13px;
  }

  .gallery-tile,
  .gallery-tile-large,
  .gallery-tile-wide,
  .gallery-tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-lightbox {
    padding: 88px 16px 100px;
  }

  .gallery-lightbox-frame img {
    width: 100%;
    max-height: calc(100vh - 230px);
    border-radius: 14px;
  }

  .gallery-lightbox-frame figcaption {
    max-width: 100%;
    font-size: 12px;
    text-align: center;
  }

  .gallery-lightbox-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 28px;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: translateY(-2px);
  }

  .gallery-lightbox-prev {
    left: calc(50% - 64px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 64px);
  }

  .contact-page-grid {
    gap: 18px;
  }

  .contact-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-hero-actions a {
    width: 100%;
  }

  .contact-map-card,
  .contact-note-panel {
    padding: 22px;
  }

  .contact-map-card iframe {
    min-height: 260px;
  }

  .contact-map-card::after {
    top: 296px;
    right: 36px;
  }

  .contact-map-link {
    width: 100%;
  }

  .contact-info-panel article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .contact-info-panel span {
    width: 50px;
    height: 50px;
  }

  .contact-info-panel svg {
    width: 27px;
    height: 27px;
  }

  .contact-form-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-form-panel label:has(textarea),
  .contact-form-panel button {
    grid-column: auto;
  }

  .contact-benefits article {
    grid-template-columns: 36px 1fr;
    padding: 20px;
    font-size: 14px;
  }

  .tax-hero h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .tax-lead {
    font-size: 15px;
  }

  .tax-hero-card,
  .tax-data-card,
  .tax-download-card,
  .tax-step-grid article,
  .tax-note {
    padding: 22px;
  }

  .tax-data-card dl {
    grid-template-columns: 1fr;
  }

  .tax-downloads a,
  .tax-note a {
    width: 100%;
  }
}
