/* ===== CSS VARIABLES — Original color palette ===== */
:root {
  --white: #ffffff;
  --black: #000000;
  --accent: hsl(178, 55.3%, 68.4%);        /* Teal/Seafoam #79CEC9 */
  --accent-light: hsl(178, 55.3%, 90%);
  --accent-dark: hsl(178, 55.3%, 45%);
  --light-accent: hsl(216, 8.2%, 23.9%);    /* Dark Blue-Grey #383D44 */
  --dark-accent: hsl(349.2, 71.9%, 65.1%);  /* Coral/Rose #E06B7D */
  --dark-accent-light: hsl(349.2, 71.9%, 92%);
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-accent);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.8;
}

/* Content body readability tweaks */
.content-body {
  line-height: 1.9;
}
.content-body p {
  margin: 0 0 1.25rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--accent);
  color: var(--light-accent);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--light-accent);
  border-color: var(--light-accent);
}
.btn-secondary:hover {
  background: var(--light-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-rose {
  background: var(--dark-accent);
  color: var(--white);
  border-color: var(--dark-accent);
}
.btn-rose:hover {
  background: hsl(349.2, 71.9%, 55%);
  border-color: hsl(349.2, 71.9%, 55%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== ACCESSIBILITY: Focus States ===== */
.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.text-secondary {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.text-muted {
  font-size: 0.9rem;
  color: var(--gray-500);
  opacity: 0.75;
}

.mt-secondary {
  margin-top: 1rem;
}

p.text-secondary {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gray-700);
}

p.text-muted {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}
.header-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-accent);
}
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition);
}
.header-nav a:hover { color: var(--light-accent); }
.header-nav a:hover::after { width: 100%; }
.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all var(--transition);
}
.header-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}
.header-social svg { width: 18px; height: 18px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
  pointer-events: none;
  user-select: none;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 2rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  touch-action: pan-y;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light-accent);
}

.mobile-menu-close {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
  position: relative;
  z-index: 1002;
  pointer-events: auto;
  touch-action: manipulation;
}

.mobile-menu-close:hover {
  background-color: var(--gray-100);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--gray-700);
  transition: transform 0.2s;
  pointer-events: none;
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light-accent);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-link:hover {
  background-color: var(--gray-100);
  color: var(--accent-dark);
  transform: translateX(4px);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--accent);
  transition: height 0.2s;
  border-radius: 2px;
}

.mobile-nav-link:hover::before {
  height: 20px;
}

.mobile-social-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-social-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
}

.mobile-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.2s;
  min-width: 44px;
  min-height: 44px;
}

/* iOS social icon fallbacks */
.social-icon-facebook,
.social-icon-instagram {
  display: none;
}

@media (max-width: 768px) {
  .social-icon-facebook,
  .social-icon-instagram {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
  }
}

.mobile-social-link:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 50%, var(--white) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, hsla(178, 55%, 68%, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(349, 72%, 65%, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 72px;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--light-accent);
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--accent-dark);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.hero-visual-shuttle {
  font-size: 8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}
.hero-visual-info {
  background: var(--accent-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.hero-visual-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-accent);
  margin-bottom: 0.5rem;
}
.hero-visual-info p {
  font-size: 0.85rem;
  color: var(--gray-700);
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-float-badge.top-right {
  top: -1rem;
  right: -1rem;
  color: var(--accent-dark);
}

/* ===== MISSION / ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feature {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition);
}
.about-feature:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-accent);
  margin-bottom: 0.25rem;
}
.about-feature p {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.about-image-wrapper {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--gray-100) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.about-image-main .placeholder-text {
  text-align: center;
  color: var(--light-accent);
}
.about-image-main .placeholder-text .emoji { font-size: 4rem; margin-bottom: 1rem; }
.about-image-main .placeholder-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-image-main .placeholder-text p { font-size: 0.9rem; color: var(--gray-700); }

/* ===== MEMBERSHIP ===== */
.membership {
  background: var(--light-accent);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.membership::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(178, 55%, 68%, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.membership .section-label { color: var(--accent); }
.membership .section-label::before { background: var(--accent); }
.membership .section-title { color: var(--white); }
.membership .section-subtitle { color: rgba(255,255,255,0.8); }
.membership-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.membership-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.membership-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.membership-price-period {
  font-size: 1rem;
  opacity: 0.7;
}
.membership-benefits {
  list-style: none;
  margin-bottom: 2rem;
}
.membership-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.membership-benefits li:last-child { border-bottom: none; }
.membership-benefits li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}
.membership .btn-primary {
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: var(--light-accent);
}
.membership .btn-primary:hover {
  background: var(--white);
  color: var(--light-accent);
}

/* ===== PROGRAMS ===== */
.programs { background: var(--gray-50); }
.programs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.programs-header .section-label { justify-content: center; }
.programs-header .section-subtitle { margin: 0 auto; }
.programs-notice {
  background: var(--dark-accent-light);
  border-left: 4px solid var(--dark-accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.program-card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.program-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.program-card-badge.adults {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.program-card-badge.juniors {
  background: var(--dark-accent-light);
  color: var(--dark-accent);
}
.program-card-badge.advanced {
  background: hsl(216, 8.2%, 90%);
  color: var(--light-accent);
}
.program-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-accent);
}
.program-card-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray-500);
}
.program-card-body { padding: 1rem 1.5rem 1.5rem; }
.program-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-accent);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.program-card-details {
  list-style: none;
  margin-bottom: 1rem;
}
.program-card-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.3rem 0;
}
.program-card-details li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-dark);
}
.program-card-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-700);
}
.program-card-tag.current {
  background: hsl(120, 40%, 92%);
  color: hsl(120, 40%, 35%);
}
.program-card-tag.past {
  background: var(--gray-100);
  color: var(--gray-500);
}

/* ===== LOCATIONS ===== */
.locations { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.location-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.location-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.location-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.location-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--light-accent);
  margin-bottom: 0.5rem;
}
.location-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.location-card .transit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ===== FAQ / ACCORDION ===== */
.faq { background: var(--gray-50); }
.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.faq-header .section-label { justify-content: center; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-accent);
  cursor: pointer;
  text-align: left;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent-dark);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--light-accent);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  padding: 0.3rem 0;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a { transition: opacity var(--transition); }
.footer-bottom-links a:hover { opacity: 1; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}
.scroll-top svg { width: 20px; height: 20px; }

/* ===== LOCATION INSTRUCTIONS ===== */
.location-instructions {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}

.instruction-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.instruction-header svg {
  flex-shrink: 0;
}

.instruction-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrapper { order: -1; }
  .membership-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav, .header-social { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 4rem; }
  .hero-stats { gap: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .content-body { padding: 0 0.5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .content-body { padding: 0 1rem; }
}
