@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --background: #111312;
  --surface: #1a1d1b;
  --text: #f5f2ea;
  --muted: #adb3ad;
  --red: #ff5a3c;
  --rule: #3b413b;
  --display: Barlow, Impact, "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 24px;
  color-scheme: dark;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font: 1rem/1.65 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 5px;
}
::selection {
  background: var(--red);
  color: var(--background);
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}
.wrap {
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 85px;
}
.not-found h1 {
  margin-block: 40px 20px;
  font-size: clamp(3rem, 8vw, 6rem);
}
.not-found p {
  margin-bottom: 24px;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--red);
  color: var(--background);
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: block;
  width: 168px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 0.9375rem;
}
.site-header nav a {
  padding-block: 14px;
}
.site-header nav a:hover {
  color: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 55px;
  padding: 16px 23px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #151714;
  font: 700 0.875rem/1.35 var(--body);
  text-align: center;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.button > span {
  font-size: 1.5rem;
  line-height: 1;
}
.button:hover {
  background: #ff795f;
  border-color: #ff795f;
}
.button-outline {
  background: transparent;
  border-color: #91998f;
  color: var(--text);
}
.button-outline:hover {
  background: #ffffff12;
  border-color: var(--text);
}
.hero {
  padding-top: 25px;
}
.poster {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  background: #151916;
  overflow: hidden;
}
.responsive-photo {
  display: contents;
}
.poster-photo {
  position: absolute;
  z-index: -2;
  width: 84%;
  height: 100%;
  right: 0;
  top: 0;
  object-fit: cover;
  object-position: 50% 67%;
}
.poster::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #141815 0%,
    #141815ef 21%,
    #14181570 47%,
    #14181500 78%
  );
  pointer-events: none;
}
.poster-content {
  padding: 46px 42px 55px;
  max-width: 720px;
}
.hero-language {
  font-size: 0.875rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}
.poster h1 {
  font-size: clamp(5rem, 9vw, 9.4rem);
  line-height: 0.87;
  margin-top: 38px;
  letter-spacing: -0.025em;
}
.poster h1 span {
  color: var(--red);
}
.hero-description {
  font-size: 1.0625rem;
  margin-top: 35px;
  max-width: 400px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-actions .button {
  font-size: 0.8125rem;
  padding-inline: 21px;
  gap: 17px;
}
.hero-actions .button-outline {
  background: #111312a0;
  border-color: #d1d5cd;
}
.hero-video {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  background: #111312dd;
  padding: 10px 18px 10px 11px;
  border: 1px solid #ffffff85;
  font-size: 0.9375rem;
  font-weight: 700;
}
.play-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding-left: 3px;
  border-radius: 50%;
  background: var(--text);
  color: var(--background);
  font: 1rem/1 var(--body);
  flex-shrink: 0;
}
.hero-video .play-icon {
  width: 34px;
  height: 34px;
  font-size: 0.75rem;
}
.hero-video:hover {
  background: #111312;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}
.section-heading > p {
  color: var(--muted);
}
.program-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(
      255px,
      0.9fr
    );
  gap: 44px;
  align-items: center;
  padding: 31px 0;
  border-bottom: 1px solid var(--rule);
}
.program-row:first-of-type {
  border-top: 2px solid var(--text);
}
.program-description h3 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  max-width: 390px;
}
.program-description p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 380px;
}
.program-time strong {
  display: block;
  font-size: 1rem;
}
.program-time span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}
.program-time small {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 160px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.price strong {
  font: 800 2.7rem/0.95 var(--display);
  white-space: nowrap;
}
.price strong > span {
  font: 400 0.875rem/1 var(--body);
  letter-spacing: 0;
}
.price > span {
  font-size: 0.8125rem;
  color: var(--muted);
}
.program-book .button {
  width: 100%;
  font-size: 0.8125rem;
  padding: 15px 14px;
  gap: 12px;
  justify-content: space-between;
}
.sessions-note {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 770px;
  margin-top: 24px;
}
.sessions .section-heading {
  margin-bottom: 18px;
}
.training {
  background: var(--surface);
}
.training-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 17px;
}
.training-film {
  position: relative;
  min-width: 0;
  display: block;
  height: 400px;
  overflow: hidden;
  background: #0a0c0a;
}
.training-film > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.training-film.film-wide > img {
  object-position: 48% 50%;
}
.training-film:nth-child(2) > img {
  object-position: 50% 52%;
}
.training-film:nth-child(3) > img {
  object-position: 50% 59%;
}
.training-film::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #000d);
  pointer-events: none;
}
.training-film > .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 61px;
  height: 61px;
  background: #f5f2eae8;
  z-index: 1;
}
.training-film:hover > img {
  transform: scale(1.025);
}
.film-caption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.film-caption strong {
  font-size: 1rem;
  line-height: 1.3;
}
.film-caption strong small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 400;
}
.film-caption > span {
  font-size: 0.8125rem;
  white-space: nowrap;
}
.coach-stats {
  display: grid;
  grid-template-columns: 0.7fr 0.85fr 1fr 1.2fr;
  gap: 28px;
  padding: 27px 0 32px;
  margin-bottom: 45px;
  border-block: 1px solid var(--rule);
}
.coach-stats > div {
  display: flex;
  flex-direction: column;
}
.coach-stats dt {
  order: 2;
}
.coach-stats dd {
  color: var(--red);
  font: 800 clamp(4rem, 6vw, 6rem)/0.9 var(--display);
}
.coach-stats dt {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 14px;
}
.coach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 7%;
  align-items: start;
}
.coach-portrait {
  height: 630px;
  overflow: hidden;
  background: var(--surface);
}
.coach-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.coach-content h3 {
  font-size: 3.5rem;
}
.coach-origin {
  color: var(--red);
  margin-top: 10px;
}
.coach-content > p:not(.coach-origin) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
}
.coach-content > .button {
  margin-top: 23px;
}
.coach-proof {
  margin-top: 30px;
}
.coach-proof img {
  width: 100%;
  height: 263px;
  object-fit: cover;
  object-position: 50% 36%;
}
.coach-proof figcaption {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 9px;
}
.first-session {
  background: var(--surface);
}
.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}
.location > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 60%;
  margin-bottom: 25px;
}
.location h3 {
  font-size: 2.7rem;
  margin-bottom: 11px;
}
.location > .button {
  margin-top: 22px;
}
.location-note {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 15px;
}
.faq {
  border-top: 2px solid var(--text);
}
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 1.0625rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--red);
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details > p {
  color: var(--muted);
  padding: 0 28px 24px 0;
}
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 5%;
}
.contact h2 {
  font-size: clamp(3rem, 4.5vw, 4.4rem);
}
.contact p {
  color: var(--muted);
  margin-top: 18px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--rule);
  padding-block: 32px;
}
.site-footer > p,
.site-footer > a:not(.brand) {
  font-size: 0.875rem;
  color: var(--muted);
}
.video-dialog {
  width: min(900px, 94vw);
  max-height: 94svh;
  padding: 24px;
  background: var(--background);
  color: var(--text);
  border: 1px solid var(--rule);
}
.video-dialog::backdrop {
  background: #000e;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.dialog-top h2 {
  font-size: 2rem;
}
.close-dialog {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface);
  color: var(--text);
  border: 1px solid #90968f;
  font-size: 1.3rem;
}
.video-dialog video {
  width: 100%;
  max-height: 70svh;
  background: #000;
}
.video-dialog > p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 13px;
}

.hero-languages {
  color: #d1d5ce;
  font-size: 0.875rem;
  margin-top: 12px;
}
.community {
  border-bottom: 1px solid var(--rule);
}
.community-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6%;
  align-items: center;
}
.community-photo {
  height: 510px;
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.community-content h2 {
  font-size: clamp(3rem, 4.7vw, 4.8rem);
}
.community-size {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 25px 0 18px;
}
.community-size strong {
  font: 800 5.5rem/0.9 var(--display);
  color: var(--red);
}
.community-size span {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.community-content > p:not(.community-size) {
  color: var(--muted);
  max-width: 470px;
}
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.community-actions .button {
  font-size: 0.8125rem;
  padding-inline: 18px;
  gap: 18px;
}
.community-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 48px auto 0;
  align-items: start;
}
.community-proof a {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}
.community-proof img {
  display: block;
  width: 100%;
  height: auto;
}
.community-proof-chat img {
  aspect-ratio: 1.2;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 700px) {
  .community-proof-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 34px;
  }
  .community-proof-members {
    max-width: 280px;
    justify-self: center;
  }
  .community-proof-chat img {
    aspect-ratio: 0.9;
  }
}
.coach-proof figcaption strong {
  display: block;
  color: var(--red);
  font-size: 1.125rem;
  margin-bottom: 5px;
}
@media (max-width: 1100px) {
  .community-grid {
    gap: 35px;
    grid-template-columns: 1.05fr 1fr;
  }
  .community-photo {
    height: 540px;
  }
  .community-size {
    gap: 16px;
  }
  .community-size strong {
    font-size: 5rem;
  }
  .community-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .hero-languages {
    font-size: 0.8125rem;
  }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .community-photo {
    height: 290px;
  }
  .community-content h2 {
    font-size: 3.4rem;
  }
  .community-size {
    margin-top: 22px;
  }
  .community-actions {
    margin-top: 24px;
  }
  .community-actions .button {
    font-size: 0.875rem;
  }
}

.training-gallery-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 17px;
}
.training-gallery-extra .training-film {
  height: 350px;
}
.trailer-film > img {
  object-position: 50% 44%;
}
.sparring-film > img {
  object-position: 50% 45%;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--muted);
}
.site-footer nav a {
  padding-block: 10px;
}
.site-footer nav a:hover {
  color: var(--text);
}
@media (max-width: 700px) {
  .training-gallery-extra {
    gap: 13px;
    margin-top: 13px;
  }
  .training-gallery-extra .training-film {
    height: 300px;
  }
  .site-footer nav {
    gap: 6px 20px;
  }
}

@media (min-width: 1600px) {
  .poster {
    min-height: 700px;
  }
  .poster-content {
    padding-top: 57px;
  }
  .poster h1 {
    font-size: 10rem;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    gap: 26px;
  }
  .site-header nav {
    gap: 24px;
  }
  .poster {
    min-height: 600px;
  }
  .poster-content {
    padding: 40px 30px;
  }
  .poster h1 {
    font-size: 10.3vw;
  }
  .poster-photo {
    width: 94%;
  }
  .program-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(155px, 0.7fr) minmax(
        235px,
        1fr
      );
    gap: 26px;
  }
  .program-description h3 {
    font-size: 2.2rem;
  }
  .training-film {
    height: 340px;
  }
  .training-gallery {
    gap: 13px;
  }
  .film-caption {
    left: 14px;
    right: 14px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .film-caption > span {
    flex-basis: 100%;
  }
  .coach-grid {
    gap: 5%;
  }
  .coach-portrait {
    height: 600px;
  }
  .coach-proof img {
    height: 220px;
  }
}
@media (max-width: 850px) {
  .site-header nav {
    gap: 20px;
  }
  .site-header nav a:nth-child(2) {
    display: none;
  }
  .poster {
    min-height: 570px;
  }
  .poster-content {
    padding: 35px 27px;
    max-width: 100%;
  }
  .poster h1 {
    font-size: 11.5vw;
  }
  .poster-photo {
    width: 100%;
    object-position: 70% 65%;
  }
  .poster::after {
    background: linear-gradient(
      90deg,
      #111713f5,
      #111713b0 40%,
      #11171318 100%
    );
  }
  .hero-actions {
    max-width: 310px;
  }
  .hero-video {
    right: 20px;
    bottom: 20px;
  }
  .program-row {
    grid-template-columns: 1fr 245px;
    gap: 12px 35px;
    align-items: start;
  }
  .program-description {
    grid-column: 1;
    grid-row: 1;
  }
  .program-time {
    grid-column: 1;
    grid-row: 2;
  }
  .program-time small {
    max-width: none;
  }
  .program-book {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .program-description h3 {
    font-size: 2.2rem;
  }
  .program-description p {
    margin-top: 10px;
  }
  .training-film {
    height: 330px;
  }
  .training-gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .coach-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .coach-stats dd {
    font-size: 4.7rem;
  }
  .coach-grid {
    gap: 30px;
    grid-template-columns: 0.85fr 1fr;
  }
  .coach-content h3 {
    font-size: 2.8rem;
  }
  .coach-portrait {
    height: 590px;
  }
  .coach-proof img {
    height: 180px;
  }
  .practical-grid {
    gap: 30px;
  }
  .location > img {
    height: 230px;
  }
  .faq summary {
    font-size: 1rem;
    padding-block: 21px;
  }
  .contact {
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 98px;
    gap: 18px;
  }
  .site-header nav {
    display: none;
  }
  .site-header .header-cta {
    margin-left: auto;
    min-height: 48px;
    padding: 13px 16px;
    font-size: 0.8125rem;
    gap: 15px;
  }
  .brand {
    width: 132px;
  }
  .hero {
    padding-top: 18px;
  }
  .poster {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .poster-photo {
    position: relative;
    order: 2;
    z-index: 0;
    width: 100%;
    height: 320px;
    object-position: 50% 65%;
  }
  .poster::after {
    display: none;
  }
  .poster-content {
    padding: 27px 21px 30px;
  }
  .hero-language {
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
  }
  .poster h1 {
    font-size: 16.4vw;
    line-height: 0.91;
    margin-top: 23px;
  }
  .hero-description {
    font-size: 1rem;
    margin-top: 24px;
  }
  .hero-actions {
    max-width: none;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .button {
    min-height: 54px;
    font-size: 0.875rem;
  }
  .hero-video {
    z-index: 1;
    left: 15px;
    right: auto;
    bottom: 15px;
    font-size: 0.875rem;
    min-height: 50px;
  }
  .section-space {
    padding-block: 53px;
  }
  .section-heading {
    margin-bottom: 26px;
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 3.4rem;
  }
  .section-heading > p {
    display: none;
  }
  .program-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 27px;
  }
  .program-description {
    grid-column: 1;
    grid-row: auto;
  }
  .program-description h3 {
    font-size: 2.3rem;
    max-width: 100%;
  }
  .program-description p {
    margin-top: 12px;
  }
  .program-time {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 13px;
  }
  .program-time span {
    margin: 0;
  }
  .program-time small {
    flex-basis: 100%;
    margin-top: 3px;
  }
  .program-book {
    grid-column: 1;
    grid-row: auto;
    display: block;
  }
  .price {
    margin-bottom: 15px;
    gap: 12px;
  }
  .price strong {
    font-size: 2.7rem;
  }
  .program-book .button {
    font-size: 0.875rem;
    padding-inline: 18px;
    min-height: 55px;
  }
  .sessions-note {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .training-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .film-wide {
    grid-column: 1/-1;
  }
  .training-film {
    height: 300px;
  }
  .training-film.film-wide {
    height: 255px;
  }
  .training-film > .play-icon {
    width: 50px;
    height: 50px;
  }
  .film-caption {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }
  .film-caption strong {
    font-size: 0.875rem;
  }
  .film-caption > span {
    font-size: 0.75rem;
  }
  .coach-stats {
    grid-template-columns: 1fr 1fr;
    gap: 29px 22px;
    padding-block: 27px;
    margin-bottom: 30px;
  }
  .coach-stats dd {
    font-size: 4.7rem;
  }
  .coach-stats dt {
    font-size: 0.9375rem;
    margin-top: 10px;
  }
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .coach-portrait {
    height: auto;
    aspect-ratio: 4/5;
    max-height: 650px;
  }
  .coach-content h3 {
    font-size: 3rem;
  }
  .coach-content > p:not(.coach-origin) {
    margin-top: 17px;
  }
  .coach-content > .button {
    width: 100%;
    margin-top: 24px;
  }
  .coach-proof {
    margin-top: 28px;
  }
  .coach-proof img {
    height: 250px;
  }
  .practical-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .location > img {
    height: 240px;
    margin-bottom: 23px;
  }
  .location h3 {
    font-size: 2.5rem;
  }
  .location > .button {
    width: 100%;
  }
  .faq summary {
    min-height: 73px;
    font-size: 1rem;
  }
  .first-session .section-heading h2 {
    max-width: 330px;
    font-size: 3.4rem;
  }
  .contact {
    display: block;
  }
  .contact-photo {
    margin-top: 32px;
  }
  .contact h2 {
    font-size: 3.4rem;
  }
  .contact-actions {
    width: 100%;
    max-width: none;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .contact p {
    margin-top: 16px;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 136px 1fr;
    gap: 25px 20px;
    padding-block: 28px;
  }
  .site-footer > p {
    font-size: 0.8125rem;
  }
  .site-footer > a:not(.brand) {
    grid-column: 2;
  }
  .video-dialog {
    padding: 15px;
  }
  .dialog-top h2 {
    font-size: 1.6rem;
  }
  .video-dialog video {
    max-height: 69svh;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
  }
  .site-header .brand {
    width: 124px;
  }
  .site-header .header-cta {
    padding-inline: 12px;
  }
  .site-header .header-cta > span {
    display: none;
  }
}
