/* =====================================================
   TOKENS
===================================================== */
:root {
  --bg: #FFFFFF;
  --bg-subtle: #F9F9F9;
  --border: #EBEBEB;
  --text-dark: #1A1A1A;
  --text-mid: #5A5A5A;
  --text-light: #AAAAAA;
  --burgundy: #7A1E1E;
  --burg-hover: #921F1F;
  --burg-glow: rgba(122,30,30,0.12);

  --font-family: 'Montserrat', sans-serif;

  --max-w: 1180px;
  --pad-x: 24px;
  --section-gap: 60px;
  --radius: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
button { border: 0; background: none; cursor: pointer; font: inherit; }

/* =====================================================
   LAYOUT
===================================================== */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* =====================================================
   TYPE UTILITIES
===================================================== */
.display {
  font-family: var(--font-family);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.eyebrow {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.eyebrow--dark { color: var(--burgundy); }

.section-title {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--burgundy); }

.body-text {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
}
.body-text.sub { font-weight: 300; color: var(--text-light); }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);*/
  background: none !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }

.btn--fill {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn--fill:hover { background: var(--burg-hover); border-color: var(--burg-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(122,30,30,0.25); }

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn--outline:hover { background: var(--bg-subtle); border-color: var(--text-mid); transform: translateY(-2px); }

.btn--price {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn--price:hover { background: #fff; color: var(--burgundy); border-color: #fff; transform: translateY(-2px); }

.btn--ghost-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light:hover { background: #fff; color: var(--burgundy); border-color: #fff; transform: translateY(-2px); }

.btn--lg { height: 56px; padding: 0 36px; font-size: 0.7rem; }
.btn--sm { height: 40px; padding: 0 20px; font-size: 0.55rem; }

.btn .arrow { transition: transform 0.3s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================
   REVEAL ANIMATION
===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.26s; }
[data-reveal-delay="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =====================================================
   GRAIN TEXTURE
===================================================== */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 16px 16px 0 16px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,24,0.7) 0%, rgba(28,26,24,0.3) 50%, rgba(28,26,24,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__eyebrow {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease both;
}
.hero__title {
  font-family: var(--font-family);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  max-width: 860px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero__title .accent {
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.hero__sub {
  margin-top: 22px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; margin: 12px 12px 0 12px; }
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

/* =====================================================
   MARQUEE STRIP
===================================================== */
.marquee-wrap {
  background: var(--burgundy);
  overflow: hidden;
  position: relative;
  z-index: 3;
  height: 52px;
  display: flex;
  align-items: center;
  border-radius: 0 0 var(--radius) var(--radius);
  margin: -40px 16px 16px 16px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--burgundy), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(270deg, var(--burgundy), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  flex-shrink: 0;
}

.marquee-text {
  font-family: var(--font-family);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-text strong { color: #ffd4a8; font-weight: 700; }

.marquee-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: #ffd4a8;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .marquee-wrap { margin: -30px 12px 12px 12px; height: 44px; }
  .marquee-text { font-size: 9px; }
  .marquee-item { padding: 0 16px; gap: 10px; }
}

/* =====================================================
   SECTION 1: CLASS FORMATS
===================================================== */
.class-formats {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.class-formats__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.class-formats__head .section-title { margin-top: 14px; }

.class-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px 28px;
  color: #fff;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border: 1px solid var(--border);
}
.format-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(28,26,24,0.15);
}

.format-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.format-card:hover .format-card__bg { transform: scale(1.05); }

.format-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,24,0.1) 0%, rgba(28,26,24,0.75) 100%);
  z-index: 1;
}

.format-card__content {
  position: relative;
  z-index: 2;
}
.format-card__content a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 12px;
  transition: color 0.25s;
}
.format-card__content a:hover { color: #ffd4a8; }

.format-card__top-tag {
  position: absolute;
  top: 24px;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd4a8;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.05);
  z-index: 2;
}

.format-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}

.format-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
  min-height: 70px;
}

/* Card backgrounds */
.format-card--booty .format-card__bg { background-image: url('https://picsum.photos/id/1015/800/1000'); }
.format-card--sculpt .format-card__bg { background-image: url('https://picsum.photos/id/1043/800/1000'); }
.format-card--hot .format-card__bg { background-image: url('https://picsum.photos/id/1041/800/1000'); }

@media (max-width: 860px) {
  .class-formats__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .format-card { min-height: 320px; }
}
@media (max-width: 600px) {
  .format-card { padding: 24px 20px 20px; min-height: 280px; }
}

/* =====================================================
   SECTION 2: BENEFITS
===================================================== */
.benefits {
  padding-block: var(--section-gap);
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 16px;
}

.benefits .wrap { position: relative; z-index: 1; }
.benefits .eyebrow { color: var(--burgundy); }

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
  margin-top: 32px;
}

.benefits__heading {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
}
.benefits__heading em { font-style: normal; color: var(--burgundy); }

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
}
.benefit-item:first-child { border-top: 1px solid var(--border); }

.benefit-item__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--burg-glow);
  border: 1px solid rgba(122,30,30,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--burgundy);
}
.benefit-item__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .benefits { margin: 0 12px; padding: 40px 20px; }
  .benefits__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================
   SECTION 3: PRICING
===================================================== */
.pricing {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.pricing__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.pricing__head .section-title { margin-top: 14px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease), border-color 0.35s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px rgba(28,26,24,0.08);
  border-color: var(--burgundy);
}

.pricing-card--featured {
  border-color: var(--burgundy);
  background: var(--bg-subtle);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.pricing-card__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.pricing-card__price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 6px 0 2px;
  letter-spacing: -0.02em;
}
.pricing-card__price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__note {
  font-size: 0.6rem;
  color: var(--text-light);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
}

/* =====================================================
   SECTION 4: COMMUNITY
===================================================== */
.community {
  padding-block: var(--section-gap);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 16px;
}

.community .wrap { padding: 0 24px; }

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.community__image img {
  width: 100%;
  aspect-ratio: 5/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.community__image:hover img { transform: scale(1.04); }

.community__heading {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-top: 14px;
}
.community__heading em { font-style: normal; color: var(--burgundy); }

.community__body {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
}
.community__body + .community__body { margin-top: 12px; }

@media (max-width: 860px) {
  .community { margin: 0 12px; padding: 40px 0; }
  .community__grid { grid-template-columns: 1fr; gap: 32px; }
  .community .wrap { padding: 0 20px; }
}

/* =====================================================
   SECTION 5: GET IN TOUCH
===================================================== */
.get-in-touch {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.get-in-touch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.get-in-touch__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.get-in-touch__heading {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-top: 14px;
}
.get-in-touch__heading em { font-style: normal; color: var(--burgundy); }

.get-in-touch__body {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 18px;
  max-width: 420px;
}

.get-in-touch__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.get-in-touch__map-social {
  display: flex;
  gap: 12px;
}

.get-in-touch__map-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.get-in-touch__map-social a:hover {
  transform: translateY(-3px);
  border-color: var(--burgundy);
  color: var(--burgundy);
  box-shadow: 0 4px 16px var(--burg-glow);
}
.get-in-touch__map-social a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.get-in-touch__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  position: relative;
}

.get-in-touch__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.get-in-touch__map-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 16px;
}

.get-in-touch__map-brand h3 {
  margin: 0;
  color: var(--burgundy);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.get-in-touch__map-brand p {
  color: var(--text-light);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.get-in-touch__map-frame {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}
.get-in-touch__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.get-in-touch__map-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
}
.get-in-touch__map-footer span:last-child { line-height: 1.8; }

@media (max-width: 860px) {
  .get-in-touch__grid { grid-template-columns: 1fr; gap: 40px; }
  .get-in-touch__map { min-height: 280px; }
  .get-in-touch__map-frame { height: 240px; }
}

/* =====================================================
   SCROLLBAR
===================================================== */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg-subtle); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 9px; border: 2px solid var(--bg-subtle); }
::-webkit-scrollbar-thumb:hover { background: var(--burg-hover); }
::selection { background: var(--burgundy); color: #fff; }