﻿:root {
  --green: #123d30;
  --green-2: #0b2b21;
  --orange: #d95b1b;
  --gold: #d6b46b;
  --ivory: #f5efe4;
  --paper: #fffaf1;
  --ink: #191713;
  --muted: #665f55;
  --line: #ded3c3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #a8a8a8;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  word-break: keep-all;
}
button, input { font: inherit; }
button { cursor: pointer; border-radius: 0; }
img { display: block; max-width: 100%; }

body > main {
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(214,180,107,.14), transparent 30%),
    linear-gradient(180deg, #f6efe3 0%, #fff8ed 42%, #f5efe4 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 22px 70px rgba(0,0,0,.22);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(100%, 430px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 12, 10, .72), rgba(9, 12, 10, 0));
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.header-cta {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: rgba(18, 61, 48, .86);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.hero-slides,
.hero-slides img,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 850ms ease, transform 1400ms ease;
}
.hero-slides img.active {
  opacity: 1;
  transform: scale(1);
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.84) 75%, rgba(0,0,0,.92)),
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.12));
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 0 22px 76px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.eyebrow.dark { color: var(--orange); }
.hero h1,
.section-title h2,
.intro-copy h2,
.steady-copy h2,
.final-copy h2,
.form-step h2 {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
}
.hero h1 {
  font-size: clamp(36px, 9.8vw, 64px);
  line-height: 1.14;
}
.hero-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.65;
}
.hero-copy strong {
  display: block;
  margin: 12px 0 24px;
  color: #fff;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 30px;
  font-weight: 900;
}
.primary-cta,
.floating-cta {
  min-height: 56px;
  padding: 0 24px;
  color: #fff;
  background: var(--orange);
  border: 0;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(217, 91, 27, .26);
  transition: transform .2s ease, background .2s ease;
}
.primary-cta:hover,
.floating-cta:hover {
  background: #e66a28;
  transform: translateY(-2px);
}

.section {
  padding: 84px 20px;
}
.section-title {
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
}
.section-title h2,
.intro-copy h2 {
  font-size: clamp(30px, 6.8vw, 46px);
  line-height: 1.25;
}
.section-title p:not(.eyebrow),
.intro-copy p,
.triangle-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.live-review-section {
  padding-top: 92px;
}
.review-stream {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
}
.review-stream article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 250, 241, .74);
  border: 1px solid rgba(222, 211, 195, .76);
  box-shadow: 0 16px 34px rgba(31, 24, 16, .06);
  backdrop-filter: blur(8px);
}
.review-stream article:nth-child(even) {
  margin-left: 22px;
}
.review-stream img {
  width: 96px;
  height: 112px;
  object-fit: cover;
}
.review-stream span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.review-stream p {
  margin: 6px 0 6px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.48;
}
.review-stream small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-live-shell {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 12px 0 4px;
}
.review-live-shell .review-stream {
  width: 100%;
  gap: 18px;
}
.review-live-shell .review-stream article:nth-child(even) {
  margin-left: 0;
}
.review-bubble-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .78fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  animation: reviewFloat 8s ease-in-out infinite;
}
.review-bubble-card:nth-child(2) { animation-delay: .8s; }
.review-bubble-card:nth-child(3) { animation-delay: 1.6s; }
.review-bubble-card:nth-child(4) { animation-delay: 2.4s; }
.review-bubble-card:nth-child(5) { animation-delay: 3.2s; }
.review-bubble-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(210px, .78fr);
}
.review-bubble-card.reverse img {
  grid-column: 2;
}
.review-bubble-card.reverse .review-bubble {
  grid-column: 1;
  grid-row: 1;
  margin-left: 0;
  margin-right: -36px;
}
.review-bubble-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid rgba(214, 180, 107, .36);
  box-shadow: 0 20px 42px rgba(31, 24, 16, .12);
}
.review-bubble {
  position: relative;
  z-index: 1;
  margin-left: -36px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(222, 211, 195, .86);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31, 24, 16, .12);
}
.review-bubble::before,
.review-bubble::after {
  position: absolute;
  color: rgba(18, 61, 48, .12);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.review-bubble::before {
  content: "“";
  top: 10px;
  left: 16px;
}
.review-bubble::after {
  content: "”";
  right: 18px;
  bottom: 4px;
}
.review-bubble span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.review-bubble p {
  position: relative;
  z-index: 1;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}
.review-bubble small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@keyframes reviewFloat {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-8px); }
}

/* Unified live review feed */
.live-review-section {
  overflow: hidden;
}
.review-live-shell {
  width: min(720px, 100%);
  height: 1080px;
  overflow: hidden;
  padding: 0 0 18px;
  mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 88%, transparent 100%);
}
.review-live-shell .review-stream {
  display: grid;
  gap: 22px;
  width: 100%;
  animation: reviewFeedUp 34s linear infinite;
}
.review-live-shell:hover .review-stream {
  animation-play-state: paused;
}
.review-bubble-card,
.review-bubble-card.reverse {
  position: relative;
  display: block;
  height: 390px;
  padding: 0;
  overflow: hidden;
  background: #fffaf1;
  border: 1px solid rgba(222, 211, 195, .9);
  box-shadow: 0 18px 38px rgba(31, 24, 16, .08);
  animation: none;
}
.review-bubble-card:nth-child(n) {
  animation-delay: 0s;
}
.review-bubble-card.reverse img,
.review-bubble-card.reverse .review-bubble {
  grid-column: auto;
  grid-row: auto;
  margin-right: 0;
}
.review-bubble-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
  box-shadow: none;
}
.review-bubble {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 150px;
  margin: 0;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(222, 211, 195, .92);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31, 24, 16, .14);
}
.review-bubble::before {
  top: 18px;
  left: 20px;
}
.review-bubble span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 2px 0 12px 34px;
  letter-spacing: .06em;
}
.review-bubble p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.52;
}
.review-bubble small {
  font-size: 13px;
}

@keyframes reviewFeedUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 11px)); }
}

.intro-bg-section {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.intro-bg-section>img,
.intro-bg-shade {
  position: absolute;
  inset: 0;
}
.intro-bg-section>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-bg-shade {
  background:
    linear-gradient(180deg, rgba(8, 10, 8, .28), rgba(8, 10, 8, .72)),
    radial-gradient(circle at center, rgba(18,61,48,.18), rgba(0,0,0,.58));
}
.intro-bg-section .intro-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 0 22px;
}
.intro-bg-section .eyebrow {
  color: var(--gold);
}
.intro-bg-section .intro-copy p {
  color: rgba(255,255,255,.86);
}

.intro-gallery-section {
  min-height: 720px;
  display: block;
  padding: 0;
  background: #070706;
}
.intro-single-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.95) contrast(1.04);
}
.intro-gallery-section .intro-bg-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.34) 36%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.46) 100%);
}
.intro-gallery-copy {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 40px);
  padding: 0;
}
.intro-gallery-copy h2 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.55);
  font-size: 34px;
  line-height: 1.24;
  letter-spacing: 0;
}
.intro-proof-card {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 82px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 44px);
  padding: 26px 20px;
  background: rgba(255, 255, 255, .96);
  color: var(--green);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  transform: translateX(-50%);
  text-align: center;
}
.intro-proof-card p {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.coach-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.intro-copy {
  max-width: 640px;
  margin: 0 auto;
}

.coach { background: transparent; }
.coach-photo {
  width: min(960px, 100%);
  margin: 0 auto;
}
.coach-points {
  display: grid;
  gap: 10px;
  width: min(760px, 100%);
  margin: 24px auto 0;
}
.coach-points span {
  padding: 18px 18px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}
.coach-points span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
}

.triangle { background: transparent; }
.triangle-graphic {
  position: relative;
  width: min(520px, 100%);
  height: 430px;
  margin: 0 auto;
}
.triangle-graphic::before {
  content: "";
  position: absolute;
  inset: 80px 42px 82px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(214,180,107,.22), rgba(18,61,48,.06));
}
.tri-point,
.tri-center {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
}
.tri-point {
  width: 142px;
  height: 142px;
  padding: 16px;
  background: #fffaf1;
  border: 1px solid var(--line);
  box-shadow: 0 18px 32px rgba(24, 19, 13, .09);
}
.tri-point b {
  display: block;
  font-size: 19px;
}
.tri-point span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.tri-point.top { top: 0; left: 50%; transform: translateX(-50%); }
.tri-point.left { left: 0; bottom: 0; }
.tri-point.right { right: 0; bottom: 0; }
.tri-center {
  left: 50%;
  top: 52%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 28px;
  font-weight: 900;
}
.triangle-copy {
  width: min(620px, 100%);
  margin: 24px auto 0;
  text-align: center;
}

.levels { background: transparent; }
.level-line {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.level-line article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 0 0 28px;
}
.level-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 58px;
  bottom: 4px;
  width: 2px;
  background: var(--line);
}
.level-line b {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
}
.level-line strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}
.level-line span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

/* Renewal refinements */
.coach-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 180, 107, .34);
  box-shadow: 0 34px 70px rgba(28, 22, 15, .12);
}
.coach-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(7, 12, 9, .72));
}
.coach-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}
.coach-photo figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.coach-photo figcaption strong {
  display: block;
  font-size: clamp(20px, 4.8vw, 34px);
  line-height: 1.35;
}
.coach-points {
  gap: 12px;
  width: min(960px, 100%);
  margin-top: 18px;
}
.coach-points article {
  padding: 22px 20px;
  background: rgba(255, 250, 241, .78);
  border: 1px solid rgba(214, 180, 107, .42);
  box-shadow: 0 16px 34px rgba(31, 24, 16, .06);
}
.coach-points article b {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .08em;
}
.coach-points article strong {
  display: block;
  color: var(--green-2);
  font-size: 18px;
  font-weight: 900;
}
.coach-points article span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.triangle-graphic {
  width: min(620px, 100%);
  height: 440px;
}
.triangle-graphic::before {
  inset: 70px 38px 80px;
  border: 0;
  background: linear-gradient(180deg, rgba(214,180,107,.20), rgba(18,61,48,.08));
  filter: drop-shadow(0 24px 40px rgba(26, 20, 12, .08));
}
.triangle-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(214, 180, 107, .5);
  border-radius: 50%;
}
.tri-point {
  z-index: 1;
  width: 154px;
  height: 154px;
  padding: 18px;
  background: rgba(255, 250, 241, .94);
  border: 1px solid rgba(214, 180, 107, .46);
  box-shadow: 0 22px 42px rgba(24, 19, 13, .1);
}
.tri-center {
  z-index: 2;
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  font-size: 30px;
  box-shadow: 0 20px 36px rgba(18, 61, 48, .28);
}
.level-line {
  width: min(700px, 100%);
  gap: 12px;
}
.level-line article {
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 14px 18px;
  background: rgba(255, 250, 241, .88);
  border: 1px solid rgba(25, 23, 19, .14);
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(31, 24, 16, .05);
}
.level-line article:not(:last-child)::after {
  content: "⌄";
  left: 50%;
  top: auto;
  bottom: -15px;
  width: auto;
  transform: translateX(-50%);
  color: #b9ad9c;
  background: transparent;
  font-size: 17px;
  line-height: 1;
}
.level-line b {
  width: 74px;
  height: 42px;
  border-radius: 999px;
  font-size: 15px;
}
.level-line strong {
  margin: 0;
  font-size: 20px;
}
.level-line span {
  margin: 0;
  white-space: nowrap;
}

.coach-hero-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-content: end;
  padding: 0 20px 74px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}
.coach-hero-bg,
.coach-hero-shade {
  position: absolute;
  inset: 0;
}
.coach-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.92) contrast(1.03);
}
.coach-hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 36%, rgba(0,0,0,.76) 70%, rgba(0,0,0,.96) 100%),
    radial-gradient(circle at center 34%, rgba(0,0,0,0), rgba(0,0,0,.56));
}
.coach-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}
.coach-hero-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 8.2vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-shadow: 0 8px 28px rgba(0,0,0,.58);
}
.coach-hero-copy p {
  width: min(560px, 100%);
  margin: 18px auto 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 700;
}
.coach-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
  margin: 0 auto;
}
.coach-feature-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-weight: 900;
  line-height: 1.3;
}
.coach-feature-list i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: #42b935;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  box-shadow: 0 0 0 5px rgba(66,185,53,.14);
}
.coach-feature-list span {
  text-shadow: 0 3px 14px rgba(0,0,0,.62);
  white-space: nowrap;
}

.local-start-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-content: end;
  padding: 0 22px 54px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}
.local-map-bg,
.local-map-shade {
  position: absolute;
  inset: 0;
}
.local-map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.92) contrast(1.03);
}
.local-map-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.24) 38%, rgba(0,0,0,.72) 76%, rgba(0,0,0,.96) 100%),
    radial-gradient(circle at center 42%, rgba(0,0,0,.04), rgba(0,0,0,.46));
}
.local-start-copy {
  position: relative;
  z-index: 1;
  margin: 0 auto 138px;
  text-align: center;
}
.local-start-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-shadow: 0 8px 28px rgba(0,0,0,.58);
}
.local-start-copy p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 4px 18px rgba(0,0,0,.62);
}
.local-start-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0 auto;
  width: 100%;
}
.local-start-list article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}
.local-start-list i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #42b935;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  box-shadow: 0 0 0 5px rgba(66,185,53,.14);
}
.local-start-list span {
  white-space: nowrap;
  text-shadow: 0 3px 14px rgba(0,0,0,.62);
}

.steady,
.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.steady-bg,
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steady::after,
.final-shade {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78));
}
.steady-copy,
.final-copy {
  position: relative;
  z-index: 1;
  padding: 0 22px 72px;
}
.steady-copy h2,
.final-copy h2 {
  font-size: clamp(32px, 7.4vw, 52px);
  line-height: 1.2;
}
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.keyword-list span {
  padding: 9px 13px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 900;
}

.final-cta {
  min-height: 560px;
  padding: 0;
}
.final-copy .primary-cta {
  margin-top: 28px;
}

.apply-payment-note {
  width: min(100%, 360px);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.apply-payment-note b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.pricing-section {
  padding-top: 68px;
  padding-bottom: 72px;
  background: transparent;
}

.pricing-card {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 24px 22px;
  color: #111;
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(39, 32, 22, .08);
}

.pricing-label {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.pricing-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pricing-card dl {
  display: grid;
  margin: 0;
}

.pricing-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(25, 25, 25, .12);
}

.pricing-card dt {
  color: #777;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card dd {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.pricing-notes {
  width: min(100%, 360px);
  display: grid;
  gap: 9px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
}

.pricing-notes li {
  position: relative;
  padding-left: 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.faq { background: transparent; padding-bottom: 120px; }
.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 900;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.floating-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 25;
  width: calc(100% - 28px);
}

dialog {
  width: min(720px, calc(100vw - 20px));
  max-height: calc(100svh - 20px);
  padding: 0;
  border: 0;
  background: transparent;
}
dialog::backdrop {
  background: rgba(9, 8, 6, .72);
  backdrop-filter: blur(4px);
}
#applyForm {
  position: relative;
  min-height: min(760px, calc(100svh - 20px));
  padding: 30px 22px 22px;
  background: var(--paper);
  border-top: 5px solid var(--orange);
  overflow: auto;
}
#coachForm {
  position: relative;
  max-height: calc(100svh - 20px);
  padding: 30px 22px 22px;
  background: var(--paper);
  border-top: 5px solid var(--gold);
  overflow: auto;
}
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #685f53;
  font-size: 34px;
}
.coach-head {
  padding-right: 46px;
}
#coachForm h2 {
  margin: 10px 46px 12px 0;
  font-size: clamp(28px, 6.8vw, 38px);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.coach-intro {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.coach-questions {
  display: grid;
  gap: 12px;
}
.form-question {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffdf8;
}
.form-question span,
.form-question legend {
  color: var(--ink);
  font-weight: 900;
}
.form-question input,
.form-question textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}
.form-question textarea {
  resize: vertical;
  line-height: 1.65;
}

.coach-hero-copy p br.coach-copy-break {
  display: block;
}
.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.notice-question p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.6;
}
.single-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}
.coach-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.form-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-right: 46px;
}
.step-count {
  color: #786f63;
  font-weight: 900;
}
.step-bar {
  height: 3px;
  margin: 18px 0 34px;
  background: #e8dfd1;
}
.step-bar i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--orange);
  transition: width .25s ease;
}
.form-step { min-height: 440px; }
.form-step[hidden] { display: none; }
.form-step h2 {
  margin-bottom: 30px;
  font-size: clamp(28px, 6.8vw, 38px);
  line-height: 1.25;
}
.choice-grid,
.level-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.choice-grid label,
.level-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}
.level-grid { grid-template-columns: 1fr; }
.level-grid span {
  color: var(--muted);
  line-height: 1.4;
}
.level-grid b {
  display: block;
  color: var(--ink);
}
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}
.choice-grid label:has(input:checked),
.level-grid label:has(input:checked) {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.level-grid label:has(input:checked) span,
.level-grid label:has(input:checked) b {
  color: #fff;
}
.direct-field,
.text-field {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  color: #5e564c;
  font-size: 14px;
  font-weight: 900;
}
.direct-field input,
.text-field input {
  width: 100%;
  height: 58px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: #fff;
}
.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.form-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #b23a1c;
  font-size: 13px;
  font-weight: 900;
}
.form-actions {
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: -22px;
  margin: 24px -22px -22px;
  padding: 12px 22px calc(12px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.form-actions button,
.success-close {
  flex: 1;
  min-height: 52px;
  border: 0;
  font-weight: 900;
}
.prev-step { background: #e8dfd1; color: #554d43; }
.next-step,
.submit-step,
.success-close {
  background: var(--orange);
  color: #fff;
}
.success {
  display: none;
  padding: 80px 0;
  text-align: center;
}
.success strong {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 30px;
  letter-spacing: -.03em;
}
.success p {
  color: var(--muted);
  line-height: 1.8;
}
.submitted .form-head,
.submitted .step-bar,
.submitted .form-step,
.submitted .form-actions,
.submitted .form-error,
.submitted .coach-head,
.submitted .coach-intro,
.submitted .coach-questions,
.submitted .coach-submit,
.submitted#coachForm h2 {
  display: none;
}
.submitted .success { display: block; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .site-header { height: 74px; padding: 0 42px; }
  .hero-copy { padding-left: 70px; padding-bottom: 92px; }
  .section { padding: 120px 48px; }
  .review-stream { width: min(820px, 100%); }
  .intro-bg-section .intro-copy { padding: 0 48px; }
  .coach-points {
    grid-template-columns: repeat(3, 1fr);
  }
  .steady-copy,
  .final-copy {
    width: min(760px, 100%);
    padding-left: 70px;
  }
  .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #applyForm,
  #coachForm { padding: 42px 52px 34px; }
  .form-actions {
    margin-left: -52px;
    margin-right: -52px;
    margin-bottom: -34px;
    padding-left: 52px;
    padding-right: 52px;
  }
}

@media (max-width: 560px) {
  .coach-hero-copy p br {
    display: none;
  }

  .coach-hero-copy p br.coach-copy-break {
    display: block;
  }

  .coach-hero-section {
    min-height: 760px;
    padding: 0 22px 58px;
  }
  .coach-hero-bg {
    object-position: center top;
  }
  .coach-hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 34%, rgba(0,0,0,.76) 68%, rgba(0,0,0,.96) 100%),
      radial-gradient(circle at center 34%, rgba(0,0,0,0), rgba(0,0,0,.52));
  }
  .coach-hero-copy {
    margin-bottom: 34px;
  }
  .coach-hero-copy h2 {
    font-size: clamp(34px, 10.2vw, 48px);
  }
  .coach-hero-copy p {
    font-size: 14px;
  }
  .coach-feature-list {
    gap: 14px;
  }
  .coach-feature-list article {
    grid-template-columns: 26px 1fr;
    gap: 10px;
    font-size: 15px;
  }
  .intro-gallery-section {
    min-height: 680px;
  }
  .intro-single-image {
    object-position: center center;
  }
  .intro-gallery-copy {
    top: 48px;
    width: calc(100% - 34px);
  }
  .intro-gallery-copy h2 {
    font-size: 31px;
    line-height: 1.26;
  }
  .intro-proof-card {
    top: auto;
    bottom: 74px;
    width: calc(100% - 36px);
    padding: 24px 16px;
  }
  .intro-proof-card p {
    font-size: 18px;
    line-height: 1.35;
  }
  .review-live-shell {
    height: 960px;
    padding-top: 2px;
  }
  .review-live-shell .review-stream {
    gap: 20px;
  }
  .review-bubble-card,
  .review-bubble-card.reverse {
    height: 360px;
    display: block;
  }
  .review-bubble-card.reverse img,
  .review-bubble-card.reverse .review-bubble {
    grid-column: auto;
    grid-row: auto;
  }
  .review-bubble-card img {
    height: 100%;
    border-radius: 0;
  }
  .review-bubble,
  .review-bubble-card.reverse .review-bubble {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 138px;
    margin: 0;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .review-bubble p {
    font-size: 15px;
    line-height: 1.55;
  }
  .review-bubble small {
    font-size: 12px;
  }
  .triangle-graphic {
    height: 390px;
  }
  .triangle-graphic::before {
    inset: 62px 24px 76px;
  }
  .triangle-graphic::after {
    width: 170px;
    height: 170px;
  }
  .tri-point {
    width: 128px;
    height: 128px;
    padding: 14px;
  }
  .tri-point b {
    font-size: 17px;
  }
  .tri-point span {
    font-size: 12px;
  }
  .tri-center {
    width: 92px;
    height: 92px;
    font-size: 24px;
  }
  .level-line article {
    grid-template-columns: 74px 1fr;
    border-radius: 28px;
  }
  .level-line span {
    grid-column: 2;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides img,
  .reveal,
  .primary-cta,
  .floating-cta {
    transition: none;
  }
}

/* Smartphone-frame layout: keep the landing page mobile-sized even on desktop. */
body > main,
.site-header {
  width: min(100%, 430px);
}

.site-header {
  height: 62px;
  padding: 0 18px;
}

.floating-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 25;
  width: min(calc(100% - 28px), 402px);
  transform: translateX(-50%);
}

.floating-cta:hover {
  transform: translateX(-50%) translateY(-2px);
}

@media (min-width: 760px) {
  .hero-copy {
    padding: 0 22px 76px;
  }
  .section {
    padding: 84px 20px;
  }
  .intro-bg-section .intro-copy {
    padding: 0 22px;
  }
  .steady-copy,
  .final-copy {
    width: min(100%, 560px);
    padding-left: 22px;
    padding-right: 22px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  dialog {
    width: min(430px, calc(100vw - 20px));
  }
  #applyForm,
  #coachForm {
    padding: 30px 22px 22px;
  }
  .form-actions {
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: -22px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Review cards must stay square inside the smartphone-width layout. */
.review-bubble-card,
.review-bubble-card.reverse {
  position: relative;
  display: block !important;
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
}

.review-bubble-card img,
.review-bubble-card.reverse img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}

.review-bubble,
.review-bubble-card.reverse .review-bubble {
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.review-bubble::before {
  top: 20px;
  left: 20px;
}

.review-bubble span {
  margin: 4px 0 12px 36px;
}

.intro-gallery-copy {
  top: 48px;
  width: calc(100% - 34px);
}

.intro-gallery-copy h2 {
  font-size: 31px;
  line-height: 1.26;
}

.intro-proof-card {
  top: auto;
  bottom: 74px;
  width: calc(100% - 36px);
  padding: 24px 16px;
}

.intro-proof-card p {
  font-size: 18px;
}

.coach-hero-section {
  min-height: 760px;
  padding: 0 22px 58px;
}

.coach-hero-bg {
  object-position: center top;
}

.coach-hero-copy {
  margin-bottom: 28px;
}

.coach-hero-copy h2 {
  font-size: 39px;
  line-height: 1.18;
}

.coach-hero-copy p {
  font-size: 14px;
  line-height: 1.75;
}

.coach-feature-list {
  gap: 13px;
}

.coach-feature-list article {
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  line-height: 1.3;
}

.coach-feature-list span {
  white-space: nowrap;
}

.local-start-section {
  min-height: 680px;
  padding: 0 22px 54px;
}

.local-start-copy {
  margin-bottom: 138px;
}

.local-start-copy h2 {
  font-size: 40px;
  line-height: 1.18;
}

.local-start-copy p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.local-start-list {
  gap: 13px;
}

.local-start-list article {
  grid-template-columns: 26px 1fr;
  gap: 10px;
  font-size: 15px;
}

.local-start-list span {
  white-space: nowrap;
}

/* Emotion-first change section replacing the old triangle graphic. */
.change-section {
  background: transparent;
  padding-top: 92px;
}

.change-list {
  display: grid;
  gap: 28px;
}

.change-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0a0a08;
  box-shadow: 0 18px 42px rgba(31, 24, 16, .1);
}

.change-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.change-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.82) 100%),
    radial-gradient(circle at center 36%, rgba(18,61,48,0), rgba(0,0,0,.35));
}

.change-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 34px;
  z-index: 1;
  color: #fff;
}

.change-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.change-copy h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-shadow: 0 8px 24px rgba(0,0,0,.52);
}

.change-copy p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.62;
  text-shadow: 0 5px 18px rgba(0,0,0,.54);
}

.change-final {
  display: grid;
  gap: 22px;
  padding: 36px 6px 0;
  text-align: center;
}

.change-final p {
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.change-final .primary-cta {
  width: 100%;
  margin: 0;
}

/* LST-inspired member application form */
#applyDialog {
  width: min(400px, calc(100vw - 22px));
  max-height: calc(100svh - 26px);
}

#applyDialog::backdrop {
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(3px);
}

#applyForm {
  min-height: min(760px, calc(100svh - 26px));
  max-height: calc(100svh - 26px);
  padding: 22px 20px 0;
  color: #fff;
  background: #020202;
  border-top: 0;
  border-radius: 14px 14px 0 0;
  overflow: auto;
}

#applyForm .dialog-close {
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 32px;
}

#applyForm .form-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  padding: 0 42px 0 0;
}

#applyForm .form-head .eyebrow {
  grid-column: 2;
  margin: 0;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
  text-align: center;
}

#applyForm .step-count {
  grid-column: 3;
  justify-self: end;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

#applyForm .step-bar {
  height: 4px;
  margin: 16px -20px 34px;
  background: #343434;
}

#applyForm .step-bar i {
  background: linear-gradient(90deg, #4d74ff, #5ea7ff);
}

#applyForm .form-step {
  min-height: 560px;
}

#applyForm .form-step h2 {
  margin: 0 auto 34px;
  color: #fff;
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -.03em;
  text-align: center;
}

#applyForm .form-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

#applyForm .step-label {
  margin: 22px 0 10px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 800;
}

#applyForm .choice-grid,
#applyForm .level-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#applyForm .level-grid {
  grid-template-columns: 1fr;
}

#applyForm .slot-time-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

#applyForm .choice-grid label,
#applyForm .level-grid label {
  position: relative;
  justify-content: center;
  min-height: 54px;
  padding: 0 12px;
  color: #fff;
  background: #303030;
  border: 1px solid #303030;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

#applyForm .choice-grid span {
  display: grid;
  gap: 4px;
  line-height: 1.35;
}

#applyForm .choice-grid[data-required-group="slotPlace"] span {
  display: block;
  white-space: nowrap;
}

#applyForm .slot-place-grid span,
#applyForm .slot-time-grid span {
  display: grid;
  gap: 3px;
}

#applyForm .slot-time-grid label {
  min-height: 78px;
  padding: 13px 14px 13px 16px;
}

#applyForm .slot-time-grid .slot-time-card {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 124px;
  align-items: center;
  column-gap: 12px;
  text-align: left;
}

#applyForm .slot-time-grid .slot-time-info {
  display: grid;
  min-width: 0;
  gap: 5px;
}

#applyForm .slot-time-grid .slot-time-main {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
}

#applyForm .slot-place-grid em,
#applyForm .slot-time-grid em {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

#applyForm .slot-time-grid .slot-time-meta {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.2;
}

#applyForm .coach-profile-link {
  width: fit-content;
  margin-top: 1px;
  padding: 0;
  color: #ffd88a;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

#applyForm .coach-profile-link:hover {
  color: #fff0c2;
}

#applyForm .slot-availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  min-height: 38px;
  margin-top: 2px;
  padding: 6px 9px;
  color: #ffd88a;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,216,138,.22);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

#applyForm .slot-availability[data-state="full"] {
  color: #ff8a65;
  border-color: rgba(255,138,101,.28);
}

#applyForm .slot-availability[data-state="error"] {
  color: rgba(255,255,255,.55);
  white-space: normal;
}

.coach-profile-dialog {
  width: min(390px, calc(100vw - 28px));
  max-height: calc(100svh - 34px);
  padding: 0;
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: auto;
}

.coach-profile-dialog::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

.coach-profile-panel {
  position: relative;
  padding: 26px 22px 24px;
}

.coach-profile-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.coach-profile-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.coach-profile-quote {
  margin: 0 0 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
}

.coach-profile-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 18px;
  object-fit: cover;
  object-position: center 18%;
  background: #202020;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}

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

.coach-profile-meta div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.coach-profile-meta dt {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 700;
}

.coach-profile-meta dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.coach-profile-career h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.coach-profile-career ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-profile-career li {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.coach-profile-career li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.coach-profile-done {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 0;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

#applyForm .choice-grid label.is-disabled {
  cursor: not-allowed;
  color: rgba(255,255,255,.32);
  background: #171717;
  border-color: #222;
  transform: none;
}

#applyForm .choice-grid label.is-disabled:hover {
  background: #171717;
  transform: none;
}

#applyForm .slot-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  color: rgba(255,255,255,.62);
  background: #191919;
  border: 1px solid #2d2d2d;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

#applyForm .facility-intro-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin: -2px 0 10px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(145deg, #151515, #0f0f0f);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  text-align: left;
}

#applyForm .facility-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  color: rgba(255,255,255,.68);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #202020;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#applyForm .facility-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

#applyForm .facility-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #202020;
  cursor: zoom-in;
}

#applyForm .facility-intro-copy {
  display: grid;
  gap: 7px;
}

#applyForm .facility-intro-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

#applyForm .facility-intro-copy p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.facility-lightbox-dialog {
  width: min(440px, calc(100vw - 24px));
  max-width: 440px;
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}

.facility-lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(3px);
}

.facility-lightbox-panel {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #070707;
  box-shadow: 0 26px 80px rgba(0,0,0,.5);
}

.facility-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 96px);
  object-fit: contain;
  border-radius: 12px;
  background: #111;
}

.facility-lightbox-close {
  position: absolute;
  top: -12px;
  right: -10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: #e95518;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
}

#applyForm.direct-region-mode .slot-schedule-label,
#applyForm.direct-region-mode .slot-day-grid,
#applyForm.direct-region-mode .slot-time-grid {
  display: none;
}

#applyForm.direct-region-mode .form-step[data-step="3"] .direct-field {
  margin-top: 34px;
}

#applyForm .choice-grid b {
  color: inherit;
  font-size: 15px;
}

#applyForm .slot-time-grid b.slot-time-main {
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
}

#applyForm .slot-time-grid label:has(input:checked) .slot-availability {
  color: #fff4d8;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
}

#applyForm .choice-grid label:hover,
#applyForm .level-grid label:hover {
  transform: translateY(-1px);
  background: #3a3a3a;
}

#applyForm .choice-grid input,
#applyForm .level-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#applyForm .choice-grid label:has(input:checked),
#applyForm .level-grid label:has(input:checked) {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

#applyForm .level-grid span,
#applyForm .level-grid b,
#applyForm .level-grid strong,
#applyForm .level-grid em {
  color: inherit;
}

#applyForm .level-grid span {
  display: grid;
  grid-template-columns: 58px 64px 1fr;
  align-items: center;
  width: 100%;
  gap: 12px;
  text-align: left;
}

#applyForm .level-grid label {
  min-height: 58px;
  padding: 0 18px;
}

#applyForm .level-grid b {
  justify-self: start;
  font-size: 15px;
  font-weight: 900;
}

#applyForm .level-grid strong {
  justify-self: start;
  font-size: 16px;
  font-weight: 900;
}

#applyForm .level-grid em {
  justify-self: start;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

#applyForm .level-grid label:has(input:checked) em {
  color: rgba(255,255,255,.88);
}

@media (max-width: 390px) {
  #applyForm .level-grid span {
    grid-template-columns: 50px 52px 1fr;
    gap: 9px;
  }

  #applyForm .level-grid label {
    padding: 0 14px;
  }

  #applyForm .level-grid em {
    font-size: 12px;
  }
}

#applyForm .direct-field,
#applyForm .text-field {
  margin-top: 22px;
  color: #fff;
  font-size: 15px;
}

#applyForm .direct-field input,
#applyForm .text-field input {
  min-height: 58px;
  color: #fff;
  background: #111;
  border: 1px solid #393939;
  border-radius: 7px;
}

#applyForm .direct-field input::placeholder,
#applyForm .text-field input::placeholder {
  color: rgba(255,255,255,.42);
}

#applyForm .form-note {
  padding: 18px 20px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--orange);
  line-height: 1.65;
}

#applyForm .form-note b {
  color: #ffb26f;
}

#applyForm .form-error {
  color: #ffb199;
}

#applyForm .form-actions {
  position: sticky;
  bottom: 0;
  margin: 28px -20px 0;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: #020202;
  border-top: 1px solid #252525;
}

#applyForm .form-actions button,
#applyForm .success-close {
  min-height: 54px;
  border-radius: 0;
  font-size: 16px;
}

#applyForm .prev-step {
  background: #252525;
  color: rgba(255,255,255,.78);
}

#applyForm .next-step,
#applyForm .submit-step,
#applyForm .success-close {
  background: var(--orange);
  color: #fff;
}

#applyForm .success {
  color: #fff;
  text-align: center;
  padding: 76px 20px 0;
}

#applyForm .success p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

#applyForm .success-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  margin: 28px auto 0;
  padding: 0 28px;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(231, 84, 22, .24);
}

/* Final hero composition tuning */
.hero {
  align-items: start;
}

.hero-slides img {
  filter: brightness(1.12) saturate(1.04);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.12) 24%, rgba(0,0,0,.20) 58%, rgba(0,0,0,.58) 100%),
    linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.18) 54%, rgba(0,0,0,.10) 100%);
}

.hero-copy {
  width: 100%;
  padding: clamp(112px, 20svh, 150px) 22px 0;
  text-align: left;
}

.hero h1 {
  width: min(300px, 100%);
  font-size: clamp(37px, 11.5vw, 50px);
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow) {
  width: min(310px, 100%);
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 1.8;
}

.hero-copy strong {
  margin: 16px 0 26px;
  font-size: 27px;
}

/* Mobile edge-to-edge layout */
@media (max-width: 759px) {
  body > main,
  .site-header {
    width: 100%;
    max-width: none;
  }

  .site-header {
    left: 0;
    right: 0;
    transform: none;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    width: auto;
    transform: none;
  }

  .floating-cta:hover {
    transform: translateY(-2px);
  }
}

.change-section {
  padding: 92px 20px 84px;
}

.change-list {
  gap: 28px;
}

.change-card,
.change-card img {
  min-height: 560px;
}

.change-copy h3 {
  font-size: 34px;
}

.change-copy p {
  font-size: 16px;
}

.change-final p {
  font-size: 22px;
}

/* Community intro section update */
.intro-gallery-section {
  min-height: 760px;
}

.intro-gallery-section .intro-single-image {
  object-position: center center;
}

.intro-gallery-section .intro-bg-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.32) 30%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 48%, rgba(0,0,0,.28) 100%);
}

.intro-gallery-copy {
  top: 78px;
}

.intro-gallery-copy h2 {
  font-size: clamp(28px, 7.6vw, 38px);
  line-height: 1.28;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0,0,0,.56);
}

.intro-proof-card {
  display: none;
}

.intro-value-list {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 58px;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.intro-value-list p {
  margin: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  background: rgba(6, 24, 18, .62);
  border-left: 4px solid var(--gold);
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

/* Stronger, cleaner live-review header */
.live-review-section {
  padding-top: 14px;
  background:
    radial-gradient(circle at 50% 8%, rgba(214, 180, 107, .16), transparent 34%),
    linear-gradient(180deg, #fff6e6 0%, #fff9ee 42%, #fbf1df 100%);
}

.review-title {
  width: min(380px, 100%);
  margin-bottom: 26px;
  padding: 0 12px;
}

.review-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  background: rgba(18, 67, 49, .08);
  border: 1px solid rgba(18, 67, 49, .16);
  border-radius: 999px;
}

.review-title-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f04438;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(240, 68, 56, .12);
  animation: livePulse 1.4s ease-in-out infinite;
}

.review-title h2 {
  margin-top: 20px;
}

.review-title p {
  max-width: 330px;
  margin: 16px auto 0;
  color: #655d51;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.review-proof-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 22px auto 0;
  width: min(310px, 100%);
}

.review-proof-row span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 15px;
  color: #27231d;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(214, 180, 107, .42);
  box-shadow: 0 12px 26px rgba(43, 31, 12, .06);
}

.review-proof-row b {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(.82);
    opacity: .62;
  }
}

/* Global typography system */
body {
  color: #555555;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-weight: 400;
  word-break: keep-all;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

.hero h1,
.section-title h2,
.intro-copy h2,
.coach-hero-copy h2,
.local-start-copy h2,
.change-copy h3,
.steady-copy h2,
.final-copy h2,
.form-step h2,
.coach-dialog h2 {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  width: min(330px, 100%);
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  padding-top: clamp(104px, 18svh, 138px);
}

.hero-copy p:not(.eyebrow) {
  width: min(320px, 100%);
  margin-top: 34px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.section-title {
  margin-bottom: 54px;
}

.section-title h2,
.intro-copy h2,
.steady-copy h2,
.final-copy h2 {
  color: #111111;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title p:not(.eyebrow),
.intro-copy p,
.triangle-copy,
.levels .section-title p,
.faq p,
.change-copy p,
.coach-hero-copy p,
.local-start-copy p,
.steady-copy p,
.final-copy p {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.section-title p:not(.eyebrow) {
  margin-top: 26px;
}

.eyebrow,
.form-kicker,
.step-label,
.review-title-badge,
.review-bubble small,
.faq summary,
.caption {
  font-weight: 400;
}

.review-title-badge,
.eyebrow,
.form-kicker {
  color: #777777;
  font-size: 13px;
}

.change-copy h3,
.level-card b,
.level-item b,
.tri-point b {
  color: #111111;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.change-copy p,
.level-card span,
.level-item span,
.keyword-list span,
.coach-feature-list span,
.local-start-list span,
.review-proof-row span {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.review-bubble p {
  color: #111111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.review-bubble small {
  color: #888888;
  font-size: 14px;
  font-weight: 400;
}

.review-bubble span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.review-title p {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.review-proof-row span {
  min-height: 48px;
  font-size: 16px;
  font-weight: 400;
}

.review-proof-row b {
  font-size: 16px;
  font-weight: 700;
}

.intro-gallery-copy {
  top: 62px;
}

.intro-gallery-copy h2,
.coach-hero-copy h2,
.local-start-copy h2,
.steady-copy h2,
.final-copy h2 {
  color: #ffffff;
}

.intro-gallery-copy h2,
.coach-hero-copy h2,
.local-start-copy h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.intro-value-list {
  gap: 16px;
}

.intro-value-list p {
  padding: 0 0 0 34px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  background: transparent;
  border-left: 0;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
}

.intro-value-list p::before,
.coach-feature-list article::before,
.coach-feature-list i,
.local-start-list i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: #2fb344;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(47, 179, 68, .25);
}

.intro-value-list p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
}

.coach-hero-copy p,
.local-start-copy p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.coach-feature-list article,
.local-start-list article {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.primary-cta,
.floating-cta,
.header-cta,
.coach-submit,
#applyForm .form-actions button,
#applyForm .success-close {
  min-height: 62px;
  font-size: 18px;
  font-weight: 700;
}

.header-cta {
  min-height: 44px;
  font-size: 14px;
}

.faq summary {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.faq p {
  color: #555555;
}

.form-step h2,
.coach-dialog h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

#applyForm .choice-grid label,
#applyForm .level-grid label,
#applyForm .text-field,
#applyForm .direct-field {
  font-size: 17px;
  font-weight: 500;
}

#applyForm .level-grid strong,
#applyForm .level-grid b {
  font-weight: 700;
}

#applyForm .level-grid em,
#applyForm .form-note,
#applyForm .text-field small {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 48px;
  }

  .section-title h2,
  .intro-copy h2,
  .coach-hero-copy h2,
  .local-start-copy h2,
  .steady-copy h2,
  .final-copy h2,
  .form-step h2 {
    font-size: 34px;
  }
}

/* Readability fixes for text placed over photos */
.coach-feature-list span,
.local-start-list span {
  color: rgba(255,255,255,.94);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 4px 16px rgba(0,0,0,.72);
}

.coach-feature-list article,
.local-start-list article {
  color: rgba(255,255,255,.94);
}

.change-card::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.9) 100%),
    radial-gradient(circle at center 34%, rgba(18,61,48,0), rgba(0,0,0,.46));
}

.change-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: 0 3px 14px rgba(0,0,0,.68);
}

.change-copy h3 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 6px 24px rgba(0,0,0,.78);
}

.change-copy p {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 4px 18px rgba(0,0,0,.76);
}

.intro-value-list p {
  color: rgba(255,255,255,.94);
  text-shadow: 0 4px 16px rgba(0,0,0,.72);
}

/* Section spacing and image ratio refinement */
.intro-gallery-copy {
  top: 34px;
}

.change-section {
  padding-top: 54px;
  padding-bottom: 68px;
}

.change-section .section-title {
  margin-bottom: 34px;
}

.change-list {
  gap: 18px;
}

.change-card,
.change-card img {
  min-height: 0;
}

.change-card {
  height: 280px;
}

.change-card img {
  height: 100%;
  object-fit: cover;
}

.change-copy {
  bottom: 24px;
}

.change-copy h3 {
  font-size: 28px;
}

.change-copy p {
  margin-top: 10px;
  font-size: 16px;
}

.levels.section {
  padding-top: 58px;
}

.levels .section-title {
  margin-bottom: 38px;
}

/* Center coach feature bullets */
.coach-feature-list {
  width: fit-content;
  max-width: calc(100% - 24px);
  justify-items: start;
}

.coach-feature-list article {
  grid-template-columns: 28px auto;
}

.local-start-list {
  width: fit-content;
  max-width: calc(100% - 24px);
  justify-items: start;
}

.local-start-list article {
  grid-template-columns: 28px auto;
}

/* Coach section spacing: keep title/description as one centered block */
.coach-hero-section {
  padding-bottom: 82px;
}

.coach-hero-copy {
  transform: none;
  margin-bottom: 54px;
}

.coach-hero-copy p {
  margin-top: 20px;
}

.coach-feature-list {
  margin-top: 0;
}

/* Compact level guide */
.level-guide {
  width: min(390px, 100%);
  gap: 10px;
}

.level-guide article {
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: auto;
  padding: 14px 16px;
  gap: 14px;
  border-radius: 22px;
}

.level-guide article:not(:last-child)::after {
  display: none;
}

.level-guide b {
  width: 56px;
  height: 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.level-guide div {
  min-width: 0;
}

.level-guide strong {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.level-guide strong span {
  display: inline;
  grid-column: auto;
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 500;
  white-space: normal;
}

.level-guide p {
  margin: 5px 0 0;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

/* Activity program section */
.activity-section {
  background: #fffaf1;
  padding-top: 72px;
  padding-bottom: 80px;
}

.activity-section .section-title {
  margin-bottom: 30px;
}

.activity-section .section-title h2 {
  color: #111111;
}

.activity-section .section-title p {
  color: #555555;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
  width: min(410px, calc(100% - 34px));
  margin: 0 auto;
}

.activity-grid article {
  min-width: 0;
}

.activity-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(13, 73, 58, .12), rgba(226, 86, 24, .08)),
    #f7f0e4;
  border: 1px solid rgba(13, 73, 58, .12);
  box-shadow: 0 14px 26px rgba(31, 24, 16, .08);
  color: #0d493a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.activity-grid h3 {
  margin: 12px 0 5px;
  color: #111111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.activity-grid p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.activity-closing {
  width: min(390px, calc(100% - 44px));
  margin: 34px auto 0;
  color: #0d493a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-align: center;
}

@media (min-width: 720px) {
  .activity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(860px, calc(100% - 80px));
    gap: 24px 18px;
  }
}

@media (max-width: 420px) {
  .level-guide {
    gap: 9px;
  }

  .level-guide article {
    grid-template-columns: 58px 1fr;
    padding: 13px 14px;
    gap: 12px;
  }

  .level-guide b {
    width: 52px;
    height: 34px;
    font-size: 13px;
  }

  .level-guide strong {
    font-size: 17px;
  }

  .level-guide strong span,
  .level-guide p {
    font-size: 12px;
  }
}

/* Activity list compact layout */
.activity-section {
  padding-top: 64px;
}

.activity-section .section-title {
  margin-bottom: 28px;
}

.activity-list {
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(390px, calc(100% - 34px));
}

.activity-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 14px;
  border: 1px solid rgba(13, 73, 58, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 12px 24px rgba(31, 24, 16, .055);
}

.activity-list .activity-placeholder {
  width: 54px;
  height: 54px;
  aspect-ratio: auto;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(13, 73, 58, .14), rgba(226, 86, 24, .08)),
    #f5ecdd;
  box-shadow: none;
  font-size: 24px;
}

.activity-list h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.activity-list p {
  font-size: 13px;
  line-height: 1.45;
}

/* Intro value flow */
.intro-value-list {
  gap: 12px;
}

.intro-value-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: baseline;
  padding-left: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.intro-value-list p::before {
  display: none;
}

.intro-value-list p b {
  color: #f5d27e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: lowercase;
  text-shadow: 0 4px 16px rgba(0,0,0,.72);
}

.intro-value-list p:not(:last-child) {
  position: relative;
}

.intro-value-list p:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -9px;
  width: 1px;
  height: 6px;
  background: rgba(245, 210, 126, .62);
}

@media (min-width: 720px) {
  .activity-list {
    grid-template-columns: 1fr;
    width: min(430px, calc(100% - 48px));
  }
}

/* Keep activity cards as a single readable row list */
.activity-list {
  grid-template-columns: 1fr !important;
  width: min(430px, calc(100% - 34px));
}

.activity-list article {
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 16px 17px;
}

.activity-list .activity-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.final-cta img {
  object-position: center 28%;
}

/* Keep the community intro title at the top so the meeting photo stays visible. */
.intro-bg-section .intro-gallery-copy {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 36px);
  padding: 0;
}

.intro-bg-section .intro-gallery-copy h2 {
  margin: 0;
}

/* Main hero readability refinements */
.brand {
  width: auto;
  height: auto;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,.58);
}

.brand span {
  display: block;
}

.hero h1 {
  width: min(315px, 100%);
  font-size: clamp(41px, 10.6vw, 46px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 22px rgba(0,0,0,.5);
}

.hero-copy p:not(.eyebrow) {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  text-shadow: 0 4px 16px rgba(0,0,0,.42);
}

/* Make the regional map feel lighter inside the section. */
.local-map-bg {
  transform: scale(.88);
  transform-origin: center 38%;
}

/* Final override: reduce the top gap above the live review section. */
.live-review-section.section {
  padding-top: 44px;
}

.live-review-section .review-title {
  margin-top: 0;
}

/* Pricing section spacing polish */
.pricing-section.section {
  padding-top: 46px;
  padding-bottom: 42px;
}

.pricing-section .section-title {
  margin-bottom: 24px;
}

.pricing-section .section-title h2 {
  line-height: 1.2;
}

.pricing-card {
  padding-top: 22px;
  padding-bottom: 22px;
}

.pricing-card .pricing-label {
  display: inline-block;
  width: 42%;
  margin-bottom: 18px;
  vertical-align: baseline;
}

.pricing-card strong {
  display: inline-block;
  width: 56%;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.16;
  text-align: right;
  white-space: nowrap;
}

.pricing-notes {
  margin-top: 16px;
}

/* Final CTA copy polish */
.final-copy h2 {
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.faq.section {
  padding-top: 42px;
}

/* Keep the compact level choices on one line in the application modal. */
#applyForm .level-grid label {
  overflow: hidden;
}

#applyForm .level-grid span {
  grid-template-columns: 48px 72px minmax(0, 1fr);
  gap: 10px;
}

#applyForm .level-grid b,
#applyForm .level-grid strong,
#applyForm .level-grid em {
  white-space: nowrap;
}

#applyForm .level-grid strong {
  font-size: 14px;
}

#applyForm .level-grid em {
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 390px) {
  #applyForm .level-grid span {
    grid-template-columns: 43px 68px minmax(0, 1fr);
    gap: 8px;
  }

  #applyForm .level-grid label {
    padding: 0 12px;
  }

  #applyForm .level-grid b {
    font-size: 14px;
  }

  #applyForm .level-grid strong {
    font-size: 13px;
  }

  #applyForm .level-grid em {
    font-size: 11px;
  }
}

/* Business footer and consent */
#applyForm .apply-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

#applyForm .apply-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

#applyForm .apply-consent a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#applyForm .apply-consent.marketing-consent {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.035);
}

#applyForm .apply-consent small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.site-footer {
  box-sizing: border-box;
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 46px 28px 108px;
  color: rgba(255, 255, 255, 0.72);
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.site-footer h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-footer dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.site-footer dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: start;
}

.site-footer dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 600;
}

.site-footer dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 16px;
  padding-top: 6px;
}

.footer-links a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-notice,
.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}

.legal-dialog {
  width: min(430px, 100vw);
  max-width: 100vw;
  height: min(86vh, 760px);
  max-height: 86vh;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.legal-panel {
  display: grid;
  grid-template-rows: 58px 1fr;
  height: 100%;
  overflow: hidden;
  background: #fffaf0;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  background: #111;
  color: #fff;
}

.legal-title {
  font-size: 16px;
  font-weight: 800;
}

.legal-close {
  width: 42px;
  height: 42px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.legal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fffaf0;
}

@media (max-width: 480px) {
  .legal-dialog {
    width: calc(100vw - 20px);
    height: calc(100dvh - 28px);
    max-height: calc(100dvh - 28px);
  }

  .legal-panel {
    border-radius: 12px;
  }
}

/* Keep the hero slogan as two intentional lines on mobile. */
.hero h1.hero-title {
  width: 100%;
  max-width: 390px;
  font-size: clamp(32px, 8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.hero h1.hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .hero h1.hero-title {
    font-size: clamp(29px, 8.1vw, 32px);
  }
}

/* Compact open classes section */
.open-classes-section.section {
  position: relative;
  padding: 54px 20px 50px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 2%, rgba(214, 180, 107, .18), transparent 30%),
    linear-gradient(150deg, #123d30 0%, #0b2b21 100%);
}

.open-classes-heading {
  margin: 0 auto 24px;
  text-align: left;
}

.open-classes-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 11px;
  color: #ffe5d5;
  background: rgba(217, 91, 27, .22);
  border: 1px solid rgba(255, 190, 150, .32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.open-classes-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.open-classes-heading > p:last-child {
  max-width: 340px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.6;
}

.open-classes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.open-class-branch {
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 12px;
  gap: 7px;
  align-items: center;
  padding: 10px 11px 10px 13px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 10px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.open-class-branch:hover,
.open-class-branch:focus-visible {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(214, 180, 107, .7);
  transform: translateY(-1px);
}

.open-class-branch span {
  min-width: 0;
}

.open-class-branch b,
.open-class-branch small {
  display: block;
}

.open-class-branch b {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.open-class-branch small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.open-class-branch em {
  color: #f4d79c;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.open-class-branch i {
  color: rgba(255, 255, 255, .72);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.open-classes-summary {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  text-align: center;
}

.open-classes-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.65;
}

.open-class-skeleton {
  min-height: 62px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.14), rgba(255,255,255,.06));
  background-size: 200% 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  animation: openClassSkeleton 1.3s ease-in-out infinite;
}

@keyframes openClassSkeleton {
  from { background-position: 160% 0; }
  to { background-position: -60% 0; }
}

#openClassesDialog {
  width: min(calc(100% - 24px), 430px);
  max-width: 430px;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  color: #fff;
  background: #0b0c0b;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  overflow: auto;
}

#openClassesDialog::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

.open-class-dialog-panel {
  position: relative;
  padding: 14px 14px 20px;
}

.open-class-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.open-class-dialog-close:focus {
  outline: none;
}

.open-class-dialog-close:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.92),
    0 0 0 5px rgba(214,180,107,.72);
}

.open-class-dialog-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1b1c1b;
  border-radius: 10px;
}

.open-class-dialog-image,
.open-class-dialog-image-placeholder {
  width: 100%;
  height: 100%;
}

.open-class-dialog-image {
  object-fit: cover;
}

.open-class-dialog-image-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.56);
  background:
    linear-gradient(135deg, rgba(214,180,107,.12), transparent),
    #1b1c1b;
  font-size: 14px;
}

.open-class-dialog-heading {
  padding: 20px 4px 17px;
  border-bottom: 1px solid rgba(255,255,255,.68);
}

.open-class-dialog-heading p {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin: 0 0 11px;
  padding: 0 10px;
  color: #ffd9c4;
  background: rgba(217,91,27,.2);
  border: 1px solid rgba(217,91,27,.42);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.open-class-dialog-summary {
  display: grid;
  grid-template-columns: minmax(108px, .78fr) minmax(0, 1.52fr);
  gap: 16px;
  align-items: start;
}

.open-class-dialog-branch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 114px;
}

.open-class-dialog-branch > p {
  margin: 0;
}

.open-class-dialog-branch h2 {
  margin: auto 0 0;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.open-class-dialog-branch > span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.open-class-dialog-coach {
  min-width: 0;
  padding: 0;
  justify-self: stretch;
}

.open-class-dialog-coach-copy > span {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.open-class-dialog-coach-list {
  display: grid;
  gap: 8px;
}

.open-class-dialog-coach-item {
  display: grid;
  grid-template-columns: 114px minmax(78px, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.open-class-dialog-coach-item img {
  display: block;
  width: 114px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #202320;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
}

.open-class-dialog-coach-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 114px;
  padding: 2px 8px 6px 0;
}

.open-class-dialog-coach-copy strong {
  display: block;
  margin-top: auto;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.open-class-dialog-coach-copy small {
  display: block;
  margin-top: 6px;
  color: #f2cf88;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.open-class-dialog-schedules {
  padding: 16px 4px 0;
}

.open-class-dialog-schedules h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.open-class-schedule-list {
  display: grid;
  gap: 4px;
}

.open-class-schedule {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 7px 10px;
  background: #171917;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
}

.open-class-schedule > span {
  color: #f2cf88;
  font-size: 12px;
  font-weight: 800;
}

.open-class-schedule strong {
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.open-class-schedule small {
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 9px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.open-class-schedule strong::before,
.open-class-schedule small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.18);
  transform: translateY(-50%);
}

.open-class-apply {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.open-class-apply:hover,
.open-class-apply:focus-visible {
  background: #e66a28;
}

@media (max-width: 360px) {
  .open-class-dialog-summary {
    grid-template-columns: minmax(94px, .72fr) minmax(0, 1.48fr);
    gap: 10px;
  }

  .open-class-dialog-branch,
  .open-class-dialog-coach-copy {
    min-height: 104px;
  }

  .open-class-dialog-coach-item {
    grid-template-columns: 104px minmax(68px, 1fr);
    gap: 10px;
  }

  .open-class-dialog-coach-item img {
    width: 104px;
  }

  .open-class-dialog-coach-copy > span {
    font-size: 12px;
  }

  .open-class-dialog-coach-copy strong {
    font-size: 18px;
  }

  .open-class-dialog-coach-copy small {
    font-size: 12px;
  }

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

  .open-class-branch {
    padding-right: 8px;
    padding-left: 10px;
  }

  .open-class-branch b {
    font-size: 13px;
  }

  .open-class-branch em {
    font-size: 10px;
  }

  .open-class-schedule {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 5px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .open-class-schedule strong {
    font-size: 13px;
  }

  .open-class-schedule small {
    font-size: 9px;
    padding-left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .open-class-skeleton {
    animation: none;
  }

  .open-class-branch {
    transition: none;
  }
}
