/* =============================================
   THE LINE SPORTS CLUB — Premium Landing Page
   ============================================= */

/* --- CSS Variables — Luxury Design System --- */
:root {
  --black: #01040a;
  --dark: #020711;
  --dark-2: #06111f;
  --dark-3: #0a1828;
  --navy: #071b2d;
  --cream: #f3efe7;
  --cream-2: #e8e1d5;
  --white: #f8f6f0;
  --muted: #a6adb8;
  --muted-dark: #5d6470;
  --accent: #f8f6f0;
  --accent-light: #ffffff;
  --accent-soft: rgba(248, 246, 240, 0.45);
  --line: rgba(248, 246, 240, 0.18);
  --glass: rgba(255, 255, 255, 0.045);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.7s var(--ease);
  --container: 1440px;
  --font: 'Montserrat', 'Inter', sans-serif;
  --shadow-card: 0 30px 90px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 48px rgba(2, 7, 17, 0.14);
  --shadow-glow: 0 8px 48px rgba(248, 246, 240, 0.1);
  /* Legacy aliases — mapped to neutral accent (no gold) */
  --dark-4: var(--navy);
  --gold: var(--accent);
  --gold-light: var(--accent-light);
  --gold-soft: var(--accent-soft);
  --gold-border: var(--line);
  --gold-border-hover: rgba(248, 246, 240, 0.55);
  --text-dark: #111827;
  --bg-dark: var(--dark);
  --bg-dark-2: var(--dark-3);
  --bg-dark-3: var(--navy);
  --light: var(--cream);
  --gray: var(--muted);
  --gray-dark: var(--muted-dark);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at 20% 0%, rgba(248, 246, 240, 0.04), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(16, 54, 88, 0.25), transparent 35%),
    var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(248, 246, 240, 0.22);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(248, 246, 240, 0.35), var(--dark-3));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(248, 246, 240, 0.55);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* --- Buttons & Links --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 242, 236, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-dark {
  border-color: rgba(2, 8, 18, 0.3);
  color: var(--bg-dark);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  border: 1px solid rgba(245, 242, 236, 0.35);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 4px;
}

.link-arrow-dark {
  color: var(--bg-dark);
  border-color: rgba(2, 8, 18, 0.2);
}

.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.link-arrow-dark:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(6px);
}

.marker-num {
  color: var(--gold);
}

/* --- Section Markers --- */
.section-marker {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.marker-num {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 1;
}

.marker-line {
  width: 1px;
  height: 60px;
  background: var(--gold-border);
  margin-top: 4px;
}

.section-marker-dark .marker-num {
  color: var(--bg-dark);
  opacity: 0.35;
}

.section-marker-dark .marker-line {
  background: var(--gold-border);
}

/* --- Logo --- */
.logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  background: transparent;
}

.logo-footer .logo-img {
  height: 44px;
  max-width: 240px;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.logo-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-border);
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
}

/* --- Active Nav Link --- */
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

/* --- Service card as link --- */
a.service-card {
  display: block;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 36px 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(2, 7, 17, 0.98);
  background-image:
    radial-gradient(circle at 90% 0%, rgba(20, 68, 100, 0.35), transparent 38%),
    linear-gradient(180deg, rgba(2, 7, 17, 0.99) 0%, rgba(6, 17, 31, 1) 100%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.75);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.hamburger span {
  background: var(--white);
}

.mobile-menu {
  display: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  min-width: 0;
  gap: 12px;
}

.logo {
  justify-self: start;
  min-width: 0;
  max-width: 100%;
}

.nav {
  justify-self: center;
}

.btn-header {
  justify-self: end;
  padding: 14px 28px;
  font-size: 0.65rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-dark);
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
}

.hero-bg.is-slow-connection {
  background:
    url('images/hero-poster.webp') center center / cover no-repeat,
    var(--bg-dark);
}

.hero-bg.is-slow-connection .hero-video {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.hero-bg.is-slow-connection.is-video-ready .hero-video {
  opacity: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(2, 8, 18, 0.92) 0%, rgba(2, 8, 18, 0.6) 45%, rgba(2, 8, 18, 0.35) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(248, 246, 240, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-vertical-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.3);
  white-space: nowrap;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding-top: 120px;
  gap: 40px;
}

.hero-left {
  max-width: 640px;
}

.hero-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero-title-main {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title-sub {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.85);
  margin-top: 8px;
}

.hero-tagline {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

.btn-hero {
  margin-top: 8px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hero-athlete {
  width: 100%;
  max-width: 480px;
  height: 580px;
  background:
    linear-gradient(to top, rgba(2, 8, 18, 0.9) 0%, rgba(2, 8, 18, 0.3) 50%, transparent 100%),
    linear-gradient(135deg, #0a1524 0%, #06111f 50%, #020812 100%);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.hero-athlete::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(2, 8, 18, 0.8) 100%);
}

.slider-num {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-features {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gold-border);
  background: rgba(2, 8, 18, 0.7);
  backdrop-filter: blur(8px);
}

.feature-item:hover {
  background: rgba(248, 246, 240, 0.05);
}

.feature-icon {
  color: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--gold-border);
  transition: var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(248, 246, 240, 0.05);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.section-light {
  background: var(--light);
  color: var(--bg-dark);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
}

.about {
  padding: 120px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.about-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-desc {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray-dark);
  max-width: 360px;
  margin-bottom: 32px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  border: 1px solid rgba(2, 8, 18, 0.1);
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}

.about-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(2, 8, 18, 0.08);
}

.about-card-img {
  height: 200px;
  background:
    linear-gradient(to bottom, rgba(2, 8, 18, 0.3), rgba(2, 8, 18, 0.7)),
    linear-gradient(135deg, #0a1524, #06111f);
  /* background-image: url('images/about-discipline.jpg'); */
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.35);
}

.about-card-img-2 {
  background:
    linear-gradient(to bottom, rgba(2, 8, 18, 0.3), rgba(2, 8, 18, 0.7)),
    linear-gradient(135deg, #06111f, #0a1524);
  /* background-image: url('images/about-focus.jpg'); */
}

.about-card-img-3 {
  background:
    linear-gradient(to bottom, rgba(2, 8, 18, 0.3), rgba(2, 8, 18, 0.7)),
    linear-gradient(135deg, #020812, #0a1524);
  /* background-image: url('images/about-consistency.jpg'); */
}

.about-card-body {
  padding: 24px 20px 28px;
}

.card-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 120px 0;
  overflow: hidden;
}

.services-watermark {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 236, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.services-dots {
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--gold-border) 1px, transparent 1px);
  background-size: 8px 8px;
  margin-bottom: 32px;
  opacity: 0.6;
}

.btn-services {
  margin-top: 8px;
}

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

.service-card {
  position: relative;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 18, 0.95) 0%, rgba(2, 8, 18, 0.5) 50%, rgba(2, 8, 18, 0.3) 100%);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-img-1 {
  background:
    linear-gradient(135deg, #0a1524, #06111f);
  /* background-image: url('images/service-personal.jpg'); */
}

.service-card-img-2 {
  background:
    linear-gradient(135deg, #06111f, #020812);
  /* background-image: url('images/service-club.jpg'); */
}

.service-card-img-3 {
  background:
    linear-gradient(135deg, #0a1524, #020812);
  /* background-image: url('images/service-performance.jpg'); */
}

.service-card-img-4 {
  background:
    linear-gradient(135deg, #06111f, #0a1524);
  /* background-image: url('images/service-packages.jpg'); */
}

.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 320px;
  padding: 28px 24px;
}

.service-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 90%;
}

.service-arrow {
  position: absolute;
  bottom: 28px;
  right: 24px;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
}

/* =============================================
   MEMBERSHIP SECTION
   ============================================= */
.membership {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.topo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q50 80 100 100 T200 100 M0 60 Q50 40 100 60 T200 60 M0 140 Q50 120 100 140 T200 140' fill='none' stroke='%23020812' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.membership-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.membership-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.membership-sub {
  font-size: 0.8rem;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 280px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  border: 1px solid var(--gold-border);
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--bg-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2, 8, 18, 0.08);
}

.package-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.package-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(2, 8, 18, 0.08);
}

.package-features {
  flex: 1;
  margin-bottom: 24px;
}

.package-features li {
  font-size: 0.75rem;
  color: var(--gray-dark);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.package-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-arc {
  position: absolute;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}

.cta-arc-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: 10%;
  opacity: 0.3;
}

.cta-arc-2 {
  width: 800px;
  height: 800px;
  top: -300px;
  right: 5%;
  opacity: 0.2;
}

.cta-arc-3 {
  width: 1000px;
  height: 1000px;
  top: -400px;
  right: 0;
  opacity: 0.1;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 320px;
}

.cta-athlete {
  width: 100%;
  height: 420px;
  background-color: #dcdcdc;
  position: relative;
  overflow: hidden;
}

.cta-athlete::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(248, 246, 240, 0.08) 0%, transparent 52%),
    linear-gradient(to top, rgba(1, 4, 10, 0.12) 0%, transparent 58%);
  pointer-events: none;
}

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

.cta-values li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-values li:first-child {
  border-top: 1px solid var(--gold-border);
}

.value-name {
  color: var(--white);
}

.value-num {
  color: var(--gold);
  font-weight: 400;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark-2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--gold-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr 1fr;
  gap: 40px;
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.footer-motto {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(248, 246, 240, 0.72);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 22rem;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.map-placeholder {
  width: 100%;
  height: 180px;
  background: var(--bg-dark-3);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.logo-footer .logo-main {
  font-size: 1rem;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 12px;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px 0 0 0;
  box-shadow: 0 8px 24px rgba(2, 8, 18, 0.18);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.back-to-top-icon-light {
  display: none;
}

.back-to-top-icon-dark {
  display: block;
}

.back-to-top.on-light .back-to-top-icon-light {
  display: block;
}

.back-to-top.on-light .back-to-top-icon-dark {
  display: none;
}

.back-to-top:hover .back-to-top-icon {
  box-shadow: 0 12px 32px rgba(2, 8, 18, 0.24);
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .container {
    width: 100%;
    padding-inline: clamp(20px, 4vw, 28px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-athlete {
    max-width: 100%;
    height: 400px;
  }

  .hero-slider {
    right: 10px;
  }

  .hero-vertical-text {
    display: none;
  }

  .hero-features {
    display: none !important;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2) {
    border-right: none;
  }

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-top: 1px solid var(--gold-border);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-watermark {
    font-size: 8rem;
    top: 20px;
    transform: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-athlete {
    height: 320px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-map {
    grid-column: span 2;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header {
    padding: 22px 0;
  }

  .header.scrolled {
    padding: 16px 0;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .logo-img {
    height: 34px;
    max-width: 180px;
  }

  .logo-footer .logo-img {
    height: 36px;
    max-width: 190px;
  }

  .hero-title-main {
    letter-spacing: 0.1em;
  }

  .hero-title-sub {
    letter-spacing: 0.2em;
  }

  .hero-features {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .about,
  .services,
  .membership,
  .cta {
    padding: 80px 0;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-map {
    grid-column: span 1;
  }

  .back-to-top {
    right: 16px;
    bottom: 90px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* Small Mobile — 480px */
@media (max-width: 480px) {
  .hero-athlete {
    height: 300px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card-content {
    min-height: 280px;
  }

  .cta-athlete {
    height: 260px;
  }
}

/* =============================================
   INNER PAGES — Shared Components
   ============================================= */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 8, 18, 0.82) 0%, rgba(2, 8, 18, 0.55) 100%);
}

.page-hero-bg-club {
  background:
    linear-gradient(135deg, #020812, #06111f, #0a1524);
  /* background-image: url('images/club-hero.jpg'); */
}

.page-hero-bg-pt {
  background:
    linear-gradient(135deg, #0a1524, #020812, #06111f);
}

.page-hero-bg-perf {
  background:
    linear-gradient(135deg, #0a1524, #020812, #06111f);
  /* background-image: url('images/perf-hero.jpg'); */
}

.page-hero-bg-packages {
  background:
    linear-gradient(135deg, var(--black) 0%, var(--dark-2) 45%, var(--navy) 100%);
}

.page-hero-bg-packages::before {
  background: linear-gradient(to right, rgba(1, 4, 10, 0.9) 0%, rgba(2, 7, 17, 0.55) 100%);
}

.page-hero-bg-contact {
  background:
    linear-gradient(135deg, #020812, #0a1524);
  /* background-image: url('images/contact-hero.jpg'); */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(248, 246, 240, 0.06) 0%, transparent 55%);
  z-index: 1;
}

.page-hero-overlay-light {
  background: none;
}

.page-hero-vertical {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  z-index: 2;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.page-hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}

.page-hero-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
}

/* Light hero variant (packages page) */
.page-hero-inner-dark .marker-num,
.page-hero-label-dark {
  color: var(--bg-dark);
  opacity: 0.5;
}

.page-hero-label-dark {
  opacity: 1;
  color: var(--navy);
}

.page-hero-title-dark {
  color: var(--bg-dark);
}

.page-hero-desc-dark {
  color: var(--gray);
}

.page-hero-light .page-hero-vertical {
  color: rgba(2, 8, 18, 0.15);
}

/* Page Sections */
.page-section {
  padding: 100px 0;
  position: relative;
}

.page-section-header {
  margin-bottom: 48px;
}

.page-section-header-dark .page-section-title {
  margin-bottom: 0;
}

.page-section-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-section-title-light {
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-section-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--gray-dark);
  max-width: 440px;
  margin-bottom: 32px;
}

.section-dark .page-section-desc {
  color: var(--gray);
}

.page-section-sub {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Content Split */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-split-reverse {
  direction: rtl;
}

.content-split-reverse > * {
  direction: ltr;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(2, 8, 18, 0.1);
}

.info-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 24px;
  border: none;
  border-bottom: 1px solid rgba(2, 8, 18, 0.1);
  background: transparent;
}

.info-list-item:last-child {
  border-bottom: none;
}

.info-list-num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2.25rem;
  padding-top: 2px;
}

.info-list-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-list-item p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Zone Cards */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zone-card {
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.zone-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.zone-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.4);
}

.zone-img-1 { background: linear-gradient(135deg, #0a1524, #06111f); }
.zone-img-2 { background: linear-gradient(135deg, #06111f, #020812); }
.zone-img-3 { background: linear-gradient(135deg, #0a1524, #020812); }

.zone-card-body {
  padding: 24px 20px 28px;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(2, 8, 18, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(2, 8, 18, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  border: 1px solid var(--gold-border);
  padding: 32px 24px;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--gold);
  background: rgba(2, 8, 18, 0.04);
}

.process-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-card {
  border: 1px solid var(--gold-border);
  padding: 32px 28px;
  transition: var(--transition);
}

.program-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.program-card-light {
  border-color: rgba(2, 8, 18, 0.1);
  background: var(--white);
}

.program-card-light:hover {
  border-color: var(--gold);
}

/* Method Grid */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.method-card {
  border-left: 1px solid var(--gold-border);
  padding: 24px 28px;
  transition: var(--transition);
}

.method-card:hover {
  border-left-color: var(--gold);
  padding-left: 32px;
}

.method-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.method-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Feature Bullets */
.feature-bullets {
  margin-top: 24px;
}

.feature-bullets li {
  font-size: 0.78rem;
  color: var(--gray-dark);
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(2, 8, 18, 0.08);
}

.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Page Image */
.page-img-tall {
  height: 420px;
  width: 100%;
}

.page-personal-training .pt-coach-photo {
  height: 420px;
  padding: 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.page-personal-training .pt-coach-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-personal-training .pt-coach-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.06), rgba(2, 8, 18, 0.28));
  pointer-events: none;
}

.page-performance .page-performance-photo {
  height: 420px;
  padding: 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(2, 8, 18, 0.08);
  box-shadow: 0 16px 48px rgba(7, 27, 45, 0.1);
}

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

.page-performance .page-performance-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.04), rgba(2, 8, 18, 0.22));
  pointer-events: none;
}

.page-performance .section-dark .method-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-left: 1px solid rgba(185, 155, 99, 0.35);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-performance .section-dark .method-card:hover {
  background: #fff;
  border-left-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.page-performance .section-dark .method-card h3 {
  color: var(--text-dark);
}

.page-performance .section-dark .method-card p {
  color: var(--muted-dark);
}

.page-performance .section-dark .method-num {
  color: var(--navy);
  opacity: 0.7;
}

/* Page CTA */
.page-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-cta-sub {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-cta-title-dark {
  color: var(--bg-dark);
}

.page-cta-sub-dark {
  color: var(--gray-dark);
}

.cta-values-inline {
  display: flex;
  gap: 32px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.cta-values-inline strong {
  color: var(--gold);
  font-weight: 400;
  margin-left: 6px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--gold-border);
}

.benefit-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--gray);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-item {
  border: 1px solid rgba(2, 8, 18, 0.1);
  background: var(--white);
  padding: 28px 24px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Package page extras */
.membership-page {
  display: block;
}

.membership-grid-full {
  grid-template-columns: repeat(4, 1fr);
}

.package-card-featured {
  border-color: rgba(248, 246, 240, 0.35);
  position: relative;
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  margin: 32px 0;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(2, 8, 18, 0.08);
}

.contact-detail-item:first-child {
  border-top: 1px solid rgba(2, 8, 18, 0.08);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

.contact-detail-item a:hover {
  color: var(--gold);
}

.contact-hours {
  border: 1px solid rgba(2, 8, 18, 0.1);
  padding: 24px;
  margin-top: 24px;
}

.contact-hours h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(2, 8, 18, 0.06);
}

.contact-hours li:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form-wrap {
  border: 1px solid rgba(2, 8, 18, 0.1);
  background: var(--white);
  padding: 40px 36px;
}

.form-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(2, 8, 18, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--bg-dark);
  background: var(--light);
  border: 1px solid rgba(2, 8, 18, 0.1);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.72rem;
  color: var(--gold);
  text-align: center;
  margin-top: 16px;
  min-height: 20px;
}

/* Large Map */
.map-large {
  margin-top: 32px;
}

.map-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--dark-3);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.08) saturate(0.85);
}

.map-embed-large {
  height: clamp(320px, 50vh, 450px);
}

.map-embed-footer {
  height: 180px;
  width: 100%;
}

@media (max-width: 768px) {
  .map-embed-footer {
    height: 200px;
  }

  .map-embed-large {
    height: 300px;
  }
}

.map-placeholder-large {
  height: 360px;
  flex-direction: column;
  gap: 16px;
}

.map-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.map-link:hover .map-placeholder {
  border-color: var(--gold-border-hover);
}

.map-link:hover .map-pin {
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(248, 246, 240, 0.45));
}

.map-link-text {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.7s var(--ease);
}

.map-link:hover .map-link-text,
.map-link:hover .map-label {
  color: var(--white);
}

.map-pin {
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.footer-col ul li a[href*="google.com/maps"],
.contact-detail-item a[href*="google.com/maps"] {
  transition: color 0.7s var(--ease);
}

.footer-col ul li a[href*="google.com/maps"]:hover,
.contact-detail-item a[href*="google.com/maps"]:hover {
  color: var(--accent);
}

.map-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Inner Pages Responsive */
@media (max-width: 1024px) {
  .content-split,
  .content-split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .zones-grid,
  .method-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(2, 8, 18, 0.1);
  }

  .membership-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-values-inline {
    flex-wrap: wrap;
    gap: 16px;
  }

  .page-hero-vertical {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 80px 0;
  }

  .zones-grid,
  .method-grid,
  .faq-grid,
  .process-grid,
  .programs-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .membership-grid-full {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(2, 8, 18, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .page-hero {
    min-height: 45vh;
    padding: 120px 0 60px;
  }
}

/* =============================================
   LUXURY DESIGN SYSTEM — Private Members Club
   ============================================= */

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active,
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* --- Buttons & Links --- */
.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  letter-spacing: 0.18em;
  transition: var(--transition), letter-spacing 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.btn:hover:not(.btn-header) {
  transform: translateX(6px);
}

.btn-hero:hover,
.btn-outline.btn-hero:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-glow);
  transform: translateX(6px);
}

.btn-header {
  border-color: var(--line);
  background: rgba(248, 246, 240, 0.04);
}

.btn-header:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transform: translateX(6px);
}

.btn-dark {
  border-color: rgba(17, 24, 39, 0.2);
  color: var(--text-dark);
}

.link-arrow {
  transition: var(--transition), letter-spacing 0.7s var(--ease), border-color 0.7s var(--ease), color 0.7s var(--ease), transform 0.7s var(--ease);
}

.link-arrow:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  letter-spacing: 0.2em;
  transform: translateX(6px);
}

.link-arrow-dark:hover {
  color: var(--gold);
  border-color: var(--gold);
  letter-spacing: 0.2em;
  transform: translateX(6px);
}

/* --- Logo --- */
.logo-main {
  letter-spacing: 0.36em;
  font-weight: 600;
}

.logo-sub {
  letter-spacing: 0.44em;
  color: var(--muted);
}

.logo-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(248, 246, 240, 0.08), transparent);
}

.logo-footer .logo-main {
  font-size: 1.15rem;
  letter-spacing: 0.38em;
}

/* --- Header --- */
.header {
  padding: 36px 0;
  background-color: rgba(2, 7, 17, 0.94);
  background-image:
    radial-gradient(circle at 90% 0%, rgba(20, 68, 100, 0.32), transparent 38%),
    linear-gradient(180deg, rgba(2, 7, 17, 0.96) 0%, rgba(6, 17, 31, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding 0.7s var(--ease), background 0.7s var(--ease), box-shadow 0.7s var(--ease), border-color 0.7s var(--ease);
}

.header.scrolled {
  background-color: rgba(2, 7, 17, 0.98);
  background-image:
    radial-gradient(circle at 90% 0%, rgba(20, 68, 100, 0.38), transparent 38%),
    linear-gradient(180deg, rgba(2, 7, 17, 0.99) 0%, rgba(6, 17, 31, 1) 100%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.nav-link::after {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.7s var(--ease);
}

.nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  width: 100%;
}

/* --- Section Markers & Editorial --- */
.section-marker .marker-num,
.marker-num {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--gold-light);
}

.section-marker .marker-line {
  height: 80px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
}

.section-marker-dark .marker-num {
  color: var(--text-dark);
  opacity: 0.28;
}

.services-title::before,
.footer-heading::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-right: 14px;
  vertical-align: middle;
}

/* --- Hero --- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(1, 4, 10, 0.88) 100%),
    radial-gradient(ellipse at 0% 100%, rgba(1, 4, 10, 0.6) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  background-color: var(--bg-dark);
}

.hero-bg::before {
  z-index: 1;
  background:
    linear-gradient(to right, rgba(1, 4, 10, 0.92) 0%, rgba(2, 7, 17, 0.72) 40%, rgba(2, 7, 17, 0.4) 100%),
    linear-gradient(to top, rgba(1, 4, 10, 0.65) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(1, 4, 10, 0.45) 0%, transparent 20%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 75%, rgba(248, 246, 240, 0.05) 0%, transparent 42%),
    radial-gradient(ellipse at 90% 25%, rgba(7, 27, 45, 0.55) 0%, transparent 48%);
}

.hero-vertical-text {
  letter-spacing: 0.52em;
  color: rgba(248, 246, 240, 0.18);
  padding-left: 6px;
  border-left: 1px solid var(--line);
  padding-bottom: 100px;
  left: 32px;
  font-weight: 300;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-light);
  letter-spacing: 0.38em;
  font-weight: 400;
}

.hero-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), rgba(248, 246, 240, 0.2));
  flex-shrink: 0;
}

.hero-title-main {
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-shadow: 0 8px 80px rgba(0, 0, 0, 0.55);
}

.hero-title-sub {
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: rgba(248, 246, 240, 0.72);
  margin-top: 12px;
}

.hero-tagline {
  color: var(--muted);
  letter-spacing: 0.3em;
  font-weight: 300;
}

.hero-athlete {
  height: clamp(440px, 60vh, 640px);
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 50px 120px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(248, 246, 240, 0.06);
  filter: contrast(1.05) saturate(0.95);
}

.hero-athlete::before {
  background:
    linear-gradient(to left, transparent 50%, rgba(1, 4, 10, 0.92) 100%),
    linear-gradient(to top, rgba(1, 4, 10, 0.85) 0%, rgba(1, 4, 10, 0.25) 45%, transparent 100%),
    radial-gradient(ellipse at 60% 20%, rgba(248, 246, 240, 0.08) 0%, transparent 50%);
}

.hero-athlete::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(1, 4, 10, 0.55);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.dot {
  width: 4px;
  height: 4px;
  border-color: rgba(248, 246, 240, 0.35);
  transition: all 0.7s var(--ease);
}

.dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 14px rgba(248, 246, 240, 0.55);
  transform: scale(1.4);
}

.slider-num {
  color: var(--gold-light);
  letter-spacing: 0.3em;
  font-weight: 300;
}

/* --- Feature Bar --- */
.hero-features {
  background: linear-gradient(90deg, rgba(2, 7, 17, 0.95) 0%, rgba(7, 24, 39, 0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
}

.feature-item {
  transition: transform 0.7s var(--ease), background 0.7s var(--ease);
  border-right-color: rgba(248, 246, 240, 0.18);
}

.feature-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.035);
}

.feature-icon {
  width: 30px;
  height: 30px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--gold-light);
  background: rgba(248, 246, 240, 0.04);
}

.feature-sub {
  color: var(--muted);
}

/* --- Light Sections --- */
.section-light {
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 246, 240, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(232, 225, 213, 0.65)),
    var(--cream);
  color: var(--text-dark);
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(17, 24, 39, 0.012) 80px, rgba(17, 24, 39, 0.012) 81px);
  pointer-events: none;
  opacity: 0.7;
}

.section-light::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 Q75 120 150 150 T300 150 M0 90 Q75 60 150 90 T300 90 M0 210 Q75 180 150 210 T300 210' fill='none' stroke='%23f8f6f0' stroke-width='0.35' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  opacity: 0.07;
  pointer-events: none;
}

.section-light > .container,
.section-light .container {
  position: relative;
  z-index: 1;
}

.about-left .about-title::after,
.membership-left .membership-title::after,
.page-section-left .page-section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 22px;
}

.about-desc {
  color: var(--muted-dark);
}

/* --- Dark Sections --- */
.section-dark {
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(24, 70, 110, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 246, 240, 0.04) 0%, transparent 35%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 50%, var(--black) 100%);
}

.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(248, 246, 240, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

/* --- Premium Cards --- */
.about-card,
.service-card,
.package-card,
.zone-card,
.process-card,
.program-card,
.faq-item,
.method-card {
  position: relative;
  transition: transform 0.7s var(--ease), border-color 0.7s var(--ease), box-shadow 0.7s var(--ease), background 0.7s var(--ease);
}

.about-card,
.package-card,
.zone-card,
.process-card,
.program-card,
.faq-item,
.method-card {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(248, 246, 240, 0.26);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-card::after,
.service-card::after,
.package-card::after,
.zone-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--gold-soft);
  border-left: 1px solid var(--gold-soft);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.7s var(--ease);
  z-index: 2;
}

.about-card:hover,
.service-card:hover,
.package-card:hover,
.zone-card:hover,
.process-card:hover,
.program-card:hover,
.faq-item:hover,
.method-card:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 246, 240, 0.75);
  box-shadow: var(--shadow-card);
}

.about-card:hover::after,
.service-card:hover::after,
.package-card:hover::after,
.zone-card:hover::after {
  opacity: 1;
}

.about-card-img,
.service-card-img,
.zone-card-img,
.page-img-tall,
.cta-athlete {
  overflow: hidden;
  transition: transform 0.8s var(--ease);
}

.about-card:hover .about-card-img,
.service-card:hover .service-card-img,
.zone-card:hover .zone-card-img {
  transform: scale(1.08);
}

.about-card-img::before {
  background: linear-gradient(to bottom, rgba(1, 4, 10, 0.12) 0%, rgba(1, 4, 10, 0.68) 100%);
}

.card-num,
.service-num,
.package-num {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(248, 246, 240, 0.25);
}

/* --- Services --- */
.services {
  background:
    radial-gradient(circle at 20% 20%, rgba(248, 246, 240, 0.09), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(24, 70, 110, 0.24), transparent 36%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    radial-gradient(rgba(248, 246, 240, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(248, 246, 240, 0.035) 39px, rgba(248, 246, 240, 0.035) 40px);
  background-size: 16px 16px, auto;
  pointer-events: none;
  opacity: 0.6;
}

.services-watermark {
  font-size: clamp(10rem, 24vw, 24rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 246, 240, 0.22);
  letter-spacing: 0.06em;
  left: 16px;
  opacity: 0.85;
}

.services-dots {
  width: 76px;
  height: 76px;
  opacity: 0.45;
}

.service-card {
  min-height: 380px;
}

.service-card-content {
  min-height: 380px;
}

.service-card:hover .service-card-content {
  box-shadow: inset 0 1px 0 rgba(248, 246, 240, 0.35);
}

.service-card-img::before {
  background: linear-gradient(to top, rgba(1, 4, 10, 0.98) 0%, rgba(1, 4, 10, 0.6) 42%, rgba(1, 4, 10, 0.15) 100%);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-arrow {
  font-size: 1.1rem;
  opacity: 0.85;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* --- Membership / Packages --- */
.topo-pattern {
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 Q75 120 150 150 T300 150 M0 90 Q75 60 150 90 T300 90 M0 210 Q75 180 150 210 T300 210 M0 30 Q75 0 150 30 T300 30' fill='none' stroke='%23f8f6f0' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 280px 280px;
}

.package-card {
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.package-card:hover::before {
  opacity: 1;
}

.package-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(243, 239, 231, 0.95) 100%);
  box-shadow: var(--shadow-card), 0 0 40px rgba(248, 246, 240, 0.08);
}

.package-card:last-child,
.package-card-featured {
  border-color: rgba(248, 246, 240, 0.65);
  background: linear-gradient(180deg, rgba(248, 246, 240, 0.12), rgba(255, 255, 255, 0.32));
}

.package-card:last-child:hover,
.package-card-featured:hover {
  background: linear-gradient(180deg, rgba(248, 246, 240, 0.16), rgba(255, 255, 255, 0.42));
  box-shadow: var(--shadow-card), 0 0 50px rgba(248, 246, 240, 0.12);
}

.package-title {
  border-bottom-color: rgba(248, 246, 240, 0.18);
}

.package-num {
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 14px;
}

.package-num::after {
  content: '';
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--line);
}

.package-features li {
  padding-left: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  padding-top: 8px;
  padding-bottom: 8px;
}

.package-features li:last-child {
  border-bottom: none;
}

/* --- CTA --- */
.cta {
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(248, 246, 240, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 10% 50%, rgba(24, 70, 110, 0.18) 0%, transparent 40%),
    linear-gradient(180deg, var(--black) 0%, var(--dark-2) 100%);
}

.cta-arc {
  border-color: rgba(248, 246, 240, 0.22);
}

.cta-arc-1 {
  box-shadow: 0 0 80px rgba(248, 246, 240, 0.04);
}

.cta-title {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: 0.08em;
  line-height: 1.08;
}

.cta-sub {
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.cta-athlete {
  height: clamp(380px, 48vh, 520px);
  border: 1px solid var(--line);
  box-shadow:
    0 0 100px rgba(248, 246, 240, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.55);
}

.cta-athlete::before {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(248, 246, 240, 0.08) 0%, transparent 55%),
    linear-gradient(to top, rgba(1, 4, 10, 0.12) 0%, transparent 58%);
}

.cta-athlete::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}

.cta-values li {
  transition: padding-left 0.7s var(--ease), color 0.7s var(--ease), border-color 0.7s var(--ease);
  border-bottom-color: rgba(248, 246, 240, 0.2);
}

.cta-values li:first-child {
  border-top-color: rgba(248, 246, 240, 0.2);
}

.cta-values li:hover {
  padding-left: 10px;
  color: var(--gold-light);
}

.value-num {
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.2em;
}

/* --- Footer --- */
.footer {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(24, 70, 110, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, var(--dark-3) 0%, var(--black) 100%);
  border-top: 1px solid var(--line);
  position: relative;
}

.footer-inner {
  position: relative;
}

.footer-col:not(:last-child):not(.footer-map) {
  border-right: 1px solid rgba(248, 246, 240, 0.14);
  padding-right: 28px;
}

.footer-tagline {
  color: var(--gold-light);
  letter-spacing: 0.24em;
}

.footer-motto {
  color: var(--muted);
  font-weight: 300;
}

.footer-col ul li a {
  transition: color 0.7s var(--ease), transform 0.7s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-hours ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(248, 246, 240, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-hours ul li:first-child {
  border-top: 1px solid rgba(248, 246, 240, 0.12);
}

.map-placeholder {
  background:
    radial-gradient(circle at 50% 50%, rgba(248, 246, 240, 0.06) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy) 0%, var(--dark-2) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(248, 246, 240, 0.04) 14px,
      rgba(248, 246, 240, 0.04) 15px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(248, 246, 240, 0.04) 14px,
      rgba(248, 246, 240, 0.04) 15px
    );
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(248, 246, 240, 0.1) 0%, transparent 55%);
}

.map-pin {
  color: var(--gold-light);
  filter: drop-shadow(0 0 16px rgba(248, 246, 240, 0.5));
  position: relative;
  z-index: 1;
}

/* --- Floating Buttons --- */
.back-to-top {
  background: transparent;
  border: none;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.whatsapp-btn {
  background: #fff;
  color: var(--black);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.whatsapp-btn svg {
  fill: var(--black);
  color: var(--black);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
}

/* --- Inner Pages --- */
.page-hero-bg {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(248, 246, 240, 0.07) 0%, transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(24, 70, 110, 0.28) 0%, transparent 40%),
    linear-gradient(160deg, var(--black) 0%, var(--dark-3) 100%);
}

.page-hero-bg::before {
  background: linear-gradient(to right, rgba(1, 4, 10, 0.9) 0%, rgba(2, 7, 17, 0.55) 100%);
}

.page-hero-overlay {
  background: radial-gradient(ellipse at 80% 50%, rgba(248, 246, 240, 0.07) 0%, transparent 55%);
}

.page-hero-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.page-section {
  position: relative;
}

.page-section-dark {
  background:
    radial-gradient(circle at 15% 30%, rgba(248, 246, 240, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.page-cta {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(248, 246, 240, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--black) 100%);
}

.page-cta.section-light {
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 246, 240, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(232, 225, 213, 0.65)),
    var(--cream);
  color: var(--text-dark);
}

.page-cta.section-light .page-cta-title,
.page-cta.section-light .page-cta-title-dark {
  color: var(--text-dark);
}

.page-cta.section-light .page-cta-sub,
.page-cta.section-light .page-cta-sub-dark {
  color: var(--muted-dark);
}

.contact-form-wrap {
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(248, 246, 240, 0.18);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248, 246, 240, 0.12);
}

.map-placeholder-large {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
}

.stat-item,
.benefit-item {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(6px);
}

.info-list {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.info-list-item {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.info-list-item:last-child {
  border-bottom: none;
}

/* --- Responsive Luxury --- */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }

  .hero-title-main {
    font-size: clamp(56px, 8vw, 110px);
  }

  .services-watermark {
    font-size: clamp(7rem, 16vw, 13rem);
  }

  .footer-col:not(:last-child):not(.footer-map) {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about,
  .services,
  .membership,
  .cta,
  .page-section {
    padding: 100px 0;
  }

  .service-card,
  .service-card-content {
    min-height: 320px;
  }

  .services-watermark {
    font-size: clamp(6rem, 14vw, 10rem);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 22px 0;
  }

  .header.scrolled {
    padding: 16px 0;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-title-main {
    font-size: clamp(48px, 12vw, 72px);
    letter-spacing: 0.1em;
  }

  .hero-title-sub {
    letter-spacing: 0.32em;
  }

  .hero-slider {
    right: 12px;
    gap: 16px;
  }

  .footer-col:not(:last-child):not(.footer-map) {
    border-right: none;
    border-bottom: 1px solid rgba(248, 246, 240, 0.12);
    padding-right: 0;
    padding-bottom: 28px;
    margin-bottom: 8px;
  }

  .services-watermark {
    font-size: clamp(5rem, 22vw, 8rem);
    left: 8px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }

  .hero-title-main {
    font-size: clamp(40px, 11vw, 56px);
    letter-spacing: 0.08em;
    line-height: 0.95;
  }

  .hero-title-sub {
    font-size: clamp(0.85rem, 4.5vw, 1.25rem);
    letter-spacing: 0.28em;
  }

  .about,
  .services,
  .membership,
  .cta,
  .page-section {
    padding: 72px 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 88px;
    width: 44px;
    height: 44px;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .services-watermark {
    display: none;
  }

  .hero-vertical-text {
    display: none;
  }
}

/* =============================================
   PREMIUM MARQUEE — Section transition band
   ============================================= */
.premium-marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(24, 70, 110, 0.18), transparent 32%),
    linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 45%, var(--dark) 100%);
  border-top: 1px solid rgba(248, 246, 240, 0.12);
  border-bottom: 1px solid rgba(248, 246, 240, 0.12);
}

.premium-marquee::before,
.premium-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.premium-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}

.premium-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
}

.marquee-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 246, 240, 0.25), transparent);
  z-index: 2;
}

.marquee-line-top {
  top: 0;
}

.marquee-line-bottom {
  bottom: 0;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 42px;
  animation: marqueeMove 34s linear infinite;
  will-change: transform;
}

.marquee-content span {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: clamp(18px, 2.3vw, 42px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.26em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 0;
}

.marquee-content span::after {
  content: '';
  width: 5px;
  height: 5px;
  margin-left: 42px;
  border-radius: 50%;
  background: rgba(248, 246, 240, 0.35);
  box-shadow: none;
  flex-shrink: 0;
}

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

.premium-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* CTA / Instagram arası — ters renk (açık zemin, koyu yazı) */
.premium-marquee-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(2, 7, 17, 0.04), transparent 32%),
    linear-gradient(90deg, var(--cream) 0%, var(--white) 45%, var(--cream) 100%);
  border-top-color: rgba(2, 7, 17, 0.1);
  border-bottom-color: rgba(2, 7, 17, 0.1);
}

.premium-marquee-cta::before {
  background: linear-gradient(90deg, var(--cream), transparent);
}

.premium-marquee-cta::after {
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.premium-marquee-cta .marquee-line {
  background: linear-gradient(90deg, transparent, rgba(2, 7, 17, 0.18), transparent);
}

.premium-marquee-cta .marquee-content span {
  color: var(--black);
}

.premium-marquee-cta .marquee-content span::after {
  background: rgba(2, 7, 17, 0.28);
}

@media (max-width: 768px) {
  .premium-marquee {
    padding: 24px 0;
  }

  .premium-marquee::before,
  .premium-marquee::after {
    width: 80px;
  }

  .marquee-content {
    gap: 28px;
  }

  .marquee-content span {
    font-size: clamp(16px, 4.5vw, 26px);
    letter-spacing: 0.18em;
  }

  .marquee-content span::after {
    margin-left: 28px;
    width: 5px;
    height: 5px;
  }
}

/* =============================================
   PAKETLER PAGE — Light / dark rhythm (like inner pages)
   ============================================= */
.page-packages .membership-page {
  display: block;
}

.page-packages .section-light .package-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-packages .section-light .package-card:hover {
  border-color: rgba(7, 27, 45, 0.3);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.page-packages .section-light .package-card:last-child {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.page-packages .section-light .package-card:last-child:hover {
  border-color: rgba(7, 27, 45, 0.3);
  background: rgba(255, 255, 255, 0.92);
}

.page-packages .section-light .package-card-featured {
  border-color: rgba(7, 27, 45, 0.32);
  background: linear-gradient(180deg, rgba(7, 27, 45, 0.05) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.page-packages .section-light .package-card-featured:hover {
  border-color: rgba(7, 27, 45, 0.45);
  background: linear-gradient(180deg, rgba(7, 27, 45, 0.07) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.page-packages .section-light .package-badge {
  color: var(--text-dark);
  border-color: rgba(17, 24, 39, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.page-packages .section-light .package-num {
  color: var(--navy);
  opacity: 0.7;
}

.page-packages .section-light .package-num::after {
  background: rgba(17, 24, 39, 0.12);
}

.page-packages .section-light .package-title {
  color: var(--text-dark);
  border-bottom-color: rgba(17, 24, 39, 0.1);
}

.page-packages .section-light .package-features li {
  color: var(--muted-dark);
}

.page-packages .section-light .package-features li::before {
  color: var(--navy);
  opacity: 0.4;
}

.page-packages .section-light .faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--shadow-soft);
}

.page-packages .section-light .faq-item:hover {
  border-color: rgba(7, 27, 45, 0.25);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
}

.page-packages .section-light .faq-num {
  color: var(--navy);
  opacity: 0.65;
}

.page-packages .section-light .faq-item h3 {
  color: var(--text-dark);
}

.page-packages .section-light .faq-item p {
  color: var(--muted-dark);
}

.page-packages .section-light .page-section-title {
  color: var(--text-dark);
}

.page-packages .section-light .page-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.3), transparent);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-packages .membership-grid-full {
    gap: 16px;
  }
}

/* =============================================
   LIGHT SECTION READABILITY — contrast fixes
   ============================================= */
.section-light {
  --gold: #071b2d;
  --gold-light: #111827;
  --gold-soft: rgba(7, 27, 45, 0.22);
  --line: rgba(17, 24, 39, 0.14);
  --gold-border: rgba(17, 24, 39, 0.14);
  --gold-border-hover: rgba(7, 27, 45, 0.38);
  color: var(--text-dark);
}

.section-light .link-arrow:not(.link-arrow-dark) {
  color: var(--text-dark);
  border-bottom-color: rgba(17, 24, 39, 0.22);
}

.section-light .link-arrow:not(.link-arrow-dark):hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.section-light .card-num,
.section-light .package-num,
.section-light .info-list-num,
.section-light .process-num,
.section-light .program-num,
.section-light .faq-num,
.section-light .method-num,
.section-light .stat-num,
.section-light .section-marker .marker-num,
.section-light .section-marker-dark .marker-num {
  color: var(--navy);
  opacity: 0.7;
  text-shadow: none;
}

.section-light .section-marker .marker-line,
.section-light .section-marker-dark .marker-line {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.22), transparent);
}

.section-light .about-title,
.section-light .membership-title,
.section-light .page-section-title,
.section-light .card-title,
.section-light .package-title,
.section-light .zone-card .card-title,
.section-light .faq-item h3,
.section-light .info-list-item h3,
.section-light .process-card h3,
.section-light .program-card h3 {
  color: var(--text-dark);
}

.section-light .about-desc,
.section-light .membership-sub,
.section-light .page-section-desc,
.section-light .card-desc,
.section-light .package-features li,
.section-light .faq-item p,
.section-light .info-list-item p {
  color: var(--muted-dark);
}

.section-light .package-features li::before,
.section-light .faq-num,
.section-light .info-list-num {
  color: var(--navy);
}

.section-light .info-list {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.section-light .info-list-item {
  border-bottom-color: rgba(17, 24, 39, 0.12);
}

.section-light .about-card,
.section-light .package-card,
.section-light .faq-item,
.section-light .zone-card,
.section-light .process-card,
.section-light .program-card,
.section-light .program-card-light {
  border-color: rgba(17, 24, 39, 0.12);
}

.section-light .about-card:hover,
.section-light .package-card:hover,
.section-light .faq-item:hover,
.section-light .zone-card:hover,
.section-light .process-card:hover,
.section-light .program-card:hover {
  border-color: rgba(7, 27, 45, 0.35);
}

.section-light .page-section-sub {
  color: var(--muted-dark);
}

.section-light .services-watermark {
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 27, 45, 0.07);
  opacity: 1;
}

.section-light .process-card {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.section-light .process-card:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.section-light .process-card p {
  color: var(--muted-dark);
}

.section-light .program-card {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.section-light .program-card:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.section-light .btn-dark {
  border-color: rgba(17, 24, 39, 0.25);
  color: var(--text-dark);
}

.section-light .btn-dark:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

.section-light .logo-divider {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.2), transparent);
}

.section-light .package-badge {
  color: var(--text-dark);
  border-color: rgba(17, 24, 39, 0.15);
  background: rgba(255, 255, 255, 0.85);
}

.section-light .package-card-featured {
  border-color: rgba(7, 27, 45, 0.32);
}

.section-light .package-num::after {
  background: rgba(17, 24, 39, 0.15);
}

.section-light .page-section-title::after,
.section-light .about-left .about-title::after,
.section-light .membership-left .membership-title::after {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.35), transparent);
}

.section-light .footer-heading::before {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.35), transparent);
}

/* =============================================
   MEMBERSHIP PREMIUM — Üyelik Paketleri
   ============================================= */
.membership {
  --membership-gold: rgba(185, 155, 99, 1);
  --membership-gold-soft: rgba(185, 155, 99, 0.45);
  --membership-gold-muted: rgba(185, 155, 99, 0.22);
  padding: clamp(108px, 11vw, 148px) 0;
}

.membership-pattern {
  opacity: 0.055;
  background-image:
    url("data:image/svg+xml,%3Csvg width='320' height='320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 160 Q80 130 160 160 T320 160 M0 100 Q80 70 160 100 T320 100 M0 220 Q80 190 160 220 T320 220 M0 40 Q80 10 160 40 T320 40' fill='none' stroke='%23071b2d' stroke-width='0.45'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

.membership-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(185, 155, 99, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 92% 78%, rgba(7, 27, 45, 0.05) 0%, transparent 36%);
  pointer-events: none;
}

.membership-inner {
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}

.membership-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 12px;
  padding-right: 12px;
  position: sticky;
  top: 132px;
}

.membership .membership-title {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 300;
  letter-spacing: clamp(0.08em, 1vw, 0.13em);
  line-height: 1.06;
  margin-bottom: 0;
  color: var(--text-dark);
}

.membership-left .membership-title::after {
  width: 72px;
  height: 1px;
  margin-top: 26px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--membership-gold-soft), var(--membership-gold-muted), transparent);
}

.section-light .membership-left .membership-title::after {
  background: linear-gradient(90deg, var(--membership-gold-soft), var(--membership-gold-muted), transparent);
}

.membership .membership-sub {
  font-size: 0.78rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: none;
  max-width: 280px;
  margin-bottom: 40px;
  color: var(--muted-dark);
}

.membership-btn {
  align-self: flex-start;
  padding: 17px 34px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-color: rgba(17, 24, 39, 0.2);
  transition: color 0.7s var(--ease), border-color 0.7s var(--ease), background 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.membership-btn:hover {
  color: var(--navy);
  border-color: var(--membership-gold-soft);
  background: rgba(185, 155, 99, 0.1);
  box-shadow: 0 14px 36px rgba(7, 27, 45, 0.1);
  transform: translateY(-2px);
}

.membership-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 993px) {
  .membership:not(.membership-packages) .membership-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .membership:not(.membership-packages) .membership-left {
    position: static;
    max-width: 520px;
    padding-top: 0;
    padding-right: 0;
  }

  .membership:not(.membership-packages) .membership-grid {
    width: 100%;
  }
}

.membership .membership-card {
  position: relative;
  min-height: 380px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 40px rgba(7, 27, 45, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.65s var(--ease), border-color 0.65s var(--ease), box-shadow 0.65s var(--ease), background 0.65s var(--ease);
}

.membership .membership-card::after {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 34px;
  height: 34px;
  border-top-color: var(--membership-gold-muted);
  border-left-color: var(--membership-gold-muted);
  opacity: 0.55;
}

.membership .membership-card::before {
  content: '';
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  background: none;
  border-bottom: 1px solid var(--membership-gold-muted);
  border-right: 1px solid var(--membership-gold-muted);
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.65s var(--ease);
}

.membership .membership-card:hover {
  transform: translateY(-8px);
  border-color: var(--membership-gold-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.36) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 60px rgba(0, 0, 0, 0.12);
}

.membership .membership-card:hover::after,
.membership .membership-card:hover::before {
  opacity: 1;
}

.membership-card-head {
  margin-bottom: 16px;
}

.membership .membership-card .package-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(7, 27, 45, 0.5);
  opacity: 1;
  text-shadow: none;
}

.membership .membership-card .package-num::after {
  content: '';
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--membership-gold-soft), transparent);
}

.membership .membership-card .package-title {
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-dark);
  line-height: 1.35;
}

.membership .membership-list {
  flex: 1;
  margin-bottom: 0;
}

.membership .membership-list li {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.68);
  padding: 11px 0 11px 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.membership .membership-list li:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.membership .membership-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--membership-gold-soft), transparent);
  opacity: 0.9;
  transform: translateY(-50%);
}

.membership .membership-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: auto;
  padding: 20px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  border-bottom: none;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  min-width: 100%;
  text-align: center;
  transition: color 0.65s var(--ease), border-color 0.65s var(--ease), letter-spacing 0.65s var(--ease);
}

.membership .membership-cta.link-arrow {
  border-bottom: none;
  padding-bottom: 0;
}

.membership .membership-cta:hover,
.membership .membership-cta.link-arrow-dark:hover {
  color: var(--navy);
  border-top-color: rgba(185, 155, 99, 0.35);
  border-bottom: none;
  transform: none;
  letter-spacing: 0.22em;
}

.membership .membership-card--featured {
  border-color: rgba(185, 155, 99, 0.32);
  background: linear-gradient(165deg, rgba(185, 155, 99, 0.12) 0%, rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0.3) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 48px rgba(7, 27, 45, 0.1);
}

.membership .membership-card--featured:hover {
  border-color: rgba(185, 155, 99, 0.55);
  background: linear-gradient(165deg, rgba(185, 155, 99, 0.16) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(255, 255, 255, 0.36) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 26px 72px rgba(0, 0, 0, 0.14);
}

.membership .membership-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 27, 45, 0.85);
  padding: 7px 11px;
  border: 1px solid rgba(185, 155, 99, 0.4);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Eski paket stillerini membership içinde sıfırla */
.membership .package-card:last-child,
.membership .package-card-featured {
  background: inherit;
  border-color: inherit;
}

.section-light.membership .membership-card,
.section-light.membership-packages .membership-card {
  border-color: rgba(17, 24, 39, 0.1);
}

.section-light.membership .membership-card:hover,
.section-light.membership-packages .membership-card:hover {
  border-color: var(--membership-gold-soft);
}

.membership-packages {
  padding-top: clamp(80px, 9vw, 110px);
  padding-bottom: clamp(80px, 9vw, 110px);
}

.membership-packages .membership-inner {
  display: block;
}

.membership-packages .membership-grid-full {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 28px;
}

@media (max-width: 992px) {
  .membership-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .membership-left {
    position: static;
    max-width: 480px;
    padding-top: 0;
  }

  .membership-grid,
  .membership-packages .membership-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .membership {
    padding: 76px 0;
  }

  .membership .membership-title {
    letter-spacing: 0.09em;
  }

  .membership-left {
    max-width: none;
    padding-right: 0;
  }

  .membership-btn {
    width: 100%;
    justify-content: center;
  }

  .membership-grid,
  .membership-packages .membership-grid-full {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .membership .membership-card {
    min-height: 0;
    padding: 30px 22px 24px;
  }

  .membership .membership-card--featured .package-title {
    padding-right: 0;
  }

  .membership .membership-badge {
    top: 12px;
    right: 12px;
  }
}

/* Personal Training — hero (görsel yok, koyu gradient) */
.page-personal-training .page-hero-bg.page-hero-bg-pt {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(248, 246, 240, 0.05) 0%, transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(24, 70, 110, 0.22) 0%, transparent 40%),
    linear-gradient(160deg, var(--black) 0%, var(--dark-3) 100%);
  background-image: none;
}

/* =============================================
   CLUB GALLERY — Fitness Club Salon Atmosferi
   ============================================= */

.club-gallery-section {
  --gallery-gold: rgba(185, 155, 99, 1);
  --gallery-gold-border: rgba(185, 155, 99, 0.28);
  --gallery-gold-hover: rgba(211, 187, 130, 0.75);
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 155, 99, 0.1), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(18, 58, 96, 0.22), transparent 35%),
    linear-gradient(180deg, #020711 0%, #071827 100%);
  overflow: hidden;
}

.club-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
  pointer-events: none;
}

.club-gallery-section .container {
  position: relative;
  z-index: 2;
}

.club-gallery-section .split-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.club-gallery-section .section-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gallery-gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.club-gallery-section .section-number::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 14px;
  background: var(--gallery-gold-border);
}

.club-gallery-title {
  color: var(--white);
  font-size: clamp(2.625rem, 5vw, 5.125rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.club-gallery-title span {
  display: block;
}

.club-gallery-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.9375rem;
  max-width: 420px;
}

.club-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 320px 320px;
  gap: 22px;
}

.club-gallery-card-extra {
  display: none;
}

.gallery-more-hint {
  margin: 10px 0 0;
  color: rgba(185, 155, 99, 0.92);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.club-gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--gallery-gold-border);
  background:
    radial-gradient(circle at 30% 20%, rgba(185, 155, 99, 0.08), transparent 42%),
    linear-gradient(160deg, #0a1828 0%, #020711 100%);
  transition: border-color 0.65s var(--ease), box-shadow 0.65s var(--ease);
  cursor: pointer;
}

.club-gallery-card-large {
  grid-row: span 2;
}

.club-gallery-card-tall {
  grid-row: span 2;
}

.club-gallery-card-wide {
  grid-column: span 2;
}

.club-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale3d(1.01, 1.01, 1);
  transition: transform 0.55s var(--ease), opacity 0.5s ease;
}

.club-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.08) 0%, rgba(2, 7, 17, 0.82) 100%),
    radial-gradient(circle at 70% 20%, rgba(185, 155, 99, 0.1), transparent 35%);
  pointer-events: none;
  transition: opacity 0.65s var(--ease);
}

.club-gallery-card .gallery-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}

.club-gallery-card .gallery-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gallery-gold);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.club-gallery-card .gallery-overlay h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.club-gallery-card:hover {
  border-color: var(--gallery-gold-hover);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.club-gallery-card:hover img {
  transform: scale3d(1.05, 1.05, 1);
}

.club-gallery-card:hover::after {
  opacity: 0.92;
}

@media (max-width: 1200px) {
  .club-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .club-gallery-card:not(.club-gallery-card-extra),
  .club-gallery-card-large,
  .club-gallery-card-tall,
  .club-gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .club-gallery-card-large {
    grid-row: span 2;
  }

  .club-gallery-card-wide:not(.club-gallery-card-extra) {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .club-gallery-section .split-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .club-gallery-desc {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .club-gallery-section {
    padding: 82px 0;
  }

  .club-gallery-section .split-header {
    margin-bottom: 40px;
  }

  .club-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .club-gallery-card:not(.club-gallery-card-extra),
  .club-gallery-card-large,
  .club-gallery-card-tall,
  .club-gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .club-gallery-card .gallery-overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}

/* =============================================
   TEAM — Fitness Club Ekibimiz
   ============================================= */

.team-section {
  position: relative;
  padding: clamp(88px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 27, 45, 0.04), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(7, 27, 45, 0.06), transparent 38%),
    var(--cream);
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 45, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.45;
  pointer-events: none;
}

.team-section > .container {
  position: relative;
  z-index: 1;
}

.team-header {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.team-label {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.team-title {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.team-intro {
  max-width: 580px;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  color: var(--muted-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(7, 27, 45, 0.12);
  background: rgba(248, 246, 240, 0.72);
  transition: border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.team-card:hover {
  border-color: rgba(7, 27, 45, 0.38);
  box-shadow: var(--shadow-soft);
}

.team-number {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 3;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(248, 246, 240, 0.92);
  mix-blend-mode: difference;
}

.team-card-image {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  overflow: hidden;
  background: var(--navy);
}

.team-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(248, 246, 240, 0.32);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.55s var(--ease);
}

.team-card:hover .team-image-frame::before {
  border-color: rgba(248, 246, 240, 0.55);
}

.team-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.85s var(--ease);
}

.team-card:hover .team-image-frame img {
  transform: scale(1.035);
}

.team-card-image-banner .team-image-frame img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.team-card-image-banner:hover .team-image-frame img {
  transform: scale(1.02);
}

.team-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.2vw, 26px) clamp(24px, 2.8vw, 30px);
}

.team-name {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.team-role {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.team-description {
  flex: 1;
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(17, 24, 39, 0.72);
}

.team-link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-section {
    padding: 72px 0 80px;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-card-image {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

  .team-number {
    top: 16px;
    left: 18px;
  }

  .team-image-frame::before {
    inset: 12px;
  }

  .team-card-content {
    padding: 22px 20px 26px;
  }

  .team-name,
  .team-role,
  .team-description {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

/* =============================================
   INSTAGRAM FEED — Reels / Video Showcase
   ============================================= */

.instagram-section {
  --insta-gold: rgba(185, 155, 99, 1);
  --insta-gold-border: rgba(185, 155, 99, 0.28);
  --insta-track-gutter: max(clamp(20px, 4vw, 40px), calc((100vw - min(100vw, var(--container))) / 2 + clamp(20px, 4vw, 40px)));
  --insta-track-offset: clamp(18px, 5vw, 72px);
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 155, 99, 0.08), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(18, 58, 96, 0.2), transparent 38%),
    linear-gradient(180deg, #06111f 0%, #020711 100%);
  border-top: 1px solid rgba(185, 155, 99, 0.12);
}

.instagram-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  pointer-events: none;
}

.instagram-section .container {
  position: relative;
  z-index: 2;
}

.instagram-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.instagram-header-left {
  min-width: 0;
}

.instagram-section .section-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--insta-gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.instagram-section .section-number::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 14px;
  background: var(--insta-gold-border);
}

.instagram-title {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.instagram-header-text {
  min-width: 0;
}

.instagram-header-text p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0 0 24px;
  max-width: 420px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--insta-gold-border);
  transition: color 0.35s ease, border-color 0.35s ease;
}

.instagram-link:hover {
  color: var(--insta-gold);
  border-color: var(--insta-gold);
}

.instagram-video-grid,
.instagram-video-track {
  display: flex;
  gap: clamp(16px, 2vw, 22px);
  width: max-content;
  min-width: 0;
  padding-left: calc(var(--insta-track-gutter) + var(--insta-track-offset));
  padding-right: var(--insta-track-gutter);
}

.instagram-slider-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 5vw, 64px);
}

.instagram-slider-wrap::before,
.instagram-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 56px;
  width: clamp(28px, 4vw, 72px);
  z-index: 3;
  pointer-events: none;
}

.instagram-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 7, 17, 0.95) 0%, rgba(2, 7, 17, 0) 100%);
}

.instagram-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 7, 17, 0.95) 0%, rgba(2, 7, 17, 0) 100%);
}

.instagram-slider {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scroll-padding-left: calc(var(--insta-track-gutter) + var(--insta-track-offset));
  scroll-padding-right: var(--insta-track-gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 155, 99, 0.45) transparent;
  padding-bottom: 10px;
}

.instagram-slider.is-touch-slider {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.instagram-slider.is-touch-slider .instagram-video-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.instagram-slider:focus-visible {
  outline: 1px solid var(--insta-gold-border);
  outline-offset: 4px;
}

.instagram-slider::-webkit-scrollbar {
  height: 6px;
}

.instagram-slider::-webkit-scrollbar-track {
  background: transparent;
}

.instagram-slider::-webkit-scrollbar-thumb {
  background: rgba(185, 155, 99, 0.45);
  border-radius: 999px;
}

.instagram-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.instagram-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--white);
  background: rgba(2, 7, 17, 0.72);
  border: 1px solid var(--insta-gold-border);
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.instagram-slider-btn span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.instagram-slider-prev span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  margin-left: 4px;
}

.instagram-slider-next span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  margin-right: 4px;
}

.instagram-slider-btn:hover {
  color: var(--insta-gold);
  border-color: var(--insta-gold);
  background: rgba(2, 7, 17, 0.92);
}

.instagram-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.instagram-video-card {
  flex: 0 0 clamp(240px, 22vw, 300px);
  scroll-snap-align: none;
  min-width: 0;
  border: 1px solid var(--insta-gold-border);
  background:
    radial-gradient(circle at 30% 20%, rgba(185, 155, 99, 0.06), transparent 42%),
    linear-gradient(160deg, rgba(10, 21, 36, 0.95) 0%, rgba(2, 7, 17, 0.98) 100%);
  transition: transform 0.65s var(--ease), border-color 0.65s var(--ease), box-shadow 0.65s var(--ease);
}

.instagram-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 155, 99, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.instagram-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #020711;
  border-bottom: 1px solid rgba(185, 155, 99, 0.14);
}

.instagram-video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: #020711;
  overflow: hidden;
}

.instagram-video-link video,
.instagram-video-link img {
  pointer-events: none;
}

.instagram-video-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.instagram-video-frame.lazy-media .instagram-video-cover,
.instagram-video-frame.lazy-media .instagram-video-poster {
  opacity: 1;
}

.instagram-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transition: opacity 0.35s ease;
}

.instagram-video.is-idle {
  opacity: 0;
}

.instagram-video-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #020711;
}

.instagram-post-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 7px 12px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(2, 7, 17, 0.72);
  border: 1px solid var(--insta-gold-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.instagram-video-link:hover .instagram-post-badge {
  color: var(--insta-gold);
  border-color: var(--insta-gold);
  background: rgba(2, 7, 17, 0.88);
}

.instagram-video-link:hover .instagram-video,
.instagram-video-link:hover .instagram-video-poster {
  transform: none;
}

.instagram-video,
.instagram-video-poster {
  transition: transform 0.65s var(--ease);
}

.instagram-video-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 16px 18px 18px;
}

.instagram-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.instagram-video-meta span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--insta-gold);
}

.instagram-video-meta h3 {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.82);
  text-align: right;
}

.instagram-card-link {
  align-self: flex-end;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 242, 236, 0.72);
  border-bottom: 1px solid transparent;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.instagram-card-link:hover {
  color: var(--insta-gold);
  border-color: var(--insta-gold-border);
}

@media (max-width: 992px) {
  .instagram-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .instagram-header-text p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 82px 0;
    --insta-track-offset: clamp(12px, 4vw, 30px);
  }

  .instagram-header {
    margin-bottom: 0;
  }

  .instagram-slider-wrap {
    margin-top: 36px;
  }

  .instagram-video-card {
    flex-basis: clamp(220px, 72vw, 280px);
    scroll-snap-align: start;
  }

  .instagram-slider {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .instagram-video-frame {
    max-height: none;
    aspect-ratio: 9 / 16;
  }

  .instagram-slider-wrap::before,
  .instagram-slider-wrap::after {
    width: 28px;
    bottom: 48px;
  }
}

/* Club Gallery Lightbox */
.club-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.club-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.club-lightbox[hidden] {
  display: none;
}

.club-lightbox:not([hidden]) {
  display: flex;
}

.club-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(185, 155, 99, 0.08), transparent 45%),
    rgba(1, 4, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.club-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(16px) scale(0.985);
  transition: transform 0.5s var(--ease);
}

.club-lightbox.is-open .club-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.club-lightbox-stage {
  position: relative;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(185, 155, 99, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.55);
  background: #020711;
  overflow: hidden;
}

.club-lightbox-img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  background: #020711;
  image-rendering: auto;
}

.club-lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 7, 17, 0.92) 100%);
}

.club-lightbox-num {
  color: rgba(185, 155, 99, 1);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.club-lightbox-title {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.club-lightbox-counter {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.club-lightbox-close,
.club-lightbox-nav {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(185, 155, 99, 0.35);
  background: rgba(2, 7, 17, 0.72);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.club-lightbox-close:hover,
.club-lightbox-nav:hover {
  border-color: rgba(211, 187, 130, 0.75);
  background: rgba(7, 27, 45, 0.92);
}

.club-lightbox-close {
  top: -64px;
  right: 0;
}

.club-lightbox-close span {
  position: relative;
  width: 18px;
  height: 18px;
}

.club-lightbox-close span::before,
.club-lightbox-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.club-lightbox-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.club-lightbox-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.club-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.club-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.club-lightbox-prev {
  left: -72px;
}

.club-lightbox-next {
  right: -72px;
}

@media (max-width: 992px) {
  .club-lightbox {
    padding: 16px;
  }

  .club-lightbox-close {
    top: 12px;
    right: 12px;
    background: rgba(2, 7, 17, 0.88);
  }

  .club-lightbox-nav {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .club-lightbox-nav:hover {
    transform: scale(1.05);
  }

  .club-lightbox-prev {
    left: 12px;
  }

  .club-lightbox-next {
    right: 12px;
  }

  .club-lightbox-caption {
    padding: 22px 20px 18px;
  }

  .club-lightbox-img {
    max-height: calc(100vh - 220px);
  }
}

/* =============================================
   SERVICES PREMIUM — Hizmetlerimiz
   ============================================= */

.services {
  --services-gold: rgba(185, 155, 99, 1);
  --services-gold-soft: rgba(185, 155, 99, 0.55);
  --services-gold-border: rgba(185, 155, 99, 0.28);
  --services-gold-hover: rgba(211, 187, 130, 0.75);
  padding: clamp(100px, 10vw, 130px) 0;
}

.services .services-inner {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}

.services .services-left {
  position: sticky;
  top: 132px;
  padding-top: 8px;
}

.services .services-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: clamp(0.08em, 1vw, 0.13em);
  text-transform: uppercase;
  margin-bottom: 0;
}

.services .services-title span {
  display: block;
}

.services .services-title::before {
  display: none;
}

.services .services-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 1px;
  margin: 24px 0 22px;
  background: linear-gradient(90deg, var(--services-gold-border), transparent);
}

.services-sub {
  font-size: 0.78rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--muted);
  max-width: 320px;
  margin: 0 0 36px;
}

.services-dots {
  display: none;
}

.services .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.services .service-card {
  min-height: 420px;
  border: 1px solid var(--services-gold-border);
  background: #020711;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.65s var(--ease), border-color 0.65s var(--ease), box-shadow 0.65s var(--ease);
}

.services .service-card:hover {
  border-color: var(--services-gold-hover);
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.42);
}

.services .service-card-content {
  min-height: 420px;
  padding: 32px 28px;
}

.services .service-num {
  color: var(--services-gold);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  margin-bottom: 12px;
}

.services .service-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.services .service-desc {
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 92%;
}

.services .service-arrow {
  color: var(--services-gold);
  opacity: 0.9;
}

.services .service-card-img::before {
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.15) 0%, rgba(2, 7, 17, 0.55) 45%, rgba(2, 7, 17, 0.94) 100%),
    radial-gradient(circle at 80% 15%, rgba(185, 155, 99, 0.12), transparent 42%);
}

.services .service-card-img-1 {
  background-image:
    linear-gradient(180deg, rgba(2, 7, 17, 0.2), rgba(2, 7, 17, 0.55)),
    url('assets/images/club-gallery-8.jpg');
  background-size: cover;
  background-position: center 20%;
}

.services .service-card-img-2 {
  background-image:
    linear-gradient(180deg, rgba(2, 7, 17, 0.2), rgba(2, 7, 17, 0.55)),
    url('assets/images/club-gallery-5.jpg');
  background-size: cover;
  background-position: center center;
}

.services .service-card-img-3 {
  background-image:
    linear-gradient(180deg, rgba(2, 7, 17, 0.2), rgba(2, 7, 17, 0.55)),
    url('assets/images/club-gallery-4.jpg');
  background-size: cover;
  background-position: center center;
}

.services .service-card-img-4 {
  background-image:
    linear-gradient(180deg, rgba(2, 7, 17, 0.2), rgba(2, 7, 17, 0.55)),
    url('assets/images/club-gallery-9.jpg');
  background-size: cover;
  background-position: center center;
}

.services .btn-services {
  padding: 16px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-color: rgba(248, 246, 240, 0.28);
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), transform 0.5s var(--ease);
}

.services .btn-services:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--black);
  transform: translateX(6px);
}

@media (min-width: 993px) {
  .services .services-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .services .services-left {
    position: static;
    max-width: 560px;
    padding-top: 0;
  }

  .services .services-grid {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .services .services-left {
    position: static;
    max-width: 480px;
  }

  .services .service-card,
  .services .service-card-content {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services .service-card,
  .services .service-card-content {
    min-height: 340px;
  }

  .services-sub {
    max-width: none;
  }

  .services .btn-services {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   RESPONSIVE SYSTEM — Site-wide
   ============================================= */

section,
.page-section,
.hero,
.page-hero,
.club-gallery-section,
.instagram-section,
.services,
.membership,
.about,
.cta,
.footer,
.premium-marquee {
  overflow-x: clip;
}

video,
iframe,
svg:not(.footer-icon):not(.back-to-top-icon) {
  max-width: 100%;
}

.hero-title-main {
  font-size: clamp(38px, 7.2vw, 118px);
}

.about-title,
.services .services-title,
.membership .membership-title,
.page-section-title,
.page-section-title-light,
.club-gallery-title,
.page-cta-title {
  font-size: clamp(28px, 4.2vw, 65px);
}

.page-hero-title {
  font-size: clamp(34px, 6.5vw, 92px);
}

/* --- 1400px --- */
@media (max-width: 1400px) {
  .container {
    padding-inline: clamp(20px, 3.5vw, 32px);
  }

  .footer-inner {
    grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr 1fr;
    gap: 32px;
  }

  .cta-inner {
    gap: 48px;
  }
}

/* --- 1200px --- */
@media (max-width: 1200px) {
  .container {
    padding-inline: clamp(20px, 3.5vw, 28px);
  }

  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-grid,
  .membership .membership-grid,
  .membership-packages .membership-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zones-grid,
  .method-grid,
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-watermark {
    opacity: 0.35;
    font-size: clamp(5rem, 14vw, 10rem);
  }

  .page-hero-vertical {
    display: none;
  }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .container {
    padding-inline: clamp(18px, 4vw, 28px);
  }

  .about-inner,
  .services-inner,
  .services .services-inner,
  .membership-inner,
  .membership .membership-inner,
  .cta-inner,
  .content-split,
  .content-split-reverse,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 44px;
  }

  .content-split-reverse {
    direction: ltr;
  }

  .membership-left,
  .services .services-left,
  .services-left {
    position: static;
    max-width: none;
    padding-right: 0;
  }

  .about-cards,
  .process-grid,
  .stats-row,
  .benefits-grid,
  .faq-grid,
  .zones-grid,
  .method-grid,
  .programs-grid,
  .membership-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(2, 8, 18, 0.1);
  }

  .page-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-col:not(:last-child):not(.footer-map) {
    border-right: none;
    border-bottom: 1px solid rgba(248, 246, 240, 0.12);
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 8px;
  }

  .footer-map {
    grid-column: 1 / -1;
  }

  .club-gallery-section .split-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .club-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-gallery-card-large,
  .club-gallery-card-tall {
    grid-row: span 1;
  }

  .club-gallery-card-wide:not(.club-gallery-card-extra) {
    grid-column: span 2;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .page-hero {
    min-height: auto;
    padding: 140px 0 72px;
  }

  .about,
  .services,
  .membership,
  .cta,
  .club-gallery-section,
  .instagram-section,
  .page-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .container {
    padding-inline: clamp(16px, 4.5vw, 24px);
  }

  .header {
    padding: 18px 0;
  }

  .header.scrolled {
    padding: 14px 0;
  }

  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  html.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .logo-img {
    height: 34px;
    max-width: min(180px, 52vw);
  }

  .logo-footer .logo-img {
    height: 36px;
    max-width: 190px;
  }

  h1,
  h2,
  .hero-title-main,
  .hero-title-sub,
  .about-title,
  .services .services-title,
  .membership .membership-title,
  .page-section-title,
  .page-hero-title,
  .club-gallery-title {
    letter-spacing: 0.08em;
    line-height: 1.05;
  }

  p,
  .about-desc,
  .page-section-desc,
  .page-section-sub,
  .service-desc,
  .membership .membership-sub,
  .club-gallery-desc {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 108px;
    padding-bottom: 36px;
    min-height: calc(100svh - 72px);
    max-height: none;
  }

  .hero-vertical-text,
  .page-hero-vertical,
  .hero-slider,
  .hero-features {
    display: none !important;
  }

  .hero-tagline {
    font-size: 0.72rem;
  }

  .btn-hero,
  .membership-btn,
  .btn-services,
  .page-cta-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .about-cards,
  .services-grid,
  .services .services-grid,
  .membership-grid,
  .membership .membership-grid,
  .membership-packages .membership-grid-full,
  .process-grid,
  .programs-grid,
  .zones-grid,
  .method-grid,
  .benefits-grid,
  .faq-grid,
  .stats-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(2, 8, 18, 0.1);
    padding-bottom: 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .club-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .club-gallery-card,
  .club-gallery-card-large,
  .club-gallery-card-wide,
  .club-gallery-card-tall {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 320px;
  }

  .club-gallery-card img {
    min-height: 320px;
  }

  .service-card,
  .service-card-content,
  .services .service-card,
  .services .service-card-content {
    min-height: 320px !important;
  }

  .membership .membership-card {
    min-height: 0;
  }

  .about-card-img {
    height: 180px;
  }

  .about-card-img,
  .zone-card-img,
  .service-card-img {
    aspect-ratio: 16 / 10;
  }

  .premium-marquee {
    padding: 18px 0;
  }

  .premium-marquee::before,
  .premium-marquee::after {
    width: 80px;
  }

  .marquee-content {
    gap: 28px;
  }

  .marquee-content span {
    font-size: clamp(16px, 5vw, 26px);
    letter-spacing: 0.18em;
  }

  .marquee-content-reverse {
    margin-top: 10px;
  }

  .cta-arcs {
    opacity: 0.35;
  }

  .cta-athlete,
  .page-img-tall,
  .pt-coach-photo {
    height: 320px;
    min-height: 320px;
  }

  .footer {
    padding: 64px 0 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-map {
    grid-column: auto;
  }

  .map-embed,
  .map-embed-footer,
  .map-embed-large {
    height: 240px;
    min-height: 240px;
  }

  .map-embed iframe {
    height: 100%;
  }

  .contact-form-wrap,
  .contact-details,
  .form-group input,
  .form-group textarea,
  .form-group select,
  .contact-form .btn {
    width: 100%;
  }

  .contact-detail-item a[href*="google.com/maps"] {
    word-break: break-word;
  }

  .club-lightbox {
    padding: 12px;
  }

  .club-lightbox-prev {
    left: 8px;
  }

  .club-lightbox-next {
    right: 8px;
  }

  .club-lightbox-dialog {
    width: 100%;
  }

  .back-to-top {
    right: 18px;
    bottom: 86px;
    width: 46px;
    height: 46px;
    z-index: 950;
  }

  .whatsapp-btn {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    z-index: 950;
  }

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

  .club-lightbox {
    z-index: 11000;
  }
}

/* --- 576px --- */
@media (max-width: 576px) {
  .container {
    padding-inline: 18px;
  }

  .hero-title-main {
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero-title-sub {
    font-size: clamp(0.85rem, 4.5vw, 1.15rem);
    letter-spacing: 0.22em;
  }

  .page-hero-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .about,
  .services,
  .membership,
  .cta,
  .club-gallery-section,
  .instagram-section,
  .page-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-hero {
    padding: 120px 0 56px;
  }

  .package-card,
  .membership .membership-card {
    padding: 28px 20px 22px;
  }

  .service-card-content,
  .services .service-card-content {
    padding: 24px 20px;
  }

  .gallery-overlay,
  .club-gallery-card .gallery-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 78px;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
  }
}

/* --- 390px --- */
@media (max-width: 390px) {
  .container {
    padding-inline: 16px;
  }

  .header {
    padding: 16px 0;
  }

  .logo-img {
    height: 30px;
    max-width: 160px;
  }

  .hero-inner {
    padding-top: 96px;
  }

  .hero-title-main {
    font-size: clamp(36px, 12vw, 48px);
  }

  .marquee-content span {
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .stat-num {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .club-gallery-card,
  .club-gallery-card img {
    min-height: 280px;
  }

  .btn,
  .btn-header,
  .mobile-cta {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

/* =============================================
   MOBILE PREMIUM REFINEMENT — 430px & 390px
   Yatay scroll önleme + mobil polish
   ============================================= */

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
video,
iframe {
  height: auto;
}

.container,
.header-inner,
.services-inner,
.services .services-inner,
.membership-inner,
.membership .membership-inner,
.contact-grid,
.footer-inner,
.club-gallery-grid,
.services-grid,
.membership-grid,
.membership .membership-grid {
  min-width: 0;
}

.services-grid > *,
.membership-grid > *,
.club-gallery-grid > *,
.footer-inner > *,
.contact-grid > * {
  min-width: 0;
}

.hamburger {
  flex-shrink: 0;
}

.services-watermark {
  display: none !important;
}

/* --- 430px --- */
@media (max-width: 430px) {
  .header {
    padding: 14px 0;
  }

  .header.scrolled {
    padding: 12px 0;
  }

  .logo-img {
    height: 32px;
    max-width: min(168px, 48vw);
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 32px;
    min-height: calc(100svh - 68px);
  }

  .hero-title-main {
    font-size: clamp(32px, 10vw, 42px) !important;
    letter-spacing: 0.05em !important;
    line-height: 0.95 !important;
  }

  .hero-title-sub {
    font-size: clamp(0.65rem, 3.2vw, 0.85rem) !important;
    letter-spacing: 0.1em !important;
    margin-top: 8px;
  }

  .hero-label {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    gap: 10px;
  }

  .hero-label::before {
    width: 22px;
  }

  .hero-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .page-hero {
    padding: 108px 0 48px;
  }

  .page-hero-title {
    font-size: clamp(1.65rem, 8.5vw, 2.35rem) !important;
    letter-spacing: 0.06em !important;
    line-height: 1.05 !important;
  }

  .page-hero-title span {
    display: block;
  }

  .page-hero-sub,
  .page-hero-desc {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .about-title,
  .services .services-title,
  .membership .membership-title,
  .page-section-title,
  .club-gallery-title,
  .cta-title {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem) !important;
    letter-spacing: 0.06em !important;
  }

  .services .services-title span,
  .membership .membership-title span,
  .cta-title span {
    display: block;
  }

  .service-card,
  .services .service-card,
  .service-card-content,
  .services .service-card-content {
    min-height: 300px !important;
  }

  .service-card-content,
  .services .service-card-content {
    padding: 22px 18px;
  }

  .service-title {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .package-card,
  .membership .membership-card {
    padding: 24px 18px 20px;
  }

  .membership .membership-badge {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.45rem;
    padding: 5px 9px;
    letter-spacing: 0.14em;
  }

  .package-title {
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding-right: 0;
  }

  .membership-list li,
  .package-features li {
    font-size: 0.78rem;
  }

  .club-gallery-card,
  .club-gallery-card img {
    min-height: 260px;
  }

  .gallery-overlay,
  .club-gallery-card .gallery-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .gallery-overlay-title {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hours {
    padding: 18px 16px;
  }

  .contact-hours li {
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-detail-item p a {
    word-break: break-word;
  }

  .form-title {
    font-size: 0.75rem;
    margin-bottom: 22px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-detail-item {
    padding: 16px 0;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .footer-col ul li a,
  .footer-col p:not(.footer-copy),
  .footer-address {
    font-size: 0.78rem;
    word-break: break-word;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .footer-bottom p {
    font-size: 0.68rem;
  }

  .cta-inner {
    gap: 32px;
  }

  .cta-title {
    line-height: 1.08;
  }

  .cta-arcs {
    opacity: 0.2;
  }

  .premium-marquee {
    overflow: hidden;
  }

  .marquee-content span {
    font-size: clamp(15px, 4.2vw, 17px);
    letter-spacing: 0.14em;
    padding: 0 20px;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }

  .whatsapp-btn {
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    width: 46px;
    height: 46px;
  }

  .club-lightbox {
    padding: 10px;
    overflow: hidden;
  }

  .club-lightbox-dialog {
    width: 100%;
    max-width: 100%;
  }

  .club-lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .club-lightbox-prev {
    left: 6px;
    bottom: 8px;
  }

  .club-lightbox-next {
    right: 6px;
    bottom: 8px;
  }

  .club-lightbox-caption {
    padding: 18px 14px 14px;
  }

  .club-lightbox-num {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .club-lightbox-title {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
}

/* --- 390px — ek sıkılaştırma --- */
@media (max-width: 390px) {
  .hero-title-main {
    font-size: clamp(30px, 11vw, 38px) !important;
  }

  .hero-title-sub {
    font-size: clamp(0.6rem, 3vw, 0.78rem) !important;
    letter-spacing: 0.08em !important;
  }

  .page-hero-title {
    font-size: clamp(1.5rem, 9vw, 2rem) !important;
  }

  .club-gallery-card,
  .club-gallery-card img {
    min-height: 240px;
  }

  .stat-num {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }

  .stat-label {
    font-size: 0.68rem;
  }
}

/* =============================================
   HEADER NAV — Desktop menu up to 1278px
   ============================================= */

@media (max-width: 1278px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .nav,
  .nav-list,
  .btn-header {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* =============================================
   MOBILE MENU PREMIUM — Off-canvas panel
   ============================================= */

@media (max-width: 1278px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(1, 4, 10, 0.78);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  html.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .whatsapp-btn,
  body.menu-open .back-to-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 430px);
    height: 100svh;
    max-height: 100svh;
    z-index: 999;
    padding: 28px 26px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    opacity: 1;
    transition: transform 0.45s var(--ease);
    background:
      radial-gradient(circle at 90% 30%, rgba(20, 68, 100, 0.14), transparent 38%),
      rgba(2, 7, 17, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
    contain: layout style paint;
  }

  body.menu-open .mobile-menu {
    transform: translate3d(0, 0, 0);
    z-index: 1002;
    will-change: transform;
  }

  body.menu-open .hamburger {
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-shrink: 0;
  }

  .mobile-menu-logo {
    display: inline-flex;
    text-decoration: none;
    min-width: 0;
    flex: 1;
  }

  .mobile-menu-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(190px, 52vw);
    object-fit: contain;
    object-position: left center;
  }

  .mobile-menu-close {
    position: relative;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.35s ease, background 0.35s ease;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
  }

  .mobile-menu-close span {
    position: absolute;
    left: 11px;
    right: 11px;
    top: 50%;
    height: 1px;
    background: var(--white);
    transition: background 0.3s ease;
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-close:hover span,
  .mobile-menu-close:focus-visible span {
    background: var(--white);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
  }

  .mobile-menu-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 246, 240, 0.88);
    text-decoration: none;
    font-size: clamp(14px, 3.8vw, 17px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.35s ease, opacity 0.35s ease;
  }

  .mobile-menu-nav a span {
    min-width: 22px;
    color: rgba(248, 246, 240, 0.38);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
  }

  .mobile-menu-nav a::before {
    display: none;
  }

  .mobile-menu-nav a:hover,
  .mobile-menu-nav a:focus-visible {
    color: var(--white);
    outline: none;
  }

  .mobile-menu-nav a.active {
    color: var(--white);
    font-weight: 600;
  }

  .mobile-menu-nav a.active span {
    color: rgba(248, 246, 240, 0.62);
  }

  .mobile-menu-cta {
    margin-top: 28px;
    min-height: 50px;
    width: 100%;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  }

  .mobile-menu-cta span {
    transition: transform 0.35s ease;
  }

  .mobile-menu-cta:hover,
  .mobile-menu-cta:focus-visible {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    outline: none;
  }

  .mobile-menu-cta:hover span,
  .mobile-menu-cta:focus-visible span {
    transform: translateX(6px);
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
  }

  .mobile-menu-footer p {
    margin: 0 0 4px;
    color: rgba(248, 246, 240, 0.45);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .mobile-menu-footer a {
    color: rgba(248, 246, 240, 0.72);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-menu-footer a:hover {
    color: var(--white);
  }

  .mobile-menu-footer span {
    margin-top: 8px;
    color: rgba(248, 246, 240, 0.32);
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }
}

@media (max-width: 390px) {
  .mobile-menu {
    padding: 24px 20px 20px;
  }

  .mobile-menu-header {
    margin-bottom: 32px;
  }

  .mobile-menu-logo-img {
    height: 30px;
    max-width: 168px;
  }

  .mobile-menu-nav a {
    min-height: 48px;
    font-size: 14px;
    letter-spacing: 0.12em;
    gap: 12px;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .mobile-menu-cta {
    margin-top: 24px;
    min-height: 46px;
    font-size: 10px;
  }
}

/* =============================================
   HOME SERVICES — Light section (#services)
   ============================================= */

#services.about {
  padding: clamp(96px, 9vw, 120px) 0;
}

#services .services-home-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 5vw, 56px);
}

#services .services-home-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

#services .services-home-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(185, 155, 99, 0.9);
}

#services .about-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

#services .about-title span {
  display: block;
}

#services .about-left .about-title::after {
  width: 64px;
  margin-top: 18px;
  margin-bottom: 0;
  background: linear-gradient(90deg, rgba(185, 155, 99, 0.85), transparent);
}

#services .services-home-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

#services .about-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 36px rgba(7, 27, 45, 0.06);
}

#services .about-card:hover .about-card-img {
  transform: scale(1.04);
}

#services .about-card-img {
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  transition: transform 0.65s var(--ease);
  overflow: hidden;
}

#services .about-card-img::before {
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.12), rgba(2, 8, 18, 0.52));
  transition: background 0.65s var(--ease);
  z-index: 1;
}

#services .about-card:hover .about-card-img::before {
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.08), rgba(2, 8, 18, 0.42));
}

#services .about-card-img-1 {
  /* image via HTML picture/img */
}

#services .about-card-img-1 picture,
#services .about-card-img-1 img {
  object-position: center 35%;
}

#services .about-card-img-1::before {
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.04), rgba(2, 8, 18, 0.2));
}

#services .about-card:hover .about-card-img-1::before {
  background: linear-gradient(to bottom, rgba(2, 8, 18, 0.02), rgba(2, 8, 18, 0.16));
}

#services .about-card-img-2 {
  /* image via HTML picture/img */
}

#services .about-card-img-3 {
  /* image via HTML picture/img */
}

#services .about-card-body {
  position: relative;
  padding: 24px 22px 26px;
}

#services .card-num {
  color: rgba(7, 27, 45, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  margin-bottom: 10px;
}

#services .card-title {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

#services .card-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  padding-right: 28px;
}

#services .services-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 26px;
  color: rgba(185, 155, 99, 0.7);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.4s var(--ease);
}

#services .about-card:hover {
  border-color: rgba(185, 155, 99, 0.35);
  box-shadow: 0 18px 45px rgba(7, 27, 45, 0.12);
}

#services .about-card:hover .services-card-arrow {
  opacity: 1;
  transform: translateX(0);
  color: rgba(185, 155, 99, 1);
}

@media (max-width: 992px) {
  #services .services-home-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #services .services-home-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #services .about-card-img,
  #services .about-card-img.lazy-media {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  #services .about-card-img-1,
  #services .about-card-img-1.lazy-media {
    aspect-ratio: 4 / 5;
  }

  #services .about-card-img-1 picture,
  #services .about-card-img-1 img {
    object-position: center center;
  }

  #services .about-card:hover .about-card-img {
    transform: none;
  }
}

/* CTA center image */
.cta .cta-athlete {
  background-color: #dcdcdc;
}

.cta-athlete img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}

.cta-athlete::before {
  opacity: 0.35;
}

/* Inner page hero — desktop center */
@media (min-width: 993px) {
  .page-hero {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .page-hero-inner {
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-hero-title {
    align-items: center;
  }

  .page-hero-desc {
    max-width: 640px;
    margin-inline: auto;
  }
}

/* ============================================================
   PERFORMANCE — Lazy media, aspect ratio, hero video
   ============================================================ */

.lazy-media {
  position: relative;
  overflow: hidden;
  background: #020711;
  contain: layout paint;
}

.lazy-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 28%,
    rgba(255, 255, 255, 0.045) 46%,
    transparent 64%
  );
  transform: translate3d(-120%, 0, 0);
  animation: mediaShimmer 1.5s linear infinite;
}

.lazy-media.is-loaded::after {
  display: none;
}

@keyframes mediaShimmer {
  to {
    transform: translate3d(120%, 0, 0);
  }
}

.lazy-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lazy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-media img.is-loaded {
  opacity: 1;
}

.lazy-media.is-loaded {
  background: #020711;
}

.lazy-media.is-loaded::after {
  display: none;
}

#services .about-card-img.lazy-media picture,
#services .about-card-img.lazy-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#services .about-card-img.lazy-media img.is-loaded {
  opacity: 1;
}

.cta-athlete.lazy-media picture,
.cta-athlete.lazy-media img {
  position: absolute;
  inset: 0;
}

.cta-athlete.lazy-media img {
  object-fit: cover;
  object-position: center center;
}

.club-gallery-card .lazy-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.club-gallery-card .lazy-media img {
  transform: scale3d(1.01, 1.01, 1);
}

@media (hover: hover) and (pointer: fine) {
  .club-gallery-card:hover .lazy-media img.is-loaded {
    transform: scale3d(1.05, 1.05, 1);
  }
}

.page-personal-training .pt-coach-photo.lazy-media picture,
.page-personal-training .pt-coach-photo.lazy-media img,
.page-performance .page-performance-photo.lazy-media picture,
.page-performance .page-performance-photo.lazy-media img {
  position: absolute;
  inset: 0;
}

.hero-video-poster-only {
  display: none;
}

.instagram-video-frame.lazy-media::after {
  animation: none;
  transform: none;
  background: linear-gradient(180deg, rgba(2, 7, 17, 0.08) 0%, rgba(2, 7, 17, 0.42) 100%);
  opacity: 0.55;
  z-index: 2;
  transition: opacity 0.45s ease;
}

.instagram-video-frame.lazy-media.is-loaded::after {
  display: none;
}

.instagram-video-card:hover .instagram-video-frame.lazy-media::after {
  opacity: 0.25;
}

video.lazy-video {
  background: #020711;
}

video.lazy-video[poster] {
  object-fit: cover;
}

.instagram-video.lazy-video,
.instagram-video.lazy-video[poster] {
  object-fit: contain;
  object-position: center;
}

/* ============================================================
   FLUIDITY — scroll, hover, marquee, reduced motion
   ============================================================ */

img,
video,
picture {
  max-width: 100%;
}

video {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.service-card,
.membership-card,
.club-gallery-card,
.about-card,
.package-card,
.zone-card {
  contain: layout paint;
}

.cta-athlete.lazy-media {
  aspect-ratio: 3 / 4;
}

@media (max-width: 768px) {
  .reveal {
    transform: translate3d(0, 16px, 0);
  }

  .header,
  .header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(2, 7, 17, 0.98);
    background-image:
      radial-gradient(circle at 90% 0%, rgba(20, 68, 100, 0.28), transparent 38%),
      linear-gradient(180deg, rgba(2, 7, 17, 0.99) 0%, rgba(6, 17, 31, 1) 100%);
  }
}

@media (max-width: 576px) {
  .marquee-track-reverse,
  .marquee-content-reverse {
    display: none;
  }

  .marquee-content {
    animation-duration: 48s;
  }

  .marquee-content span {
    letter-spacing: 0.16em;
  }
}

body.page-hidden .marquee-content {
  animation-play-state: paused;
}

.marquee-content {
  animation: marqueeMove 34s linear infinite;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  #services .about-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 18px 45px rgba(7, 27, 45, 0.12);
  }

  .about-card:hover {
    transform: translate3d(0, -4px, 0);
  }

  .club-gallery-card:hover .lazy-media img.is-loaded,
  .club-gallery-card:hover img.is-loaded {
    transform: scale3d(1.05, 1.05, 1);
  }

  .package-card:hover,
  .zone-card:hover,
  .program-card:hover {
    transform: translate3d(0, -6px, 0);
  }
}

@media (hover: none), (pointer: coarse) {
  .about-card:hover,
  #services .about-card:hover,
  .service-card:hover,
  .membership-card:hover,
  .club-gallery-card:hover,
  .package-card:hover,
  .zone-card:hover,
  .program-card:hover {
    transform: none;
  }

  .club-gallery-card:hover img,
  .club-gallery-card:hover .lazy-media img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .lazy-media::after {
    display: none;
  }

  .lazy-media img {
    opacity: 1;
  }

  .marquee-content {
    animation: none;
  }
}

/* ============================================================
   SEO — Local content, footer regions, form alerts
   ============================================================ */

.footer-inner {
  grid-template-columns: 1.1fr 0.75fr 0.85fr 1fr 0.75fr 1fr;
}

.footer-regions ul li a {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.seo-home {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.seo-home-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.seo-home-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(7, 27, 45, 0.45);
  margin-bottom: 14px;
}

.seo-home-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.seo-home-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(17, 24, 39, 0.72);
  margin-bottom: 14px;
}

.seo-home-text a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(17, 24, 39, 0.25);
}

.seo-home-text a:hover {
  text-decoration-color: rgba(17, 24, 39, 0.55);
}

.seo-home-links {
  padding: 28px 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(7, 27, 45, 0.06);
}

.seo-home-links-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 27, 45, 0.5);
  margin-bottom: 16px;
}

.seo-home-links ul {
  list-style: none;
}

.seo-home-links li + li {
  margin-top: 10px;
}

.seo-home-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.35s ease;
}

.seo-home-links a:hover {
  opacity: 0.65;
}

.page-hero-bg-local {
  background:
    radial-gradient(circle at 70% 20%, rgba(24, 70, 110, 0.22), transparent 42%),
    linear-gradient(160deg, #020711 0%, #06111f 55%, #0a1828 100%);
}

.local-seo-links {
  padding: 28px 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.local-seo-links-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 27, 45, 0.5);
  margin-bottom: 16px;
}

.local-seo-link-list {
  list-style: none;
}

.local-seo-link-list li + li {
  margin-top: 12px;
}

.local-seo-link-list a {
  font-size: 0.82rem;
  color: var(--text-dark);
  text-decoration: none;
}

.local-seo-link-list a:hover {
  opacity: 0.65;
}

.local-seo-area-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.local-seo-benefits {
  margin-top: 32px;
}

.local-seo-cta-wrap {
  margin-top: 28px;
}

.local-seo-h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.form-alert--success {
  background: rgba(2, 7, 17, 0.04);
  border-color: rgba(17, 24, 39, 0.12);
  color: var(--text-dark);
}

.form-alert--error {
  background: rgba(120, 24, 24, 0.06);
  border-color: rgba(120, 24, 24, 0.18);
  color: #5c1a1a;
}

.form-consent {
  margin-top: 4px;
  margin-bottom: 8px;
}

.form-consent .form-consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted-dark);
  cursor: pointer;
  margin-bottom: 0;
}

.form-consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--navy);
}

.form-consent-label span {
  flex: 1;
  min-width: 0;
}

.form-consent-label a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.footer-legal a {
  display: inline-block;
  color: rgba(248, 246, 240, 0.88);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal span {
  display: none;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-right: 32px;
}

.footer-brand .logo-footer {
  display: inline-flex;
  margin-bottom: 2px;
}

.footer-brand .footer-copy {
  color: rgba(248, 246, 240, 0.72);
}

.page-legal .page-hero-compact {
  min-height: 42vh;
  padding: 140px 0 56px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7, 27, 45, 0.45);
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--muted-dark);
}

.legal-content ul {
  padding-left: 18px;
  margin: 0 0 16px;
}

.legal-content a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sitemap-content {
  max-width: 960px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 36px;
}

.sitemap-col h2 {
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(7, 27, 45, 0.1);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.sitemap-list li {
  margin-bottom: 10px;
}

.sitemap-list a {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.sitemap-list a:hover,
.sitemap-list a:focus-visible {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sitemap-list a[aria-current="page"] {
  color: var(--text-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.legal-cta-wrap {
  margin-top: 40px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9800;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.94) 0%, rgba(6, 17, 31, 0.98) 100%);
  border-top: 1px solid rgba(185, 155, 99, 0.28);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  transform: translate3d(0, 110%, 0);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.cookie-banner.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-title {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.92);
}

.cookie-banner-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(245, 242, 236, 0.72);
  max-width: 760px;
}

.cookie-banner-desc a {
  color: rgba(245, 242, 236, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-desc a:hover {
  color: var(--gold);
}

.cookie-banner-actions {
  flex-shrink: 0;
}

.cookie-banner-accept {
  padding: 12px 22px;
  font-size: 0.62rem;
  white-space: nowrap;
}

body.cookie-banner-visible .whatsapp-btn {
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

body.cookie-banner-visible .back-to-top {
  bottom: calc(146px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-accept {
    width: 100%;
    justify-content: center;
  }

  body.cookie-banner-visible .whatsapp-btn {
    bottom: calc(132px + env(safe-area-inset-bottom, 0px));
  }

  body.cookie-banner-visible .back-to-top {
    bottom: calc(190px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-regions {
    grid-column: span 2;
  }

  .seo-home-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-regions {
    grid-column: auto;
  }
}

.local-seo-faq .faq-item + .faq-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.local-seo-faq .card-title {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.local-seo-photo {
  height: clamp(280px, 36vw, 420px);
}

.local-seo-services {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.local-seo-services .split-right > .btn {
  margin-top: 40px;
}

.section-light .local-seo-faq .card-desc a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   MEMBERSHIP POPUP
   ============================================= */
.membership-popup {
  position: fixed;
  inset: 0;
  z-index: 9950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.membership-popup.is-visible {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.membership-popup-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(24, 70, 110, 0.22), transparent 55%),
    rgba(1, 4, 10, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.membership-popup-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  max-height: min(86vh, 600px);
  max-height: min(86dvh, 600px);
  overflow: hidden;
  border: 1px solid rgba(185, 155, 99, 0.38);
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 155, 99, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(10, 21, 36, 0.98) 0%, rgba(2, 7, 17, 0.99) 100%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(185, 155, 99, 0.08);
  transform: translate3d(0, 24px, 0) scale(0.97);
  transition: transform 0.65s var(--ease);
}

.membership-popup-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.membership-popup-inner::-webkit-scrollbar {
  display: none;
}

.membership-popup.is-visible .membership-popup-content {
  transform: translate3d(0, 0, 0) scale(1);
}

.membership-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(185, 155, 99, 0.35);
  background: rgba(2, 7, 17, 0.72);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.membership-popup-close span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: rgba(248, 246, 240, 0.92);
  transition: background 0.35s var(--ease);
}

.membership-popup-close span:first-child {
  transform: rotate(45deg);
}

.membership-popup-close span:last-child {
  transform: rotate(-45deg);
}

.membership-popup-close:hover {
  border-color: rgba(185, 155, 99, 0.65);
  background: rgba(2, 7, 17, 0.92);
  transform: scale(1.04);
}

.membership-popup-media {
  position: relative;
  width: 100%;
  min-height: 220px;
  max-height: min(86vh, 600px);
  max-height: min(86dvh, 600px);
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.15) 0%, rgba(2, 7, 17, 0.55) 100%),
    url('images/hero-poster.webp') center center / cover no-repeat;
}

.popup-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(2, 7, 17, 0.35) 0%, rgba(2, 7, 17, 0.08) 55%, rgba(185, 155, 99, 0.12) 100%);
  border-right: 1px solid rgba(185, 155, 99, 0.18);
}

.membership-popup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3.2vw, 44px);
  min-width: 0;
  overflow-x: hidden;
}

.popup-eyebrow {
  display: inline-block;
  margin-bottom: clamp(12px, 2vw, 18px);
  font-size: clamp(0.54rem, 1.6vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(185, 155, 99, 0.92);
}

.membership-popup-text h2 {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.membership-popup-text p {
  margin: 0 0 clamp(16px, 2.4vw, 22px);
  max-width: 34rem;
  font-size: clamp(0.74rem, 1.6vw, 0.82rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: rgba(248, 246, 240, 0.72);
}

.popup-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(18px, 2.6vw, 24px);
}

.popup-benefits span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 12px;
  font-size: clamp(0.5rem, 1.4vw, 0.58rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.88);
  border: 1px solid rgba(185, 155, 99, 0.28);
  background: rgba(185, 155, 99, 0.06);
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.popup-primary-btn,
.popup-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  font-size: clamp(0.54rem, 1.5vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.popup-primary-btn {
  color: var(--black);
  background: linear-gradient(135deg, rgba(185, 155, 99, 0.95) 0%, rgba(210, 180, 120, 0.92) 100%);
  border: 1px solid rgba(185, 155, 99, 0.65);
}

.popup-primary-btn:hover {
  transform: translateY(-2px);
  color: var(--black);
  background: linear-gradient(135deg, rgba(210, 180, 120, 1) 0%, rgba(185, 155, 99, 0.98) 100%);
}

.popup-secondary-btn {
  color: rgba(248, 246, 240, 0.9);
  border: 1px solid rgba(248, 246, 240, 0.28);
  background: transparent;
}

.popup-secondary-btn:hover {
  color: var(--white);
  border-color: rgba(185, 155, 99, 0.55);
  transform: translateY(-2px);
}

body.membership-popup-open {
  overflow: hidden;
  touch-action: none;
}

html.membership-popup-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .membership-popup-content {
    width: min(640px, 100%);
    max-height: min(88vh, 560px);
    max-height: min(88dvh, 560px);
  }

  .membership-popup-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  .membership-popup-media {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
    min-height: clamp(180px, 42vw, 240px);
  }

  .popup-media-overlay {
    border-right: none;
    border-bottom: 1px solid rgba(185, 155, 99, 0.18);
  }
}

@media (max-width: 768px) {
  .membership-popup {
    padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
    align-items: center;
    justify-content: center;
  }

  .membership-popup-content {
    width: min(420px, 100%);
    max-height: min(calc(100dvh - 24px), 92vh);
    margin: auto;
  }

  .membership-popup-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .membership-popup-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .membership-popup-media {
    width: 100%;
    min-height: clamp(160px, 36vw, 220px);
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .popup-media-overlay {
    border-right: none;
    border-bottom: 1px solid rgba(185, 155, 99, 0.18);
  }

  .membership-popup-text {
    padding: 18px 18px 22px;
  }

  .membership-popup-text h2 {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem);
  }

  .membership-popup-text p {
    font-size: 0.76rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .popup-benefits {
    gap: 6px;
    margin-bottom: 16px;
  }

  .popup-benefits span {
    padding: 6px 10px;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .popup-actions {
    flex-direction: column;
    gap: 10px;
  }

  .popup-primary-btn,
  .popup-secondary-btn {
    width: 100%;
    min-height: 42px;
    padding: 11px 16px;
  }
}

@media (max-width: 430px) {
  .membership-popup-content {
    width: 100%;
    max-height: min(calc(100dvh - 16px), 94vh);
  }

  .membership-popup-media {
    min-height: clamp(150px, 40vw, 200px);
  }

  .membership-popup-text {
    padding: 16px 16px 20px;
  }

  .popup-eyebrow {
    margin-bottom: 10px;
    letter-spacing: 0.22em;
  }

  .membership-popup-text h2 {
    font-size: clamp(1.15rem, 7vw, 1.45rem);
    margin-bottom: 10px;
  }
}

@media (max-height: 740px) and (min-width: 769px) {
  .membership-popup-content {
    max-height: min(calc(100dvh - 20px), 94vh);
  }

  .membership-popup-media {
    min-height: 160px;
    max-height: 180px;
  }

  .membership-popup-text {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .popup-benefits {
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) and (max-height: 740px) {
  .membership-popup-content {
    max-height: min(calc(100dvh - 16px), 94vh);
  }

  .membership-popup-media {
    min-height: clamp(130px, 28vh, 170px);
    aspect-ratio: 16 / 10;
  }

  .membership-popup-text {
    padding: 14px 16px 18px;
  }

  .membership-popup-text h2 {
    font-size: clamp(1.1rem, 6vw, 1.35rem);
    margin-bottom: 8px;
  }

  .membership-popup-text p {
    font-size: 0.72rem;
    margin-bottom: 12px;
  }

  .popup-benefits {
    gap: 5px;
    margin-bottom: 12px;
  }

  .popup-benefits span {
    padding: 5px 8px;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .popup-primary-btn,
  .popup-secondary-btn {
    min-height: 40px;
    padding: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .membership-popup,
  .membership-popup-content,
  .membership-popup-close,
  .popup-primary-btn,
  .popup-secondary-btn {
    transition: none;
  }

  .membership-popup-content {
    transform: none;
  }
}

/* =============================================
   MOBILE HEADER — Responsive layout (final overrides)
   ============================================= */
@media (max-width: 1278px) {
  .header {
    padding-top: max(16px, env(safe-area-inset-top, 0px));
    padding-bottom: 16px;
  }

  .header.scrolled {
    padding-top: max(12px, env(safe-area-inset-top, 0px));
    padding-bottom: 12px;
  }

  .header .header-inner.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding-left: max(clamp(20px, 5vw, 28px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(20px, 5vw, 28px), env(safe-area-inset-right, 0px));
  }

  .header .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .header .logo-img {
    height: clamp(30px, 7.5vw, 38px);
    width: auto;
    max-width: min(210px, 62vw);
    object-fit: contain;
    object-position: left center;
  }

  .header .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: flex-start;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-inner {
    align-self: stretch;
    width: 100%;
    padding-top: calc(92px + env(safe-area-inset-top, 0px));
    padding-bottom: 40px;
    min-height: calc(100svh - env(safe-area-inset-bottom, 0px));
    min-height: calc(100dvh - env(safe-area-inset-bottom, 0px));
  }

  .page-hero {
    padding-top: calc(124px + env(safe-area-inset-top, 0px));
  }
}

@media (max-width: 430px) {
  .header {
    padding-top: max(14px, env(safe-area-inset-top, 0px));
    padding-bottom: 14px;
  }

  .header.scrolled {
    padding-top: max(10px, env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
  }

  .header .header-inner.container {
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
  }

  .header .logo-img {
    height: clamp(28px, 7vw, 34px);
    max-width: min(176px, 58vw);
  }

  .hero-inner {
    padding-top: calc(84px + env(safe-area-inset-top, 0px));
    padding-bottom: 32px;
  }

  .page-hero {
    padding-top: calc(112px + env(safe-area-inset-top, 0px));
  }
}
