@charset "UTF-8";
:root {
  --nav-h: 70px;
  --nav-menu-gap: 25px;
  --bg: rgba(243, 240, 235, 1);
  --bg2: rgba(243, 240, 235, 1);
  --bg3: rgba(243, 240, 235, 1);
  --card: #fff;
  --border: rgba(0, 0, 0, 0.08);
  --text: rgba(255, 255, 255, 1);
  --black: #000;
  --muted: #888;
  --accent: #8a6a3f;
  --r: 16px;
  --ff: "Montserrat Alternates", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f0eb;
  color: var(--text);
  font-family: var(--ff);
  font-size: 13px;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font-family: var(--ff);
  cursor: pointer;
  border: none;
  outline: none;
}

.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.plan-name span.popular {
  font-size: 11px;
  background-color: #99ad7a;
  padding: 6px 7px;
  border-radius: 16px;
  color: var(--text);
}

header {
  position: relative;
  z-index: 250;
}

@media (max-width: 1024px) {
  :root {
    --nav-menu-gap: 20px;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-menu-gap: 16px;
  }
}
@media (max-width: 480px) {
  :root {
    --nav-menu-gap: 12px;
  }
}
#site-header {
  min-height: var(--nav-h);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(243, 240, 235, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  max-width: 1920px;
  margin: 0 auto;
}
nav .nav-left {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav .nav-left a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 22, 18, 0.5);
  transition: 0.2s;
}
nav .nav-left a:hover {
  opacity: 0.75;
}
nav .nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
nav .nav-logo svg {
  height: 35px;
  width: auto;
}
nav .nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
nav .nav-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
nav .nav-icons svg {
  width: 18px;
  height: 18px;
  stroke: rgba(26, 22, 18, 0.4);
  fill: none;
  stroke-width: 1.6;
  cursor: pointer;
  transition: 0.2s;
}
nav .nav-icons svg:hover {
  opacity: 0.75;
  transform: scale(1.05);
}
nav .nav-subscribe {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 22, 18, 0.25);
  color: rgba(26, 22, 18, 0.6);
  background: transparent;
  border-radius: var(--r);
  transition: all 0.2s;
}
nav .nav-subscribe:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
nav .nav-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
nav .nav-book-btn,
nav .nav-test-btn {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 22, 18, 0.25);
  color: rgba(26, 22, 18, 0.6);
  background: transparent;
  border-radius: var(--r);
  transition: all 0.2s;
  white-space: nowrap;
}
nav .nav-book-btn:hover,
nav .nav-test-btn:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
nav .nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(26, 22, 18, 0.2);
  border-radius: var(--r);
  transition: background 0.2s, border-color 0.2s;
}
nav .nav-burger:hover {
  background: rgba(26, 22, 18, 0.06);
}
nav .nav-burger[aria-expanded=true] {
  background: #1a1612;
  border-color: #1a1612;
}
nav .nav-burger[aria-expanded=true] .nav-burger-line {
  background: #fff;
}
nav .nav-burger[aria-expanded=true] .nav-burger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
nav .nav-burger[aria-expanded=true] .nav-burger-line:nth-child(2) {
  opacity: 0;
}
nav .nav-burger[aria-expanded=true] .nav-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
nav .nav-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(26, 22, 18, 0.65);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s;
}
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
    height: 64px;
  }
  nav .nav-logo svg {
    height: 30px;
  }
  nav .nav-subscribe {
    padding: 5px 14px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 56px;
    justify-content: space-between;
  }
  nav .nav-left {
    display: none;
  }
  nav .nav-logo {
    position: relative;
    left: 0;
    transform: translateX(0);
    flex: 1;
  }
  nav .nav-logo svg {
    height: 24px;
  }
  nav .nav-right {
    display: none;
  }
  nav .nav-mobile {
    display: flex;
  }
  nav .nav-book-btn,
  nav .nav-test-btn {
    padding: 5px 12px;
    font-size: 10px;
  }
  nav .nav-burger {
    width: 36px;
    height: 36px;
    gap: 4px;
  }
  nav .nav-burger-line {
    width: 16px;
  }
}
@media (max-width: 480px) {
  nav {
    padding: 0 12px;
    height: 52px;
  }
  nav .nav-logo svg {
    height: 20px;
  }
  nav .nav-subscribe {
    padding: 3px 8px;
    font-size: 10px;
  }
}

.hero {
  min-height: unset;
  padding: 120px 16px 0;
  background: var(--bg);
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1024px) {
  .hero {
    padding: 104px 16px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 76px 16px 16px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 68px 12px 12px;
  }
}

.hero-carousel {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hero-card {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/1;
  max-height: 600px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero-card {
    aspect-ratio: 1.8/1;
    max-height: 700px;
  }
}
@media (max-width: 768px) {
  .hero-card {
    flex-direction: column-reverse;
    aspect-ratio: unset;
    height: auto;
    max-height: unset;
  }
}
@media (max-width: 480px) {
  .hero-card {
    border-radius: 12px;
  }
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  top: -50%;
  left: -30%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(153, 173, 122, 0.5) 20%, rgba(153, 173, 122, 0.25) 50%, transparent 70%);
  animation: orbA 9s ease-in-out infinite 1s;
}

.hero-orb-2 {
  bottom: -70%;
  left: -30%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(153, 173, 122, 0.7) 0%, rgba(153, 173, 122, 0.25) 40%, transparent 65%);
  animation: orbA 7s ease-in-out infinite 2.5s;
}

@keyframes orbA {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  35% {
    transform: scale(1.13) translate(0, 0);
    opacity: 1;
  }
  68% {
    transform: scale(0.91) translate(0, 0);
    opacity: 0.65;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
  padding: 100px 52px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-basis: 70%;
}
.hero-left .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  transition: opacity 0.5s ease;
}
.hero-left .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.hero-left .hero-actions-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 210px;
  transition: opacity 0.5s ease;
}
.hero-left .hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}
.hero-left .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: rgba(26, 22, 18, 0.2);
  transition: background 0.2s, width 0.3s, height 0.3s;
  padding: 0;
}
.hero-left .hero-dot.active {
  background: #1a1612;
  width: 24px;
  height: 8px;
}
.hero-left .hero-dot:hover:not(.active) {
  background: rgba(26, 22, 18, 0.45);
}
.hero-left:before {
  content: "";
  position: absolute;
  top: -220px;
  left: -220px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 205, 155, 0.35) 0%, rgba(185, 205, 155, 0.12) 35%, transparent 65%);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero-left {
    padding: 60px 40px 20px;
    flex-basis: 65%;
  }
  .hero-left .hero-content {
    min-height: 150px;
  }
  .hero-left .hero-actions-inner {
    min-height: 180px;
  }
  .hero-left .hero-dots {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .hero-left {
    padding: 32px 20px 24px;
    flex-basis: auto;
    text-align: left;
    align-items: flex-start;
  }
  .hero-left .hero-content {
    min-height: auto;
  }
  .hero-left .hero-actions {
    width: 100%;
  }
  .hero-left .hero-actions-inner {
    min-height: auto;
    width: 100%;
  }
  .hero-left .hero-dots {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .hero-left:before {
    width: 600px;
    height: 600px;
    top: -300px;
    left: -400px;
  }
}
@media (max-width: 480px) {
  .hero-left {
    padding: 20px 16px 16px;
  }
  .hero-left .hero-actions-inner {
    gap: 12px;
  }
  .hero-left .hero-dots {
    margin-top: 16px;
    gap: 6px;
  }
  .hero-left:before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -300px;
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(32px, 4vw, 60px);
  text-align: center;
  font-weight: 300;
  line-height: 1.05;
  color: #1a1612;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(20px, 6vw, 32px);
  }
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-sub {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .hero-sub {
    font-size: 12px;
  }
}

.hero-weeks {
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-weeks {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero-weeks {
    font-size: 11px;
  }
}

.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.hero-price span {
  font-size: 20px;
}
.hero-price span.price {
  background: #dcccac;
  color: #1a1612;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: var(--r);
  width: fit-content;
}
.hero-price span.special {
  color: #dcccac;
  text-transform: uppercase;
  height: 14px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero-price span {
    font-size: 16px;
  }
  .hero-price span.price {
    padding: 8px 20px;
  }
  .hero-price span.special {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .hero-price span {
    font-size: 14px;
  }
  .hero-price span.price {
    padding: 6px 16px;
  }
  .hero-price span.special {
    font-size: 9px;
  }
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 24px;
  border: 1px solid rgba(26, 22, 18, 0.15);
  color: rgba(26, 22, 18, 0.75);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  background: rgba(26, 22, 18, 0.04);
  border-radius: var(--r);
  transition: all 0.2s;
  width: 100%;
  margin-bottom: 24px;
}
.hero-btn:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
.hero-btn:hover svg {
  stroke: #fff;
}
@media (max-width: 768px) {
  .hero-btn {
    padding: 12px 18px;
    font-size: 12px;
    margin-bottom: 16px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero-btn {
    padding: 10px 14px;
    font-size: 11px;
    margin-bottom: 12px;
  }
}

.hero-right {
  position: relative;
  overflow: hidden;
  padding: 0;
  flex-basis: 50%;
}
.hero-right .hero-img,
.hero-right .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}
.hero-right .hero-img {
  transition: opacity 0.15s ease;
}
.hero-right .hero-video {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-right .hero-video.is-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero-right {
    flex-basis: 100%;
    aspect-ratio: 16/9;
  }
  .hero-right .hero-img,
  .hero-right .hero-video {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .hero-right .hero-img,
  .hero-right .hero-video {
    border-radius: 8px;
  }
}

.about {
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  background: var(--bg);
}
@media (max-width: 768px) {
  .about {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 0 8px;
  }
}
.about .wrap {
  width: 100%;
  max-width: 1920px;
  padding: 0;
  margin: 0 auto;
}
.about .wrap .about-card {
  border-radius: 16px;
  padding: 50px;
  gap: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .about .wrap .about-card {
    padding: 40px;
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .about .wrap .about-card {
    padding: 32px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about .wrap .about-card {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card {
    padding: 16px;
  }
}
.about .wrap .about-card .about-left {
  color: var(--black);
  flex-basis: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-left {
    flex-basis: 100%;
    width: 100%;
  }
}
.about .wrap .about-card .about-left .about-title {
  font-size: 48px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .about .wrap .about-card .about-left .about-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-left .about-title {
    font-size: 32px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card .about-left .about-title {
    font-size: 24px;
  }
}
.about .wrap .about-card .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  padding-top: 40px;
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-stats {
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card .about-stats {
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
  }
}
.about .wrap .about-card .about-stats .about-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.about .wrap .about-card .about-stats .about-stats-item .stats-num {
  font-size: 60px;
  color: var(--black);
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-stats .about-stats-item .stats-num {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card .about-stats .about-stats-item .stats-num {
    font-size: 36px;
  }
}
.about .wrap .about-card .about-stats .about-stats-item .stats-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-stats .about-stats-item .stats-label {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card .about-stats .about-stats-item .stats-label {
    font-size: 11px;
  }
}
.about .wrap .about-card .about-right {
  color: var(--black);
  flex-basis: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-right {
    flex-basis: 100%;
  }
}
.about .wrap .about-card .about-right .about-text {
  font-size: 16px;
  line-height: 2;
  color: var(--black);
  font-weight: 300;
}
@media (max-width: 768px) {
  .about .wrap .about-card .about-right .about-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .about .wrap .about-card .about-right .about-text {
    font-size: 12px;
    line-height: 1.6;
  }
}
.about .wrap .about-card .about-orb-1,
.about .wrap .about-card .about-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.about .wrap .about-card .about-orb-1 {
  top: -750px;
  left: -1200px;
  width: 2000px;
  height: 2000px;
  background: radial-gradient(circle, rgba(153, 173, 122, 0.7) 0%, rgba(153, 173, 122, 0.01) 45%, transparent 80%);
  animation: orbA 9s ease-in-out infinite 1s;
}

.about-img {
  position: absolute;
  inset: 0;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-text-col {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(40% - 10px);
  padding: 63px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(26, 22, 18, 0.06);
  border-radius: 16px 0 0 16px;
}

.eyebrow {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 25px;
}

.about-body {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--black);
  line-height: 2;
  letter-spacing: 0.02em;
}

.membership {
  padding: 0 16px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .membership {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .membership {
    padding: 0 8px;
  }
}

.membership .wrap {
  padding: unset;
  max-width: 1920px;
  margin: 0 auto;
  background: unset;
}

.wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.sec-head {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .sec-head {
    margin-bottom: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .sec-head {
    margin-bottom: 12px;
    gap: 8px;
  }
}

.membership .wrap .membership-title {
  color: var(--black);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .membership .wrap .membership-title {
    font-size: clamp(24px, 5vw, 48px);
  }
}
@media (max-width: 480px) {
  .membership .wrap .membership-title {
    font-size: clamp(20px, 6vw, 36px);
  }
}
.membership .wrap .membership-sub {
  color: var(--black);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-top: 20px;
  opacity: 0.6;
  text-align: center;
}
@media (max-width: 768px) {
  .membership .wrap .membership-sub {
    font-size: 12px;
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .membership .wrap .membership-sub {
    font-size: 11px;
    margin-top: 10px;
  }
}
.membership .wrap .sec-head {
  justify-content: space-between;
  gap: unset;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .membership .wrap .sec-head {
    margin-top: 30px;
    margin-bottom: 20px;
    flex-direction: unset !important;
  }
}
@media (max-width: 600px) {
  .membership .wrap .sec-head {
    margin-top: 20px;
    margin-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
}
.membership .wrap .sec-head .sec-title {
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  border-bottom: rgba(0, 0, 0, 0.25) solid 1px;
  padding-bottom: 20px;
  width: stretch;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .membership .wrap .sec-head .sec-title {
    font-size: 16px;
    padding-bottom: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .membership .wrap .sec-head .sec-title {
    font-size: 14px;
    padding: 12px 10px;
    white-space: nowrap;
    border-bottom: rgba(0, 0, 0, 0.2) solid 2px;
  }
}
@media (max-width: 480px) {
  .membership .wrap .sec-head .sec-title {
    font-size: 13px;
    padding: 10px 8px;
  }
}
.membership .wrap .sec-head .sec-title.active {
  color: rgb(0, 0, 0);
  border-bottom: rgb(0, 0, 0) solid 2px;
}

.sec-title {
  font-size: 60px;
  font-weight: 300;
  color: var(--black);
}
@media (max-width: 768px) {
  .sec-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .sec-title {
    font-size: 20px;
  }
}

.sec-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}
@media (max-width: 768px) {
  .sec-sub {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .sec-sub {
    font-size: 12px;
  }
}

.plans-container {
  position: relative;
  transition: height 0.4s ease;
  overflow: hidden;
}
@media (max-width: 480px) {
  .plans-container {
    padding: 0 8px;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  width: 100%;
}
@media (max-width: 1200px) {
  .plans-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .plans-grid {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .plans-grid {
    gap: 10px;
  }
}
.plans-grid#plans-packages .plan-card .plan-status, .plans-grid#plans-private .plan-card .plan-status {
  display: none;
}
.plans-grid#plans-packages .plan-card .plan-name .period, .plans-grid#plans-private .plan-card .plan-name .period {
  display: none;
}
.plans-grid#plans-packages .plan-card .plan-name .detail, .plans-grid#plans-private .plan-card .plan-name .detail {
  display: none;
}
.plans-grid#plans-packages .plan-card .plan-perks, .plans-grid#plans-private .plan-card .plan-perks {
  display: none;
}
.plans-grid.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.plans-grid .plan-card {
  background: #ffffff;
  color: var(--black);
  border-radius: var(--r);
  padding: 30px;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.6s, transform 0.6s, background 0.3s;
}
@media (max-width: 1024px) {
  .plans-grid .plan-card {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .plans-grid .plan-card {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card {
    padding: 16px;
  }
}
.plans-grid .plan-card .plan-status {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-status {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-status {
    font-size: 10px;
    margin-bottom: 16px;
  }
}
.plans-grid .plan-card .plan-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.plans-grid .plan-card .plan-name .period {
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-name .period {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-name .period {
    font-size: 11px;
  }
}
.plans-grid .plan-card .plan-name .name {
  font-size: 26px;
}
@media (max-width: 1024px) {
  .plans-grid .plan-card .plan-name .name {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-name .name {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-name .name {
    font-size: 18px;
  }
}
.plans-grid .plan-card .plan-name .detail {
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-name .detail {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-name .detail {
    font-size: 11px;
  }
}
.plans-grid .plan-card .plan-price {
  font-size: 72px;
  margin: 32px 0;
  display: flex;
  gap: 10px;
}
@media (max-width: 1024px) {
  .plans-grid .plan-card .plan-price {
    font-size: 56px;
    margin: 24px 0;
  }
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-price {
    font-size: 48px;
    margin: 18px 0;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-price {
    font-size: 36px;
    margin: 12px 0;
  }
}
.plans-grid .plan-card .plan-price sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 16px;
  display: inline-block;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-price sup {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-price sup {
    font-size: 14px;
    margin-top: 8px;
  }
}
.plans-grid .plan-card .plan-perks {
  list-style-type: none;
}
.plans-grid .plan-card .plan-perks li {
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(26, 22, 18, 0.15);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-perks li {
    font-size: 12px;
    padding: 8px 0;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-perks li {
    font-size: 11px;
    padding: 6px 0;
  }
}
.plans-grid .plan-card .plan-perks li::before {
  content: "—";
  color: rgba(26, 22, 18, 0.15);
  font-size: 10px;
}
.plans-grid .plan-card .plan-btn {
  display: block;
  text-align: center;
  padding: 15px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid rgba(26, 22, 18, 0.15);
  background-color: rgba(26, 22, 18, 0.04);
  margin-top: 32px;
  border-radius: var(--r);
  color: var(--black);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .plans-grid .plan-card .plan-btn {
    padding: 12px 18px;
    font-size: 11px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .plans-grid .plan-card .plan-btn {
    padding: 10px 14px;
    font-size: 10px;
    margin-top: 14px;
  }
}
.plans-grid .plan-card .plan-btn:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
.plans-grid .plan-card.popular {
  background: #99ad7a;
  color: var(--text);
}
.plans-grid .plan-card.popular .plan-btn {
  border: 1px solid var(--text);
  color: var(--text);
}
.plans-grid .plan-card.popular .plan-btn:hover {
  color: var(--black);
  border-color: var(--text);
  background-color: var(--text);
}
.plans-grid .plan-card:hover {
  transform: scale(1.01);
}
.plans-grid .plan-card:hover::before {
  opacity: 1;
}
.plans-grid .plan-card:hover::after {
  opacity: 1;
}
.plans-grid .plan-card:hover .plan-top .plan-arrow {
  background-color: #99ad7a;
  border: 1px solid rgba(26, 22, 18, 0);
}
.plans-grid .plan-card:hover .plan-top .plan-arrow svg {
  filter: brightness(1000);
}

.mem-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 24px;
  background: rgba(26, 22, 18, 0.04);
  border: 1px solid rgba(26, 22, 18, 0.15);
  color: rgba(26, 22, 18, 0.7);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  border-radius: var(--r);
  transition: all 0.2s;
  cursor: pointer;
}
.mem-cta:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
.mem-cta:hover .mem-cta-arrow svg {
  stroke: #fff;
}
.mem-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.classes {
  padding: 0 16px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .classes {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .classes {
    padding: 0 8px;
  }
}
.classes .cls-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
.classes .cls-wrap .classes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 1400px) {
  .classes .cls-wrap .classes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .classes .cls-wrap .classes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .classes .cls-wrap .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .classes .cls-wrap .classes-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.classes .cls-wrap .classes-grid .class-card:hover .class-card-bg {
  transform: scale(1.06);
  filter: brightness(0.4);
}
.classes .cls-wrap .classes-grid .class-card:hover .class-card-content .class-desc {
  max-height: 400px;
}
.classes .cls-wrap .classes-grid .class-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: var(--r);
}
@media (max-width: 1024px) {
  .classes .cls-wrap .classes-grid .class-card {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .classes .cls-wrap .classes-grid .class-card {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .classes .cls-wrap .classes-grid .class-card {
    height: 280px;
  }
}
.classes .cls-wrap .classes-grid .class-card:nth-child(1) .class-card-bg {
  background-image: url(/images/classes/full_body.webp);
}
.classes .cls-wrap .classes-grid .class-card:nth-child(2) .class-card-bg {
  background-image: url(/images/classes/abs_and_glutes.webp);
}
.classes .cls-wrap .classes-grid .class-card:nth-child(3) .class-card-bg {
  background-image: url(/images/classes/stretch.webp);
}
.classes .cls-wrap .classes-grid .class-card:nth-child(4) .class-card-bg {
  background-image: url(/images/classes/advanced.webp);
}
.classes .cls-wrap .classes-grid .class-card:nth-child(5) .class-card-bg {
  background-image: url(/images/classes/beginner.webp);
}
.classes .cls-wrap .classes-grid .class-card .class-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.classes .cls-wrap .classes-grid .class-card .class-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, transparent 60%);
}
.classes .cls-wrap .classes-grid .class-card .class-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  transform: translateY(20px);
  transition: transform 0.4s;
}
.classes .cls-wrap .classes-grid .class-card .class-card-content .class-tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-tag {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-tag {
    font-size: 9px;
  }
}
.classes .cls-wrap .classes-grid .class-card .class-card-content .class-name {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 0;
  font-weight: inherit;
}
@media (max-width: 1024px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-name {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-name {
    font-size: 16px;
  }
}
.classes .cls-wrap .classes-grid .class-card .class-card-content .class-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
@media (max-width: 768px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-desc {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .classes .cls-wrap .classes-grid .class-card .class-card-content .class-desc {
    font-size: 11px;
  }
}

.coaches {
  padding: 0 16px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .coaches {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .coaches {
    padding: 0 8px;
  }
}

.coaches .wrap {
  padding: unset;
  max-width: 1920px;
  margin: 0 auto;
  background: unset;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .coaches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  padding: 12px 18px;
  background: #1a1612;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
}

.book-intro {
  max-width: 640px;
  margin: calc(var(--nav-h) + 24px) auto 16px;
  padding: 0 24px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(26, 22, 18, 0.75);
}

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

.coach-card {
  overflow: hidden;
  cursor: pointer;
}

.coach-desc-data {
  display: none;
}

.coach-photo {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.coach-photo img {
  transition: transform 0.5s;
}
.coach-photo .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000 0%, #000 0%, transparent 100%);
}
@media (max-width: 480px) {
  .coach-photo {
    border-radius: 12px;
  }
}

.coach-card:hover .coach-photo img {
  transform: scale(1.04);
}

.coach-info {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 18px 18px;
}
@media (max-width: 768px) {
  .coach-info {
    margin: 14px 14px;
  }
}
@media (max-width: 480px) {
  .coach-info {
    margin: 10px 10px;
  }
}

.coach-name {
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
}
@media (max-width: 1024px) {
  .coach-name {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .coach-name {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .coach-name {
    font-size: 16px;
  }
}

.coach-meta {
  font-size: 10px;
  color: var(--text);
  display: flex;
  gap: 6px;
  margin-top: 10px;
  display: none;
}
.coach-meta span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 10px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .coach-meta {
    margin-top: 6px;
    gap: 4px;
  }
  .coach-meta span {
    font-size: 12px;
    padding: 5px 7px;
  }
}
@media (max-width: 480px) {
  .coach-meta {
    gap: 3px;
  }
  .coach-meta span {
    font-size: 9px;
    padding: 4px 6px;
  }
}

.instagram {
  padding: 0 16px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .instagram {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .instagram {
    padding: 0 8px;
  }
}

.instagram .wrap {
  background: #99ad7a;
  border-radius: 16px;
  padding: 52px 48px 48px;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .instagram .wrap {
    padding: 40px 36px 36px;
  }
}
@media (max-width: 768px) {
  .instagram .wrap {
    padding: 32px 24px 24px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .instagram .wrap {
    padding: 20px 16px 16px;
    border-radius: 8px;
  }
}

.instagram .wrap .sec-title {
  color: #fff;
}
@media (max-width: 768px) {
  .instagram .wrap .sec-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .instagram .wrap .sec-title {
    font-size: 28px;
  }
}

.insta-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .insta-rows {
    gap: 6px;
    margin-bottom: 6px;
  }
}

.insta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .insta-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .insta-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .insta-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.insta-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.insta-cell:hover img {
  transform: scale(1.07);
}
@media (max-width: 480px) {
  .insta-cell {
    border-radius: 8px;
  }
}

.insta-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 13px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 0.12em;
  border-radius: var(--r);
  transition: all 0.2s;
}
.insta-cta:hover {
  background: #fff;
  border-color: #99ad7a;
  color: #99ad7a;
}
.insta-cta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .insta-cta {
    padding: 11px;
    font-size: 12px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .insta-cta {
    padding: 9px;
    font-size: 11px;
    margin-top: 14px;
  }
}

.cta {
  min-height: unset;
  padding: 0 16px;
  padding-bottom: 100px;
  background: var(--bg);
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .cta {
    padding: 0 12px;
    padding-bottom: 75px !important;
  }
}
@media (max-width: 480px) {
  .cta {
    padding: 0 8px;
  }
}

.cta-card {
  flex: 1;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-card {
    flex-direction: column-reverse;
    height: auto;
    max-height: unset;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .cta-card {
    border-radius: 8px;
  }
}

.cta-orb-1,
.cta-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-orb-1 {
  top: -180px;
  left: 0;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(153, 173, 122, 0.7) 0%, rgba(153, 173, 122, 0.25) 40%, transparent 65%);
  animation: orbA 9s ease-in-out infinite 1s;
}

.cta-orb-2 {
  bottom: -100px;
  left: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(153, 173, 122, 0.5) 0%, rgba(153, 173, 122, 0.25) 40%, transparent 65%);
  animation: orbA 7s ease-in-out infinite 2.5s;
}

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 52px 10px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-basis: 70%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .cta-left {
    padding: 30px 40px;
  }
}
@media (max-width: 768px) {
  .cta-left {
    padding: 24px 20px;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .cta-left {
    padding: 16px;
  }
}

.cta-title {
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: #1a1612;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(22px, 5vw, 40px);
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .cta-title {
    font-size: clamp(18px, 6vw, 28px);
    margin-bottom: 10px;
  }
}

.cta-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(26, 22, 18, 0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cta-sub {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cta-sub {
    font-size: 10px;
    margin-bottom: 14px;
  }
}

.cta-weeks {
  font-size: 16px;
  letter-spacing: 0.12em;
  font-weight: 300;
  color: rgba(26, 22, 18, 0.5);
}
@media (max-width: 768px) {
  .cta-weeks {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .cta-weeks {
    font-size: 10px;
  }
}

.cta-price {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0;
}
.cta-price span {
  font-size: 12px;
}
.cta-price span.price {
  background: #dcccac;
  color: #1a1612;
  font-weight: 500;
  padding: 8px 28px;
  border-radius: var(--r);
  width: fit-content;
}
.cta-price span.special {
  color: #dcccac;
  text-transform: uppercase;
  font-size: 10px;
}
@media (max-width: 768px) {
  .cta-price {
    margin: 8px 0;
  }
  .cta-price span {
    font-size: 11px;
  }
  .cta-price span.price {
    padding: 6px 20px;
  }
  .cta-price span.special {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .cta-price {
    margin: 6px 0;
  }
  .cta-price span {
    font-size: 10px;
  }
  .cta-price span.price {
    padding: 5px 14px;
  }
  .cta-price span.special {
    font-size: 8px;
  }
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 24px;
  border: 1px solid rgba(26, 22, 18, 0.15);
  color: rgba(26, 22, 18, 0.75);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  background: rgba(26, 22, 18, 0.04);
  border-radius: var(--r);
  transition: all 0.2s;
  width: 100%;
  margin-top: 16px;
}
.cta-btn:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
.cta-btn:hover svg {
  stroke: #fff;
}
@media (max-width: 768px) {
  .cta-btn {
    padding: 10px 16px;
    font-size: 12px;
    margin-top: 12px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .cta-btn {
    padding: 8px 12px;
    font-size: 10px;
    margin-top: 10px;
  }
}

.cta-right {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 0;
  flex-basis: 50%;
  z-index: 1;
}
.cta-right video {
  width: 100%;
}
.cta-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .cta-right {
    flex-basis: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
  }
  .cta-right img {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .cta-right {
    aspect-ratio: 4/3;
    margin-bottom: 8px;
  }
  .cta-right img {
    border-radius: 8px;
  }
}

.app-cta {
  min-height: unset;
  padding: 0 16px;
  background: var(--bg);
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .app-cta {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .app-cta {
    padding: 0 8px;
  }
}

.app-cta-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  justify-content: center;
  position: relative;
  aspect-ratio: 2/0.8;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .app-cta-card {
    aspect-ratio: 1.8/0.8;
  }
}
@media (max-width: 768px) {
  .app-cta-card {
    flex-direction: column-reverse;
    aspect-ratio: unset;
    height: auto;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .app-cta-card {
    border-radius: 8px;
  }
}

.app-cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 52px 10px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-basis: 65%;
}
.app-cta-right img {
  width: unset;
}
@media (max-width: 1024px) {
  .app-cta-right {
    padding: 30px 40px;
    flex-basis: 65%;
  }
}
@media (max-width: 768px) {
  .app-cta-right {
    padding: 24px 20px;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .app-cta-right {
    padding: 16px;
  }
}

.app-cta-title {
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: #1a1612;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .app-cta-title {
    font-size: clamp(22px, 5vw, 40px);
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .app-cta-title {
    font-size: clamp(18px, 6vw, 28px);
    margin-bottom: 10px;
  }
}

.app-cta-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(26, 22, 18, 0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .app-cta-sub {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .app-cta-sub {
    font-size: 10px;
    margin-bottom: 14px;
  }
}

.app-cta-weeks {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 300;
  color: rgba(26, 22, 18, 0.5);
}
@media (max-width: 768px) {
  .app-cta-weeks {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .app-cta-weeks {
    font-size: 9px;
  }
}

.app-cta-price {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0;
}
.app-cta-price span {
  font-size: 12px;
}
.app-cta-price span.price {
  background: #dcccac;
  color: #1a1612;
  font-weight: 500;
  padding: 8px 28px;
  border-radius: var(--r);
  width: fit-content;
}
.app-cta-price span.special {
  color: #dcccac;
  text-transform: uppercase;
  font-size: 10px;
}
@media (max-width: 768px) {
  .app-cta-price {
    margin: 8px 0;
  }
  .app-cta-price span {
    font-size: 11px;
  }
  .app-cta-price span.price {
    padding: 6px 20px;
  }
  .app-cta-price span.special {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .app-cta-price {
    margin: 6px 0;
  }
  .app-cta-price span {
    font-size: 10px;
  }
  .app-cta-price span.price {
    padding: 5px 14px;
  }
  .app-cta-price span.special {
    font-size: 8px;
  }
}

.app-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 24px;
  border: 1px solid rgba(26, 22, 18, 0.15);
  color: rgba(26, 22, 18, 0.75);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  background: rgba(26, 22, 18, 0.04);
  border-radius: var(--r);
  transition: all 0.2s;
  width: 100%;
  margin-top: 16px;
}
.app-cta-btn:hover {
  background: #99ad7a;
  border-color: #99ad7a;
  color: #fff;
}
.app-cta-btn:hover svg {
  stroke: #fff;
}
@media (max-width: 768px) {
  .app-cta-btn {
    padding: 10px 16px;
    font-size: 12px;
    margin-top: 12px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .app-cta-btn {
    padding: 8px 12px;
    font-size: 10px;
    margin-top: 10px;
  }
}

.app-cta-left {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.app-cta-left img {
  width: unset;
  margin: 0 auto;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .app-cta-left {
    flex-basis: 100%;
    aspect-ratio: 16/9;
  }
  .app-cta-left img {
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .app-cta-left {
    aspect-ratio: 4/3;
  }
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 26px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1024px) {
  footer {
    padding: 24px 36px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 16px;
    gap: 10px;
  }
}
footer a svg {
  height: 35px;
  width: auto;
}
@media (max-width: 768px) {
  footer a svg {
    height: 28px;
  }
}
@media (max-width: 480px) {
  footer a svg {
    height: 24px;
  }
}

.footer-copy {
  font-size: 14px;
  color: rgba(26, 22, 18, 0.35);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer-copy {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer-copy {
    font-size: 10px;
  }
}

.footer-icons {
  display: flex;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer-icons {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .footer-icons {
    gap: 8px;
  }
}
.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icons svg {
  width: 18px;
  height: 18px;
  stroke: rgba(26, 22, 18, 0.3);
  fill: none;
  stroke-width: 1.5;
  cursor: pointer;
  transition: stroke 0.2s;
}
.footer-icons svg:hover {
  stroke: rgba(26, 22, 18, 0.8);
}
@media (max-width: 768px) {
  .footer-icons svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .footer-icons svg {
    width: 12px;
    height: 12px;
  }
}

.coach-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 10, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.coach-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.coach-modal-panel {
  position: relative;
  width: min(820px, 94vw);
  max-height: 90vh;
}

.coach-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  z-index: 1;
}
.coach-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.coach-modal-close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.coach-modal-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 90vh;
}
@media (max-width: 768px) {
  .coach-modal-card {
    flex-direction: column;
    border-radius: 12px;
  }
}

.coach-modal-photo {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
.coach-modal-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 768px) {
  .coach-modal-photo {
    width: 100%;
    height: 240px;
  }
}
@media (max-width: 480px) {
  .coach-modal-photo {
    height: 200px;
  }
}

.coach-modal-info {
  flex: 1;
  padding: 32px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .coach-modal-info {
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .coach-modal-info {
    padding: 18px 16px;
    gap: 10px;
  }
}

.coach-modal-name {
  font-size: 26px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0;
}
@media (max-width: 480px) {
  .coach-modal-name {
    font-size: 22px;
  }
}

.coach-modal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 22, 18, 0.75);
  margin: 0;
}

.coach-modal-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  display: none;
}
.coach-modal-meta span {
  font-size: 10px;
  color: var(--black);
  border: 1px solid rgba(26, 22, 18, 0.2);
  padding: 9px 10px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .coach-modal-meta span {
    font-size: 12px;
    padding: 5px 7px;
  }
}

.loc-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.loc-overlay.open {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 768px) {
  .loc-overlay {
    align-items: flex-start;
    padding-top: 60px;
  }
}

.loc-panel {
  width: min(1060px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
}
@media (max-width: 768px) {
  .loc-panel {
    padding: 32px 20px;
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 480px) {
  .loc-panel {
    padding: 20px 16px;
  }
}

.loc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .loc-header {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .loc-header {
    margin-bottom: 16px;
  }
}

.loc-title {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .loc-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .loc-title {
    font-size: 20px;
  }
}

.loc-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.loc-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.loc-close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
@media (max-width: 480px) {
  .loc-close {
    width: 32px;
    height: 32px;
  }
  .loc-close svg {
    width: 12px;
    height: 12px;
  }
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .loc-grid {
    gap: 10px;
  }
}

.loc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .loc-card {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .loc-card {
    border-radius: 8px;
  }
}

.loc-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .loc-photo {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .loc-photo {
    height: 140px;
  }
}

.loc-info {
  height: 100%;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .loc-info {
    padding: 18px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .loc-info {
    padding: 14px;
  }
}

.loc-name {
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}
@media (max-width: 768px) {
  .loc-name {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .loc-name {
    font-size: 13px;
  }
}

.loc-row {
  display: flex;
  align-items: flex-start;
  flex: auto;
  gap: 10px;
}
.loc-row svg {
  width: 14px;
  height: 14px;
  stroke: rgba(26, 22, 18, 0.4);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-row span {
  font-size: 14px;
  color: rgba(26, 22, 18, 0.55);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .loc-row span {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .loc-row span {
    font-size: 11px;
  }
}

.loc-hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loc-hours-list span {
  font-size: 14px;
  color: rgba(26, 22, 18, 0.5);
}
@media (max-width: 768px) {
  .loc-hours-list span {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .loc-hours-list span {
    font-size: 11px;
  }
}

.loc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid rgba(26, 22, 18, 0.15);
  color: var(--black);
  background: unset;
  font-family: var(--ff);
  font-size: 14px;
  letter-spacing: 0.12em;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.loc-btn:hover {
  background: #99ad7a;
  color: #fff;
}
@media (max-width: 768px) {
  .loc-btn {
    font-size: 12px;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .loc-btn {
    font-size: 11px;
    padding: 6px;
  }
}

@media (max-width: 1200px) {
  .about .about-text-col {
    width: calc(50% - 10px);
  }
  .hero .hero-card {
    aspect-ratio: unset;
  }
  .hero .hero-card .hero-left {
    padding: 30px;
  }
}
/* 900px - Tablet adjustments */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  nav .nav-logo {
    position: relative;
    left: 0;
    transform: translateX(0);
  }
  nav .nav-logo svg {
    height: 30px;
  }
  nav .nav-left {
    display: none;
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero {
    padding: 72px 20px 20px;
  }
  .cta {
    padding: 0 20px;
  }
  .app-cta {
    padding: 0 20px;
  }
  .hero-title {
    font-size: clamp(32px, 4vw, 56px);
  }
  .cta-title {
    font-size: clamp(28px, 3.5vw, 48px);
  }
  .app-cta-title {
    font-size: clamp(28px, 3.5vw, 48px);
  }
  footer {
    padding: 32px 48px;
  }
  footer .footer-copy {
    font-size: 11px;
  }
}
/* 768px - Mobile adjustments */
@media (max-width: 768px) {
  /* Header */
  nav {
    padding: 0 16px;
    height: 48px;
  }
  nav .nav-left {
    display: none;
  }
  nav .nav-logo {
    position: static;
    transform: none;
  }
  nav .nav-logo svg {
    height: 24px;
  }
  nav .nav-right {
    display: none;
  }
  nav .nav-mobile {
    display: flex;
  }
  /* Hero */
  .hero {
    padding: 64px 16px 16px;
  }
  .hero .hero-carousel {
    position: relative;
    min-height: 400px;
    height: auto;
  }
  .hero .hero-card {
    position: relative;
    aspect-ratio: unset;
    flex-direction: column-reverse;
    height: auto;
  }
  .hero .hero-card .hero-orb-1, .hero .hero-card .hero-orb-2 {
    display: none;
  }
  .hero .hero-card .hero-left {
    padding: 20px;
    align-items: flex-start;
    gap: 20px;
  }
  .hero .hero-card .hero-left .hero-content {
    width: 100%;
    min-height: auto;
  }
  .hero .hero-card .hero-left .hero-actions {
    min-height: auto;
  }
  .hero .hero-card .hero-right {
    aspect-ratio: 1/1;
  }
  /* CTA */
  .cta {
    padding: 0 16px;
  }
  .cta .cta-card {
    aspect-ratio: unset;
    flex-direction: column-reverse;
  }
  .app-cta {
    padding: 0 16px;
  }
  .app-cta .app-cta-card {
    aspect-ratio: unset;
    flex-direction: column-reverse;
  }
  .hero-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .cta-title {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 14px;
  }
  .app-cta-title {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 13px;
  }
  .cta-sub {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .app-cta-sub {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .hero-weeks {
    font-size: 11px;
  }
  .cta-weeks {
    font-size: 11px;
  }
  .app-cta-weeks {
    font-size: 11px;
  }
  .hero-price {
    font-size: 13px;
  }
  .cta-price {
    font-size: 12px;
    padding: 6px 18px;
    margin-bottom: 24px;
  }
  .app-cta-price {
    font-size: 12px;
    padding: 6px 18px;
    margin-bottom: 24px;
  }
  .hero-btn {
    font-size: 12px;
    padding: 12px 18px;
  }
  .cta-btn {
    font-size: 11px;
    padding: 10px 16px;
  }
  .app-cta-btn {
    font-size: 11px;
    padding: 10px 16px;
  }
  /* About */
  .about .about-card {
    min-height: unset;
  }
  .about .about-text-col {
    padding: 36px 20px;
    width: 100%;
    top: unset;
  }
  .about .about-body {
    font-size: 12px;
  }
  .about .about-img {
    aspect-ratio: 4/8;
    position: relative;
  }
  /* Plans */
  .plans {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .plan {
    min-height: 120px;
    padding: 16px;
  }
  .plan .plan-name {
    font-size: clamp(18px, 2vw, 24px);
  }
  .plan .plan-badge {
    font-size: 13px;
    padding: 6px 16px;
  }
  .cta-right {
    aspect-ratio: 5/4;
  }
  .app-cta-right {
    flex-basis: unset;
  }
  .mem-cta {
    font-size: 12px;
    padding: 12px 18px;
  }
  .coaches-grid {
    gap: 10px;
  }
  /* Instagram */
  .instagram .insta-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram .wrap {
    padding: 36px 20px 32px;
  }
  /* Footer */
  footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .footer-copy {
    font-size: 10px;
  }
  footer .footer-icons svg {
    width: 16px;
    height: 16px;
  }
  /* Locations overlay */
  .loc-overlay .loc-panel {
    padding: 20px 16px;
  }
  .loc-overlay .loc-panel .loc-title {
    font-size: clamp(18px, 2vw, 24px);
  }
  .loc-overlay .loc-panel .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-overlay .loc-panel .loc-photo {
    height: 180px;
  }
}
/* 480px - Small mobile adjustments */
@media (max-width: 480px) {
  .wrap,
  .cls-wrap {
    padding: unset;
  }
  .hero .hero-carousel {
    min-height: 350px;
    height: auto;
  }
  .hero .hero-title {
    font-size: clamp(20px, 6vw, 36px);
  }
  .coaches .wrap .coaches-grid {
    gap: 7px;
  }
  .coaches .wrap .coaches-grid .coach-card .coach-photo .coach-info {
    margin: 12px 7px;
  }
  .coaches .wrap .coaches-grid .coach-card .coach-photo .coach-info .coach-name {
    font-size: 16px;
  }
  .coaches .wrap .coaches-grid .coach-card .coach-photo .coach-info .coach-meta {
    font-size: 14px;
  }
  .cta .cta-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  .app-cta .app-cta-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  .hero-price {
    font-size: 11px;
  }
  .cta-price {
    font-size: 10px;
    padding: 5px 14px;
  }
  .cta-alt-price {
    font-size: 10px;
    padding: 5px 14px;
  }
  .hero-btn {
    font-size: 10px;
  }
  .cta-btn {
    font-size: 9px;
    padding: 8px 14px;
  }
  /* Plans */
  .plans {
    grid-template-columns: 1fr;
  }
  .plan {
    min-height: 100px;
    padding: 14px;
  }
  .plan .plan-name {
    font-size: clamp(14px, 2.5vw, 18px);
  }
  .plan .plan-freq,
  .plan .plan-note {
    font-size: 10px;
  }
  .plan .plan-badge {
    font-size: 11px;
    padding: 5px 14px;
  }
  /* Classes */
  .classes .cls-grid-top,
  .classes .cls-grid-bot {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .classes .cls-card-wide {
    flex-direction: column;
  }
  .classes .cls-name {
    font-size: clamp(14px, 3.5vw, 16px);
  }
  .classes .cls-desc {
    font-size: 9px;
    line-height: 1.6;
  }
  .classes .cls-badge,
  .classes .cls-coming {
    font-size: 7px;
    padding: 10px 16px;
    margin-bottom: 10px;
  }
  .instagram .wrap {
    padding: 28px 16px 24px;
  }
  .instagram .insta-row {
    grid-template-columns: 1fr;
  }
  .instagram .insta-cta {
    font-size: 9px;
  }
  .about .about-text-col {
    padding: 24px 16px;
  }
  .about .about-body {
    font-size: 11px;
  }
  footer {
    padding: 20px 16px;
  }
  footer .footer-copy {
    font-size: 8px;
  }
  .loc-overlay .loc-panel {
    padding: 16px 14px;
  }
  .loc-overlay .loc-panel .loc-info {
    padding: 14px 12px 16px;
  }
}
@media (max-width: 600px) {
  .membership .wrap .sec-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
  }
  .membership .wrap .sec-head .sec-title {
    flex: 1;
    min-width: 0;
    padding: 10px 6px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom-width: 2px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .membership .wrap .sec-head .sec-title {
    font-size: 12px;
    padding: 8px 6px;
  }
}
section.membership, section.about, section.classes, section.coaches, section.instagram, section.app-cta, section.cta {
  padding-top: 100px;
}
@media (max-width: 768px) {
  section.membership, section.about, section.classes, section.coaches, section.instagram, section.app-cta, section.cta {
    padding-top: 75px;
  }
}
section.hero.hero--static {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  section.classes--offer, section.steps, section.testimonials {
    padding-top: 75px;
  }
}

.hero--static .hero-left .hero-dots {
  display: none;
}
.hero--static .hero-left .hero-actions-inner,
.hero--static .hero-left .hero-content {
  min-height: auto;
}
.hero--static .hero-right .hero-img {
  position: absolute;
  inset: 0;
}

.hero-plate {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 20px 22px;
  border-radius: var(--r);
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .hero-plate {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
}

.hero-plate-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-plate-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 400;
}
.hero-plate-badge--gold {
  background: #dcccac;
  color: #1a1612;
}

.hero-plate-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero-plate-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-plate-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-plate-addr {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.hero-plate-addr svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-plate-addr {
    white-space: normal;
  }
}

.classes--offer {
  padding-top: 100px;
}
.classes--offer .sec-head {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
.classes--offer .sec-head .sec-title {
  flex: 0 0 auto;
  max-width: 42%;
}
@media (max-width: 1024px) {
  .classes--offer .sec-head .sec-title {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .classes--offer .sec-head {
    flex-direction: column;
    gap: 16px;
  }
}
.classes--offer .offer-intro {
  flex: 1;
  max-width: 50%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 22, 18, 0.55);
  padding: 25px;
  border: 1px solid rgba(26, 22, 18, 0.15);
  border-radius: var(--r);
  margin: 0;
}
@media (max-width: 768px) {
  .classes--offer .offer-intro {
    max-width: 100%;
  }
}
.classes--offer .offer-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #99ad7a;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.classes--offer .cls-wrap .offer-flex {
  display: flex;
  width: 100%;
  gap: 14px;
}
@media (max-width: 768px) {
  .classes--offer .cls-wrap .offer-flex {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .classes--offer .cls-wrap .offer-flex {
    gap: 6px;
  }
}
.classes--offer .cls-wrap .offer-flex .class-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 520px;
  overflow: hidden;
  border-radius: var(--r);
}
@media (max-width: 1024px) {
  .classes--offer .cls-wrap .offer-flex .class-card {
    height: 480px;
  }
}
@media (max-width: 768px) {
  .classes--offer .cls-wrap .offer-flex .class-card {
    flex: 1 1 auto;
    height: 360px;
  }
}
@media (max-width: 480px) {
  .classes--offer .cls-wrap .offer-flex .class-card {
    height: 320px;
  }
}
.classes--offer .cls-wrap .offer-flex .class-card:hover .class-card-bg {
  transform: scale(1.06);
  filter: brightness(0.75);
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.35) 55%, transparent 100%);
  pointer-events: none;
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  transform: none;
  transition: transform 0.4s;
  color: #fff;
  z-index: 1;
}
@media (max-width: 768px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content {
    padding: 24px 16px;
  }
}
@media (max-width: 480px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content {
    padding: 20px 14px;
  }
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-tag {
  display: none;
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1024px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-name {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-name {
    font-size: 16px;
  }
}
.classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-top: 10px;
  max-height: none;
  opacity: 1;
  overflow: visible;
}
@media (max-width: 768px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-desc {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .classes--offer .cls-wrap .offer-flex .class-card .class-card-content .class-desc {
    font-size: 11px;
  }
}

.steps {
  padding: 100px 16px 0;
  background: var(--bg);
}
@media (max-width: 768px) {
  .steps {
    padding-top: 75px;
  }
}

.steps-wrap {
  max-width: 1920px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 20px;
  background-image: url(/images/IMG_9334.webp);
  background-size: cover;
  background-position: center;
}
.steps-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.52);
  z-index: 0;
}
@media (max-width: 768px) {
  .steps-wrap {
    padding: 48px 20px 32px;
    min-height: auto;
  }
}

.steps-title {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.steps-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-radius: var(--r);
  background: rgba(30, 28, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.steps-card-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: #1a1612;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.steps-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
@media (max-width: 768px) {
  .steps-actions {
    grid-template-columns: 1fr;
  }
}

.steps-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.steps-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.steps-btn--sand {
  background: #dcccac;
  color: #1a1612;
  border-color: rgba(26, 22, 18, 0.08);
}
.steps-btn--sand:hover {
  background: #cfc0a0;
}
.steps-btn--green {
  background: #99ad7a;
  color: #fff;
}
.steps-btn--green:hover {
  background: #8a9d6d;
}

.testimonials {
  padding: 100px 16px 0;
  background: var(--bg);
}
.testimonials .wrap {
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonials {
    padding-top: 75px;
  }
}

.testimonials-head {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 25px;
  border-radius: var(--r);
  background: #dcccac;
  color: #1a1612;
  margin-bottom: 16px;
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  position: relative;
  height: 520px;
  border-radius: var(--r);
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonial-card {
    height: 420px;
  }
}

.testimonial-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.testimonial-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.2) 55%, transparent 100%);
}

.testimonial-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
}

.testimonial-stars {
  color: #dcccac;
  font-size: 20px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.testimonial-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.testimonial-quote {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.studio-banner {
  padding: 100px 16px 80px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .studio-banner {
    padding-top: 75px;
    padding-bottom: 48px;
  }
}

.studio-banner-card {
  max-width: 1920px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(26, 22, 18, 0.08);
}
@media (max-width: 768px) {
  .studio-banner-card {
    min-height: 360px;
  }
}

.studio-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-position-y: calc(50% + 45px);
}
.studio-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0.35) 55%, transparent 100%);
}
@media (max-width: 768px) {
  .studio-banner-bg::after {
    background: rgba(10, 9, 8, 0.65);
  }
}

.studio-banner-content {
  position: relative;
  z-index: 1;
  padding: 56px 52px;
  max-width: 560px;
  color: #fff;
}
@media (max-width: 768px) {
  .studio-banner-content {
    padding: 32px 24px;
    max-width: 100%;
  }
}

.studio-banner-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.studio-banner-location {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  color: #99ad7a;
  margin-bottom: 24px;
  line-height: 1.15;
}

.studio-banner-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.studio-banner-text:last-child {
  margin-bottom: 0;
}

.callback-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.callback-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 768px) {
  .callback-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

.callback-panel {
  width: min(520px, 94vw);
  max-height: min(92dvh, 1040px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: var(--r);
  padding: 24px 24px 20px;
  color: #1a1612;
}
@media (max-width: 768px) {
  .callback-panel {
    width: 100%;
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px max(16px, env(safe-area-inset-bottom));
  }
}

.callback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.callback-title {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 300;
  color: #1a1612;
  letter-spacing: -0.01em;
}

.callback-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 22, 18, 0.06);
  border: 1px solid rgba(26, 22, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.callback-close:hover {
  background: rgba(26, 22, 18, 0.1);
}
.callback-close svg {
  width: 14px;
  height: 14px;
  stroke: #1a1612;
  fill: none;
  stroke-width: 2;
}

.callback-form-wrap {
  flex: 1;
  min-height: 0;
  height: min(72dvh, 900px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  background: rgba(26, 22, 18, 0.02);
}
@media (max-width: 768px) {
  .callback-form-wrap {
    height: min(78dvh, 900px);
  }
}
@media (max-width: 480px) {
  .callback-form-wrap {
    height: min(82dvh, 900px);
  }
}
.callback-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  height: 972px;
  border: none;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 768px) {
  .callback-form-wrap iframe {
    min-height: 480px;
  }
}

.callback-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 22, 18, 0.5);
}

.nav-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(20, 16, 10, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-menu-panel {
  position: fixed;
  top: calc(var(--nav-h) + var(--nav-menu-gap));
  right: var(--nav-menu-gap);
  left: unset;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: clamp(168px, 38vw, 220px);
  max-width: calc(100vw - var(--nav-menu-gap) * 2);
  max-height: calc(100vh - var(--nav-h) - var(--nav-menu-gap) * 2);
  height: fit-content;
  overflow-y: auto;
  padding: clamp(6px, 1.6vw, 10px);
  background: rgba(243, 240, 235, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(20, 16, 10, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-menu-overlay.open .nav-menu-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-menu-link {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(26, 22, 18, 0.65);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-menu-link:hover {
  background: rgba(26, 22, 18, 0.04);
  border-color: rgba(26, 22, 18, 0.08);
  color: #1a1612;
}

.nav-menu-btn {
  font-family: var(--ff);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

@media (max-width: 480px) {
  .nav-menu-link {
    padding: 9px 12px;
    font-size: 11px;
  }
}

/*# sourceMappingURL=style.css.map */
