/* =============================================
   LOCAL FONTS
   ============================================= */
@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/bebas-neue-v16-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-v13-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-v13-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-v13-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-v13-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/barlow-v13-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/barlow-v13-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/barlow-v13-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   VISUALLY HIDDEN SEO H1
   ============================================= */
.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background-color: var(--fire);
  color: var(--light);
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --fire: #ff3a00;
  --fire-mid: #ff6b00;
  --gold: #d4af37;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --light: #f5f0e8;
  --grey: #888888;
  --font-display: "Bebas Neue", cursive;
  --font-body: "Barlow", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--fire);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--fire);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    top 0.15s ease-out,
    left 0.15s ease-out,
    width 0.4s,
    height 0.4s;
  opacity: 0.6;
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--fire);
  z-index: 10000;
  box-shadow: 0 0 8px var(--fire);
  width: 0%;
  transition: width 0.1s;
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 58, 0, 0.5);
  padding: 10px 16px;
  transition:
    padding 0.4s,
    box-shadow 0.4s;
  box-shadow:
    0 3px 20px rgba(255, 58, 0, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.6);
}
nav.scrolled {
  padding: 8px 16px;
  box-shadow:
    0 3px 28px rgba(255, 58, 0, 0.45),
    0 4px 32px rgba(0, 0, 0, 0.8);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 160px;
  height: auto;
  transition:
    filter 0.3s,
    transform 0.3s;
  filter: drop-shadow(0 0 0px var(--fire));
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 8px rgba(255, 58, 0, 0.6));
  transform: scale(1.03);
}
.nav-tagline {
  display: none;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  border-left: 2px solid var(--fire);
  padding-left: 12px;
  line-height: 1.2;
  opacity: 0.9;
}
.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--fire-mid));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--fire);
}
.nav-links a::before {
  content: "▸";
  color: var(--fire);
  font-size: 10px;
  margin-right: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.nav-links a:hover {
  color: var(--light);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.nav-cta {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--fire);
  padding: 10px 20px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-weight: 700;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s ease,
    box-shadow 0.35s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.nav-cta:hover::before {
  transform: translateX(0);
}
.nav-cta:hover {
  color: #0a0a0a;
  background: #e03000;
  box-shadow: 0 0 24px rgba(255, 58, 0, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 60px);
  letter-spacing: 4px;
  color: var(--light);
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
  transform: translateY(20px);
  opacity: 0;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a:hover {
  color: var(--fire);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition:
    color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.btn-primary {
  background: var(--fire);
  color: var(--dark);
}
.btn-outline {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--light);
}
.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.btn-primary::before {
  background: rgba(255, 255, 255, 0.22);
}
.btn-outline::before {
  background: rgba(245, 240, 232, 0.12);
}
.btn-primary:hover::before,
.btn-outline:hover::before {
  transform: translateX(0);
}
.btn-primary:hover {
  color: #0a0a0a;
  background: #e03000;
  box-shadow: 0 0 24px rgba(255, 58, 0, 0.6);
}
.btn-outline:hover {
  border-color: rgba(245, 240, 232, 0.6);
}
.btn-primary > *,
.btn-outline > * {
  position: relative;
  z-index: 2;
}

/* =============================================
   SHARED SECTION ELEMENTS
   ============================================= */
.section-label {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fire);
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--fire);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 72px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--light);
}
.section-title em {
  color: var(--fire);
  font-style: normal;
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: calc(100svh - 52px);
  min-height: 500px;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.025) 3px,
    rgba(0, 0, 0, 0.025) 4px
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
.hero-corner {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
}
.hero-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(255, 58, 0, 0.7);
  border-left: 2px solid rgba(255, 58, 0, 0.7);
}
.hero-corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(255, 58, 0, 0.7);
  border-right: 2px solid rgba(255, 58, 0, 0.7);
}
.hero-corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(255, 58, 0, 0.7);
  border-left: 2px solid rgba(255, 58, 0, 0.7);
}
.hero-corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(255, 58, 0, 0.7);
  border-right: 2px solid rgba(255, 58, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(14px, 4vw, 35px);
  letter-spacing: 2px;
  color: gold;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: clamp(10px, 3vw, 12px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fire);
  margin-top: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s forwards;
}
.hero-location-btn {
  position: absolute;
  top: 62px;
  left: 10px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--fire);
  border: none;
  padding: 9px 16px;
  text-decoration: none;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  overflow: hidden;
  white-space: nowrap;
}
.hero-location-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.hero-location-btn:hover::before {
  transform: translateX(0);
}
.hero-location-btn svg {
  position: relative;
  z-index: 2;
  stroke: #0a0a0a;
}

.hero-bottom-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  margin-top: 24px;
  z-index: 2;
}
.btn-mute-hero {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  padding: 11px 18px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  white-space: nowrap;
  transition:
    color 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.btn-mute-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff3a00;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.btn-mute-hero:hover::before {
  transform: translateX(0);
}
.btn-mute-hero:hover {
  color: #fff;
  border-color: #ff3a00;
  box-shadow: 0 0 20px rgba(255, 58, 0, 0.45);
}
.btn-mute-hero > * {
  position: relative;
  z-index: 2;
}

.btn-explore-hero {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--fire);
  border: 1.5px solid var(--fire);
  padding: 12px 22px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: box-shadow 0.25s;
}
.btn-explore-hero svg,
.btn-explore-hero span {
  position: relative;
  z-index: 2;
}
.exp-shimmer {
  position: absolute;
  inset: 0;
  background: #1a0800;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: var(--fire);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: clamp(13px, 4vw, 16px);
  letter-spacing: 4px;
  color: var(--dark);
  padding: 0 32px;
}
.ticker-dot {
  color: rgba(0, 0, 0, 0.3);
  padding: 0 8px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: clamp(80px, 12vw, 140px) 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.about-media {
  position: relative;
}
.about-video-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
}
.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--fire);
  padding: 20px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--dark);
  line-height: 1;
}
.about-badge .label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-body {
  font-size: clamp(15px, 3.5vw, 17px);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.stat-item {
  border-left: 2px solid var(--fire);
  padding-left: 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--light);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  background: var(--dark);
  padding: clamp(60px, 10vw, 120px) 0;
  overflow: hidden;
}
.gallery-header {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.gallery-track-wrap {
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}
.gallery-slide {
  flex-shrink: 0;
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark3);
  contain: layout style;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
}
.gallery-slide:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 58, 0, 0.3);
  z-index: 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   HORIZONTAL SCROLL TEXT
   ============================================= */
.hscroll-section {
  overflow: hidden;
  padding: 40px 0;
  background: var(--dark);
}
.hscroll-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}
.hscroll-word {
  font-family: var(--font-display);
  font-size: clamp(60px, 15vw, 120px);
  letter-spacing: 6px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.12);
}
.hscroll-word.filled {
  color: var(--fire);
  -webkit-text-stroke: 0px;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: var(--dark2);
  padding: clamp(80px, 12vw, 140px) 24px;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "FEAT";
  position: absolute;
  right: -40px;
  top: 20px;
  font-family: var(--font-display);
  font-size: clamp(120px, 30vw, 260px);
  color: rgba(255, 58, 0, 0.04);
  pointer-events: none;
  letter-spacing: 8px;
  white-space: nowrap;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.features-desc {
  font-size: clamp(15px, 3.5vw, 17px);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  max-width: 420px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--dark3);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.4s,
    transform 0.4s;
  cursor: default;
}
.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover {
  background: #1f1f1f;
  transform: translateY(-4px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0.4);
}
.feature-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255, 58, 0, 0.1);
  line-height: 1;
  transition: color 0.4s;
}
.feature-card:hover .feature-num {
  color: rgba(255, 58, 0, 0.2);
}
.feature-title {
  font-family: var(--font-cond);
  font-size: clamp(18px, 4vw, 22px);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
}

/* =============================================
   VIDEO BREAK
   ============================================= */
.video-section {
  position: relative;
  height: clamp(400px, 70vw, 700px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark3);
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.2);
  opacity: 0.5;
  transform: scale(0.6) translateY(60px);
  transition: transform 0.08s linear;
  will-change: transform;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4)
  );
}
.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.video-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 9vw, 90px);
  line-height: 0.9;
  letter-spacing: 3px;
  max-width: 900px;
}
.video-quote em {
  color: var(--fire);
  font-style: normal;
}

/* =============================================
   SERVICES / MEMBERSHIP PLANS
   ============================================= */
.services {
  padding: clamp(80px, 12vw, 140px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: padding 0.4s;
}
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark2);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.service-item:hover {
  padding-left: 32px;
}
.service-item:hover::before {
  transform: translateX(0);
}
.service-item > * {
  position: relative;
  z-index: 1;
}

.plan-item {
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  position: relative;
  overflow: hidden;
}
.plan-row {
  display: grid;
  grid-template-columns: auto 1fr auto 36px;
  align-items: center;
  gap: 20px;
  padding: 28px 20px;
  cursor: pointer;
  position: relative;
  transition: padding 0.4s;
}
.plan-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark2);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.plan-row:hover::before,
.plan-item.open .plan-row::before {
  transform: translateX(0);
}
.plan-row:hover,
.plan-item.open .plan-row {
  padding-left: 32px;
}
.plan-row > * {
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 22px);
  color: var(--fire);
  min-width: 48px;
}
.service-name {
  font-family: var(--font-cond);
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.service-sub {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.service-price {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 32px);
  color: var(--gold);
  text-align: right;
}
.service-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.plan-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.45);
  transition:
    transform 0.35s,
    border-color 0.3s,
    color 0.3s;
  flex-shrink: 0;
}
.plan-arrow svg {
  width: 10px;
  height: 10px;
}
.plan-item.open .plan-arrow {
  transform: rotate(180deg);
  border-color: var(--gold);
  color: var(--gold);
}

.plan-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.plan-item.open .plan-body {
  max-height: 220px;
}
.plan-inner {
  padding: 16px 20px 28px 88px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.plan-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.07);
  border-radius: 6px;
  padding: 14px 16px;
}
.plan-card-title {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 6px;
}
.plan-card-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.plan-card-note {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.3);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.services-list.stagger-children > .plan-item {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.services-list.stagger-children > .service-item {
  opacity: 1;
  transform: translateY(0);
  transition: padding 0.4s;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: clamp(80px, 12vw, 140px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-header {
  margin-bottom: 64px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}
.review-card {
  background: var(--dark2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(255, 58, 0, 0.08);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}
.review-text {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
  margin-bottom: 28px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fire);
  border: 1px solid rgba(255, 58, 0, 0.3);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.author-tag {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 300;
}
.review-card.featured {
  background: var(--fire);
}
.review-card.featured::before {
  color: rgba(0, 0, 0, 0.1);
}
.review-card.featured .review-text {
  color: rgba(0, 0, 0, 0.8);
}
.review-card.featured .author-name {
  color: var(--dark);
}
.review-card.featured .author-tag {
  color: rgba(0, 0, 0, 0.5);
}
.review-card.featured .author-avatar {
  background: rgba(0, 0, 0, 0.2);
  color: var(--light);
  border-color: rgba(0, 0, 0, 0.2);
}
.review-card.featured .stars {
  color: var(--dark);
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  background: var(--dark2);
  padding: clamp(80px, 12vw, 120px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(255, 58, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 13vw, 100px);
  line-height: 0.85;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.cta-title em {
  color: var(--fire);
  font-style: normal;
  display: block;
}
.cta-sub {
  font-size: clamp(15px, 3.5vw, 18px);
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-address {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 2px;
  font-family: var(--font-cond);
}
.cta-address span {
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) 24px 40px;
  border-top: 1px solid rgba(255, 58, 0, 0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.footer-logo {
  width: 170px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--light);
}
.timing li {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey); 
}
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.foot-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.foot-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
}
.foot-spacer {
  width: 180px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 1px;
}
.footer-bottom p span {
  color: var(--fire);
}
.dev-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0.65;
  width: 180px;

  transition: opacity 0.3s, transform 0.15s ease-out;
  will-change: transform;
}

.dev-credit:hover {
  opacity: 1;
}

.dev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid purple;
  flex-shrink: 0;

  transition: transform 0.2s ease-out;
}
.dev-credit span {
  font-size: 13px;
  color: white; 
  font-weight: 300;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.socials a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.socials-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.socials-phone svg {
  stroke: rgba(245, 240, 232, 0.7);
  transition: stroke 0.3s;
}
.socials-phone:hover svg {
  stroke: var(--fire);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-fab img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.d2 {
  transition-delay: 0.2s;
}
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* =============================================
   DIRECTOR SECTION
   ============================================= */
.director-section {
  background: var(--dark);
  padding: clamp(100px, 15vw, 180px) 24px clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.director-section::before {
  content: "KOSHA";
  position: absolute;
  right: -60px;
  bottom: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 220px);
  color: rgba(255, 58, 0, 0.03);
  pointer-events: none;
  letter-spacing: 8px;
  white-space: nowrap;
  line-height: 1;
}
.director-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.director-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 20px 44px 0;
}
.director-img-frame {
  position: relative;
  width: clamp(200px, 46vw, 320px);
  flex-shrink: 0;
}
.director-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 2/3;
  object-position: right center;
  filter: grayscale(15%) contrast(1.05);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
  mask-image: linear-gradient(to top, transparent 0%, black 20%);
}
.director-img-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: -14px;
  bottom: -14px;
  border: 1.5px solid rgba(255, 58, 0, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  z-index: 1;
  transition: border-color 0.4s;
  pointer-events: none;
}
.director-img-wrap:hover .director-img-accent {
  border-color: rgba(255, 58, 0, 0.85);
}
.director-badge {
  position: absolute;
  bottom: 14px;
  right: 0;
  background: var(--fire);
  padding: 14px 18px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  z-index: 10;
}
.director-badge-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--dark);
  line-height: 1;
}
.director-badge-lbl {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.3;
}
.director-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.director-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 80px);
  line-height: 0.88;
  letter-spacing: 2px;
  color: var(--light);
}
.director-name em {
  color: var(--fire);
  font-style: normal;
  display: block;
}
.director-title-tag {
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 400;
  margin-top: -8px;
}
.director-body {
  font-size: clamp(15px, 3.5vw, 17px);
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}
.director-quote {
  margin-top: 4px;
  padding: 20px 24px;
  border-left: 3px solid var(--fire);
  background: rgba(255, 58, 0, 0.06);
  font-family: var(--font-display);
  font-size: clamp(16px, 3.5vw, 22px);
  letter-spacing: 1px;
  color: var(--light);
  line-height: 1.4;
}
.dq-mark {
  color: var(--fire);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 4px;
}

/* =============================================
   PILATES SPOTLIGHT
   ============================================= */
.pilates-section {
  background: var(--dark2);
  padding: clamp(60px, 10vw, 140px) clamp(16px, 4vw, 24px);
  position: relative;
  overflow: hidden;
}
.pilates-section::before {
  content: "PILATES";
  position: absolute;
  right: -60px;
  top: 10px;
  font-family: var(--font-display);
  font-size: clamp(60px, 16vw, 200px);
  color: rgba(255, 58, 0, 0.04);
  pointer-events: none;
  letter-spacing: 8px;
  white-space: nowrap;
  z-index: 0;
}
.pilates-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pilates-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  isolation: isolate;
}
.pilates-text::before {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -30px;
  left: calc(-50vw + 50%);
  background-image: url("assets/pilates-bg.webp");
  background-size: cover;
  background-position: right center;
  z-index: -1;
  opacity: 0.18;
  -webkit-mask-image:
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 60%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 60%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-composite: intersect;
}
.pilates-body {
  font-size: clamp(14px, 3.5vw, 17px);
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}
.pilates-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ptag {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fire);
  border: 1px solid rgba(255, 58, 0, 0.35);
  padding: 5px 12px;
  background: rgba(255, 58, 0, 0.06);
}
.pilates-visual {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  width: 100%;
}
.pilates-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-width: 0;
}
.pilates-stat-card {
  background: var(--dark3);
  padding: clamp(20px, 4vw, 32px) clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    background 0.35s;
}
.pilates-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.pilates-stat-card:hover {
  transform: translateY(-4px);
  background: #222;
}
.pilates-stat-card:hover::after {
  transform: scaleX(1);
}
.pilates-stat-card.accent {
  background: rgba(255, 58, 0, 0.1);
  border: 1px solid rgba(255, 58, 0, 0.2);
}
.pilates-stat-card.accent:hover {
  background: rgba(255, 58, 0, 0.18);
}
.psc-icon {
  font-size: 26px;
  filter: grayscale(0.2);
}
.psc-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 32px);
  color: var(--light);
  line-height: 1;
}
.pilates-stat-card.accent .psc-num {
  color: var(--fire);
}
.psc-lbl {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 600;
}
.pilates-badge-strip {
  background: var(--fire);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.pilates-badge-strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: ticker 12s linear infinite;
  white-space: nowrap;
}
.pilates-badge-strip span {
  font-family: var(--font-display);
  font-size: clamp(10px, 2.5vw, 13px);
  letter-spacing: clamp(1px, 0.8vw, 3px);
  color: var(--dark);
}
.pilates-dot {
  color: rgba(0, 0, 0, 0.3) !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   MEDIA QUERIES
   ============================================= */
@media (hover: none) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  .gallery-slide:hover {
    transform: none;
    box-shadow: none;
  }
}
@media (min-width: 900px) {
  .nav-tagline {
    display: block;
  }
}
@media (min-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: flex;
  }
  .hero-location-btn {
    display: none;
  }
  .hero-corner {
    width: 36px;
    height: 36px;
  }
  .hero {
    margin-top: 0;
    height: 100svh;
    min-height: 600px;
  }
  .features-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 480px) {
  .hero-bottom-bar {
    gap: 12px;
    margin-top: 28px;
  }
  .btn-mute-hero {
    font-size: 12px;
    padding: 12px 22px;
  }
}
@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .about-badge {
    bottom: -30px;
    right: -30px;
  }
  .director-inner {
    grid-template-columns: 420px 1fr;
    gap: 80px;
  }
  .director-badge {
    bottom: 18px;
    right: 4px;
  }
  .pilates-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery-slide {
    width: clamp(160px, 60vw, 220px);
  }
  .gallery-track {
    gap: 10px;
  }
  .plan-inner {
    padding: 4px 16px 22px 16px;
  }
  .about,
  .features,
  .services,
  .reviews,
  .cta-section,
  .director-section,
  .pilates-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .director-inner {
    gap: 40px;
  }
  .director-img-wrap {
    padding: 0 20px 40px 0;
  }
  .director-img-frame {
    width: min(280px, 80vw);
  }
  .director-badge {
    bottom: 8px;
    right: 0;
    padding: 10px 14px;
  }
  .director-badge-num {
    font-size: 30px;
  }
  .director-name {
    font-size: clamp(38px, 10vw, 56px);
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-item {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 20px 12px;
  }
  .service-price {
    grid-column: 2;
    text-align: left;
    font-size: clamp(18px, 5vw, 24px);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .footer-inner {
    gap: 32px;
  }
  .hscroll-word {
    font-size: clamp(44px, 12vw, 80px);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .hero-sub {
    font-size: clamp(14px, 5vw, 24px);
  }
  .socials {
    gap: 20px;
  }
  .footer-bottom {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .pilates-card-grid {
    grid-template-columns: 1fr;
  }
  .pilates-stat-card {
    padding: 20px 16px;
  }
  .psc-num {
    font-size: 26px;
  }
  .plan-row {
    grid-template-columns: auto 1fr auto;
  }
  .plan-row .service-price {
    grid-column: 2;
    text-align: left;
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .whatsapp-fab {
    width: 46px;
    height: 46px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-fab img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 360px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .foot-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .foot-spacer {
    display: none;
  }
  .dev-credit {
    width: auto;
  }
  .foot-copy {
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-logo {
    margin: 0 auto 16px;
  }
  .footer-col ul {
    align-items: center;
  }
  .timing li {
    text-align: center;
  }
}