/* ========================================
   Twin Lakes Fitness — Style Sheet
   Dark theme, red accent, Inter font
   ======================================== */

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

:root {
  --orange: #d1001f;
  --orange-light: #e11b22;
  --orange-dark: #b0001a;
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;
  --text: #f0f0f0;
  --text-muted: #999;
  --text-dim: #666;
  --border: #2a2a2a;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

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

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

.section { padding: 100px 0; }

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 12px;
}
.section-title--left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 0, 31, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--full { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo:hover { color: var(--text); }

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-btn {
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-btn.nav-btn--ghost {
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.nav-btn.nav-btn--ghost:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}
.nav-btn:not(.nav-btn--ghost) {
  background: var(--orange) !important;
  color: #fff !important;
}
.nav-btn:not(.nav-btn--ghost):hover {
  background: var(--orange-light) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0005 50%, #0a0a0a 100%);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- INFO STRIP ---------- */
.info-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.info-strip-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.info-item:hover { color: var(--orange); }
.info-item svg { flex-shrink: 0; opacity: 0.6; }

/* ---------- PRICING ---------- */
.pricing { background: var(--bg); }

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.price-card:hover {
  border-color: var(--text-dim);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: var(--orange);
  position: relative;
}
.price-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  z-index: -1;
  opacity: 0.15;
}

.price-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.price-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.price-card-type {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-card-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.price-card-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
  color: var(--text-muted);
}
.price-card-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

/* Visit Packs card */
.price-card--visits {
  grid-column: span 3;
}

.visit-list {
  list-style: none;
  margin-bottom: 24px;
}
.visit-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.visit-list li:last-child { border-bottom: none; }
.visit-list li div { display: flex; flex-direction: column; gap: 2px; }
.visit-list li strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.visit-list li span:not(.visit-price) {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.visit-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
}

.price-card--visits .btn { max-width: 300px; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-text .btn { margin-top: 12px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--text-dim);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--orange);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- TRAINING ---------- */
.training { background: var(--bg); }

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.trainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.trainer-card:hover {
  border-color: var(--text-dim);
}

.trainer-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: border-color var(--transition);
}
.trainer-card:hover .trainer-photo {
  border-color: var(--orange);
}

.trainer-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.trainer-creds {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

.trainer-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

.trainer-expand {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--transition);
}
.trainer-expand:hover { color: var(--orange-light); }

.trainer-full-bio {
  margin-top: 16px;
  text-align: left;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}
.trainer-full-bio p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Training Form */
.training-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.training-form .btn { margin-top: 8px; }

/* ---------- HOURS ---------- */
.hours {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.hours-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.hours-note {
  font-style: italic;
  font-size: 0.9rem !important;
}

.hours-text .btn { margin-top: 8px; }

.hours-table-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 14px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: none; }

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.hours-table td:last-child {
  color: var(--text-muted);
}

/* Highlight today */
.hours-table tr.today td {
  color: var(--orange) !important;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--orange); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '\2212';
  color: var(--orange);
}

/* Remove default marker */
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeIn 0.25s ease;
}

/* ---------- GYM RULES (poster style) ---------- */
.rules {
  background: #000;
  padding: 80px 0;
}

.rules-poster {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  border: 3px solid var(--orange);
  border-radius: var(--radius);
  background: #000;
  text-align: center;
}

.rules-header {
  margin-bottom: 48px;
}

.rules-header h2 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}

.rules-header p {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.rules-list {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.rule {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(209, 0, 31, 0.15);
}
.rule:last-child { border-bottom: none; }

.rule-num {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  min-width: 36px;
}

.rule-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rule-body strong {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.2;
}

.rule-body span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .rules-poster { padding: 40px 24px 36px; }
  .rule { gap: 12px; padding: 14px 0; }
  .rule-num { font-size: 1.3rem; min-width: 28px; }
}

/* ---------- DOOR ACCESS PAGE ---------- */
.door-access-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.door-access-header {
  text-align: center;
  margin-bottom: 64px;
}

.door-access-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.door-access-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.steps {
  max-width: 640px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 10px;
}

.step-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-content p:last-child { margin-bottom: 0; }

.step-screenshot {
  max-width: 220px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 4px;
  margin-bottom: 12px;
}

.step-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 4px;
}
.step-tip svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}
.step-tip span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.app-badge:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.door-access-help {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto;
}
.door-access-help p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: var(--text-dim);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial cite span {
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 8px;
  font-size: 0.8rem;
}

.testimonials-cta { text-align: center; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-hiring a { color: var(--text-dim); }
.footer-hiring a:hover { color: var(--orange); }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--visits { grid-column: span 2; }
  .trainers-grid { max-width: 100%; }
}

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

  /* Mobile Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 1rem;
    padding: 12px 0;
  }
  .nav-btn { text-align: center; margin-top: 8px; }

  /* Hero */
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-sub br { display: none; }

  /* Info strip */
  .info-strip-inner { flex-direction: column; align-items: center; gap: 12px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--visits { grid-column: span 1; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title--left { text-align: center; }

  /* Trainers */
  .trainers-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .training-form-wrap { padding: 32px 24px; }

  /* Hours */
  .hours-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- Massage Section ---------- */
.massage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.massage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color var(--transition);
}

.massage-card:hover {
  border-color: var(--orange);
}

.massage-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.massage-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.massage-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.massage-option {
  font-size: 1rem;
  color: var(--text);
}

.massage-option strong {
  color: var(--orange);
}

.massage-info {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.massage-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  border: 3px solid var(--border);
  transition: border-color var(--transition);
}

.massage-info:hover .massage-photo {
  border-color: var(--orange);
}

.massage-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.massage-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.massage-note {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

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

/* ---------- MASSAGE PAGE (standalone) ---------- */
.massage-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.massage-page-header {
  text-align: center;
  margin-bottom: 64px;
}

.massage-page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.massage-page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 20px;
}

.massage-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.massage-rating-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.massage-reviews-section {
  margin-top: 80px;
}

.massage-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.massage-reviews-cta {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.7rem; padding: 5px 12px; }
  .price-card { padding: 24px 20px; }
  .about-features { grid-template-columns: 1fr; }
}
