/* ========================================================
   TOKENS & RESET
   ======================================================== */
:root {
  --bg: #050505;
  --text-primary: #ffffff;
  --text-secondary: #8a8a8a;
  --accent: #c8e600;
  --border: rgba(255, 255, 255, 0.15);
  --ease-editorial: cubic-bezier(0.22, 0.61, 0.36, 1);
  --max-width: 1600px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* Generic image-slot fallback: dark block with grayscale cover image when present */
.media-slot {
  background-color: #161616;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
}

/* ========================================================
   CUSTOM CURSOR
   ======================================================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-editorial), height 0.25s var(--ease-editorial);
  will-change: transform;
}

.cursor.is-hovering {
  width: 64px;
  height: 64px;
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* ========================================================
   PRELOADER
   ======================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader__line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.preloader__logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(48px, 11vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.preloader__logo-row {
  overflow: hidden;
}

.preloader__logo-word {
  display: inline-block;
  color: var(--text-primary);
  transform: translateY(110%);
}

.preloader__logo-word--accent {
  color: var(--accent);
}

.preloader__location {
  position: relative;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
}

.preloader__brand-logo {
  position: relative;
  margin-top: 32px;
  opacity: 0;
  transform: scale(0.8);
}

.preloader__brand-logo img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
}

.preloader.is-done {
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.nav {
  position: relative;
  z-index: 500;
  background: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

.nav__item--center {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__dot {
  color: var(--accent);
}

.text-accent {
  color: var(--accent);
}

.nav__menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.15em;
}

.nav__menu-icon {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  position: relative;
}

.nav__menu-icon::before,
.nav__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease-editorial);
}

.nav__menu-icon::before { top: -6px; }
.nav__menu-icon::after { top: 6px; }

.nav__menu-btn[aria-expanded="true"] .nav__menu-icon { background: transparent; }
.nav__menu-btn[aria-expanded="true"] .nav__menu-icon::before { transform: translateY(6px) rotate(45deg); }
.nav__menu-btn[aria-expanded="true"] .nav__menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

/* ========================================================
   MENU OVERLAY
   ======================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-editorial);
}

.menu-overlay.is-open {
  clip-path: inset(0 0 0% 0);
}

.menu-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.menu-overlay__link {
  font-size: clamp(32px, 7vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.3s var(--ease-editorial);
}

.menu-overlay__link:hover {
  color: var(--accent);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
}

.hero__text {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero__title {
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--accent);
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 32ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 999px;
  transition: background 0.4s var(--ease-editorial), color 0.4s var(--ease-editorial), border-color 0.4s var(--ease-editorial);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--solid {
  background: var(--accent);
  color: var(--bg);
}

.btn--solid:hover {
  background: var(--text-primary);
}

.hero__levels {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.hero__level-label {
  color: var(--text-secondary);
}

.hero__level {
  color: var(--text-secondary);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.hero__level--active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.hero__media-wrap {
  grid-column: 7 / 13;
  position: relative;
  height: 78vh;
}

.hero__media {
  position: absolute;
  top: -2%;
  right: 0;
  bottom: -9%;
  left: 0;
  height: 111%;
  border: 1px solid var(--border);
}

.hero__stats {
  position: absolute;
  right: -24px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(6px);
  padding: 28px 32px;
  border: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .hero__text,
  .hero__media-wrap {
    grid-column: auto;
    width: 100%;
  }

  .hero__media-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: 60vh;
    width: 100%;
  }

  .hero__stats {
    position: static;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ========================================================
   METHOD
   ======================================================== */
.method {
  padding: 160px 0;
}

.method__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.method__text-wrap {
  grid-column: 1 / 8;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.method__perspective {
  perspective: 1200px;
}

.method__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transform-style: preserve-3d;
  will-change: transform;
}

.method__copy {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 48ch;
}

.method__media {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
  height: 420px;
  border: 1px solid var(--border);
  align-self: start;
}

.method__timeline {
  grid-column: 1 / 8;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
}

.method__timeline-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.method__timeline-item:last-child {
  border-bottom: 1px solid var(--border);
}

.method__timeline-number {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.method__timeline-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.method__timeline-line {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0%;
  background: var(--accent);
}

@media (max-width: 900px) {
  .method__text-wrap,
  .method__media,
  .method__timeline {
    grid-column: 1 / -1;
  }

  .method__media {
    grid-row: auto;
    margin-top: 40px;
    height: 280px;
  }
}

/* ========================================================
   MARQUEE
   ======================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-primary);
  white-space: nowrap;
  padding: 0 28px;
}

.marquee__sep {
  color: var(--accent);
  font-size: clamp(24px, 4vw, 40px);
}

/* ========================================================
   CLASS TYPES
   ======================================================== */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.classes {
  padding: 140px 0;
}

.classes__title {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

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

.class-card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease-editorial), border-color 0.5s var(--ease-editorial);
}

.class-card:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

.class-card__media {
  height: 220px;
}

.class-card__title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.class-card__copy {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 1100px) {
  .classes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .classes__grid {
    grid-template-columns: 1fr;
  }
}

.classes__categories {
  margin-bottom: 64px;
}

.classes__categories .hero__levels {
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.category-panel__item {
  display: none;
  border: 1px solid var(--border);
  padding: 40px;
  gap: 40px;
  grid-template-columns: 1.2fr 1fr;
}

.category-panel__item.is-active {
  display: grid;
}

.category-panel__number {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.category-panel__hook {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.category-panel__copy {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 46ch;
}

.category-panel__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  align-content: start;
}

.category-panel__list li {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.category-panel__list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
}

@media (max-width: 900px) {
  .category-panel__item {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .category-panel__list {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   PLAYER PROGRESSION
   ======================================================== */
.progression {
  position: relative;
  height: 300vh;
}

.progression__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

.progression__eyebrow {
  margin-bottom: 12px;
}

.progression__levels {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progression__level {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.progression__level.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.progression__level-number {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.progression__level-name {
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.progression__level-copy {
  width: max-content;
  max-width: 48ch;
  color: var(--text-secondary);
  font-size: 15px;
}

.progression__indicator {
  margin-top: 48px;
  display: flex;
  gap: 12px;
}

.progression__indicator-step {
  width: 48px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.progression__indicator-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.progression__indicator-step.is-filled::after {
  transform: scaleX(1);
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials {
  --testimonial-height: 240px;
  padding: 140px 0;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.testimonials__heading {
  grid-column: 1 / 4;
}

.testimonials__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

.testimonials__viewport {
  grid-column: 5 / 13;
  position: relative;
  overflow: hidden;
  min-height: var(--testimonial-height);
}

.testimonials__list {
  position: relative;
  height: var(--testimonial-height);
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 100% 0 0);
}

.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.7s var(--ease-editorial), opacity 0.4s var(--ease-editorial);
}

.testimonial__avatar {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.testimonial__quote {
  grid-column: 2;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  max-width: 50ch;
}

.testimonial__name {
  grid-column: 2;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 8px;
}

.testimonial__role {
  grid-column: 2;
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonials__nav {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.4s var(--ease-editorial), color 0.4s var(--ease-editorial);
}

.testimonials__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .testimonials__heading,
  .testimonials__viewport {
    grid-column: 1 / -1;
  }

  .testimonials__viewport {
    margin-top: 40px;
  }
}

/* ========================================================
   RESERVAR TURNO
   ======================================================== */
.booking {
  padding: 140px 0;
}

.booking__header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.booking__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.booking__copy {
  color: var(--text-secondary);
  font-size: 16px;
}

.booking__calendar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  overflow: hidden;
}

.booking__calendar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.booking__calendar-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking__calendar-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.booking__calendar-embed {
  min-height: 600px;
}

.booking__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 40px;
}

.booking__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.booking__success h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.booking__success p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 360px;
}

/* ========================================================
   VIDEO SHOWCASE
   ======================================================== */
.video-showcase {
  padding: 140px 0;
}

.video-showcase__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 48px;
}

.video-showcase__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.video-showcase__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-showcase__poster {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.video-showcase__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-showcase__play svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  margin-left: 4px;
}

/* ========================================================
   FINAL CTA
   ======================================================== */
.cta {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cta__media {
  position: absolute;
  inset: 0;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.92) 85%);
}

.cta__content {
  position: relative;
  z-index: 1;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.cta__title {
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.cta__title-accent {
  color: var(--accent);
}

.cta__copy {
  color: var(--text-secondary);
  font-size: 16px;
}

.cta__location {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links__item {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: border-color 0.4s var(--ease-editorial), color 0.4s var(--ease-editorial);
}

.social-links__item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.social-links__item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========================================================
   WHATSAPP FLOATING BUTTON
   ======================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease-editorial), background 0.4s var(--ease-editorial);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5b;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ========================================================
   GLOBAL RESPONSIVE ADJUSTMENTS
   ======================================================== */
@media (max-width: 600px) {
  .container {
    padding: 0 28px;
  }

  .nav__item--center {
    display: none;
  }

  .method,
  .classes,
  .testimonials,
  .booking,
  .video-showcase {
    padding: 96px 0;
  }

  .progression {
    height: 240vh;
  }

  .progression__level-copy {
    font-size: 13px;
  }

  .booking__calendar-embed,
  .booking__success {
    min-height: 500px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (pointer: coarse) {
  .progression {
    height: auto;
    padding: 96px 0;
  }

  .progression__pin {
    position: static;
    height: auto;
    gap: 48px;
  }

  .progression__levels {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .progression__level {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .progression__indicator {
    display: none;
  }
}
