/* Threws - Professional Modern Design */
:root {
  --primary: #0f172a;
  --primary-soft: #1e293b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-soft: #e0f2fe;
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --card-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.06);
  --card-shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.08), 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23f8fafc'/%3E%3Cpath d='M50 50m-40 0a40 40 0 1 1 80 0a40 40 0 1 1-80 0' fill='none' stroke='%23e2e8f0' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  z-index: 100;
  transition: top 0.2s;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.header .logo img {
  height: 48px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius);
  z-index: 110;
  position: relative;
  transition: background 0.2s;
}
.menu-toggle:hover {
  background: var(--bg);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .nav-overlay {
    display: block;
  }
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.main-nav > ul > li > a:hover {
  color: var(--primary);
  background: var(--bg);
}
.main-nav .nav-cta {
  color: var(--accent);
  font-weight: 600;
  margin-left: 8px;
}
.main-nav .nav-cta:hover {
  color: var(--accent-hover);
}
.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Dropdown - horizontal layout */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--surface);
  box-shadow: var(--card-shadow-hover);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  list-style: none;
  border: 1px solid var(--border);
  z-index: 10;
  min-width: auto;
  max-width: 90vw;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown li {
  margin: 0;
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.dropdown li a:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}
/* Dropdown arrow (mobile) */
.has-dropdown > a {
  position: relative;
  padding-right: 36px;
}
.has-dropdown > a::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
@media (min-width: 1025px) {
  .has-dropdown > a::after {
    display: none;
  }
  .has-dropdown > a {
    padding-right: 16px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-primary {
  background: var(--primary);
  color: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}
.btn-primary:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}
.btn-secondary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}
.btn-secondary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-1px);
}
.btn-small {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

/* Sections */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
}

.section-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}

.section-tagline {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Hero - with background image */
.hero {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-soft) 50%, #0c4a6e 100%);
  color: var(--surface);
  padding: 120px 32px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,41,59,0.88) 50%, rgba(12,74,110,0.9) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='10' cy='20' r='1'/%3E%3Ccircle cx='70' cy='60' r='1'/%3E%3Ccircle cx='20' cy='60' r='1'/%3E%3Ccircle cx='60' cy='20' r='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-bullets {
  margin-bottom: 36px;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px 40px 32px 2.75em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  list-style: decimal;
  list-style-position: outside;
}
.hero-bullets li {
  margin: 0 0 16px 0;
  padding-left: 8px;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.hero-bullets li:last-child {
  margin-bottom: 0;
}

.hero .btn {
  margin: 6px 8px 6px 0;
}
.hero-isjr {
  margin: 20px 0 10px;
  font-weight: 700;
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--surface);
}
@media (min-width: 1024px) {
  .page-hero {
    background-attachment: fixed;
    padding: 140px 32px 100px;
  }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 100%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.page-hero p {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.6;
}
.page-hero-about {
  background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?auto=format&fit=crop&w=1920&q=80');
}

/* About page - stats strip */
.about-stats {
  background: var(--primary);
  color: var(--surface);
  padding: 48px 32px;
  margin: 0;
}
.about-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stat-num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--surface);
}
.about-stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
  font-weight: 500;
}

/* About page - image + content split */
.about-split {
  padding: 80px 32px 100px;
  margin: 0;
}
.about-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}
.about-split-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.about-split-content h2 {
  margin-top: 0;
  text-align: left;
}
.about-split-content p {
  max-width: none;
}
.about-split-alt .about-split-inner {
  /* content first in HTML = left column, image right */
}

/* About page - values grid */
.about-values {
  background: var(--bg);
  padding: 100px 32px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.about-value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.about-value-icon {
  height: 180px;
  overflow: hidden;
}
.about-value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 24px 8px;
}
.about-value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 24px 24px;
  max-width: none;
}

/* About page - CTA block with image */
.about-cta {
  padding: 0;
  margin: 0;
  background: var(--surface);
}
.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.about-cta-image {
  min-height: 320px;
  overflow: hidden;
}
.about-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.about-cta-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--surface);
}
.about-cta-content h2 {
  color: var(--surface);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}
.about-cta-content p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  max-width: none;
}
.about-cta-content .btn-primary {
  background: var(--surface);
  color: var(--primary);
  align-self: flex-start;
}
.about-cta-content .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

@media (max-width: 1024px) {
  .about-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .about-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-split-image img {
    height: 280px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-inner {
    grid-template-columns: 1fr;
  }
  .about-cta-content {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .about-stats {
    padding: 36px 24px;
  }
  .about-stats-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-split {
    padding: 56px 24px 72px;
  }
  .about-split-image img {
    height: 240px;
  }
  .about-cta-content {
    padding: 40px 24px;
  }
}

/* Welcome */
.welcome {
  background: var(--surface);
  padding: 100px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1f5f9' fill-opacity='0.6'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.welcome .welcome-inner {
  position: relative;
  z-index: 1;
}

.welcome-inner {
  max-width: 680px;
  margin: 0 auto;
}

.welcome-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.welcome-to {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.welcome h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 16px;
}
.welcome-sub {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--text);
}
.welcome-reg {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.welcome-founded {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.welcome-desc {
  margin-bottom: 32px;
  line-height: 1.75;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Features */
.features {
  background: var(--bg);
  padding: 100px 32px;
  position: relative;
}
.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.8;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: transparent;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Members */
.members-section {
  background: var(--surface);
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}

.members-section .section-inner h2 {
  margin-bottom: 48px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.member-card {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.member-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.member-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 20px 4px;
  letter-spacing: -0.01em;
}
.member-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 0 20px;
}

.members-section .btn {
  display: inline-flex;
  margin: 0 auto;
}

/* Membership CTA */
.membership-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--surface);
  padding: 100px 32px;
  text-align: center;
  position: relative;
}
.membership-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.membership-img {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  filter: brightness(1.05);
}
.membership-cta .section-inner h2 {
  color: var(--surface);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.membership-cta p {
  margin-bottom: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.membership-cta .btn-primary {
  background: var(--surface);
  color: var(--primary);
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.membership-cta .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Facilities */
.facilities {
  background: var(--bg);
  padding: 100px 32px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.facility-card {
  background: var(--surface);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.facility-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.facility-card > h3,
.facility-card > p,
.facility-card > .price,
.facility-card > .btn {
  padding-left: 28px;
  padding-right: 28px;
}
.facility-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px;
  letter-spacing: -0.01em;
}
.facility-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.facility-card .price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.facility-card .btn {
  margin-bottom: 28px;
}

.facility-img-wide {
  height: 300px;
  max-width: 420px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  object-fit: cover;
}
.facility-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}
.facility-card-wide .facility-img-wide {
  grid-column: 1;
  grid-row: 1 / -1;
  height: 100%;
  min-height: 280px;
}
.facility-card-wide .facility-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facility-card-wide h3 {
  margin-top: 0;
}
.facility-card-wide .btn {
  margin-bottom: 0;
  align-self: flex-start;
}

/* Join Team */
.join-team {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--surface);
  padding: 100px 32px;
  text-align: center;
}

.join-team .section-inner h2 {
  color: var(--surface);
  margin-bottom: 16px;
}
.join-team p {
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.join-team .btn-primary {
  background: var(--surface);
  color: var(--accent);
  margin-top: 28px;
}
.join-team .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Support / Contact */
.support {
  background: var(--surface);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  position: relative;
}
.support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 30%);
  opacity: 0.35;
  pointer-events: none;
}
.support .section-inner,
.support .support-inner {
  position: relative;
  z-index: 1;
}

.support-inner h2 {
  margin-bottom: 8px;
}
.support-tagline {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--primary);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-links a:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}
.contact-block {
  text-align: center;
  padding: 28px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-block h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-block p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-block a {
  color: var(--accent);
  font-weight: 600;
}
.contact-block a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  margin-bottom: 28px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.375rem;
}

.contact-form .form-row {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form .name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form button {
  margin-top: 12px;
  width: 100%;
  padding: 16px;
}

/* Testimonials */
.testimonials {
  background: var(--bg);
  padding: 100px 32px;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

.testimonials .section-inner h2 {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  border: 3px solid var(--accent-soft);
}
.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1rem;
}
.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--surface);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 14px;
  max-width: 380px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer ul {
  list-style: none;
}
.footer li {
  margin-bottom: 10px;
}
.footer a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--surface);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.85;
}
.footer-bottom p {
  margin-bottom: 8px;
}
.copyright,
.powered {
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Mobile */
/* Content section (inner pages) */
.content-section {
  padding: 80px 32px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}
.content-section p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 72ch;
}
.content-section ul {
  margin: 16px 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 14px 24px;
  }
  .main-nav > ul > li > a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .section-inner {
    padding: 72px 24px;
  }
  .content-section {
    padding: 56px 24px 72px;
  }
  .page-hero {
    padding: 80px 24px 64px;
  }
  .hero {
    padding: 80px 24px 100px;
  }
  .welcome, .features, .members-section, .membership-cta, .facilities, .join-team, .support, .testimonials {
    padding: 72px 24px;
  }
  .facility-card-wide {
    grid-template-columns: 1fr;
  }
  .facility-card-wide .facility-img-wide {
    height: 260px;
    min-height: auto;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .facility-card-wide .facility-content {
    padding: 28px 28px 32px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

body.menu-open {
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 14px 20px;
  }
  .facility-card-wide {
    grid-template-columns: 1fr;
  }
  .facility-card-wide .facility-img-wide {
    grid-row: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
    padding: 72px 0 28px;
    padding-top: max(72px, env(safe-area-inset-top));
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    border-left: none;
    z-index: 106;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
  .main-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .main-nav > ul > li {
    border-bottom: 1px solid var(--border);
  }
  .main-nav > ul > li:last-child {
    border-bottom: none;
  }
  .main-nav > ul > li > a {
    padding: 16px 24px;
    font-size: 1.06rem;
    font-weight: 500;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 0;
    color: var(--accent);
  }
  .has-dropdown.is-open > a::after {
    transform: rotate(180deg);
  }
  .dropdown {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 12px 24px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border: none;
    background: var(--bg);
    border-radius: 0 0 var(--radius) var(--radius);
    border-left: 3px solid var(--accent);
    margin-left: 0;
  }
  .has-dropdown.is-open .dropdown {
    max-height: 80vh;
  }
  .dropdown li a {
    padding: 12px 14px;
    font-size: 0.98rem;
    white-space: normal;
  }
  .dropdown li:first-child a {
    padding-top: 12px;
  }
  .section-inner {
    padding: 56px 20px;
  }
  .hero {
    padding: 60px 20px 80px;
  }
  .hero-bullets {
    padding: 24px 24px 24px 2.5em;
  }
  .hero-bullets li {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .welcome, .features, .members-section, .membership-cta, .facilities, .join-team, .support, .testimonials {
    padding: 56px 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .footer-brand p {
    max-width: none;
  }
  .contact-form-wrap {
    padding: 28px 24px;
  }
  .contact-form .name-fields {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 64px 20px 48px;
    background-attachment: scroll;
  }
  .page-hero h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 640px) {
  .main-nav {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }
  .hero .btn {
    width: 100%;
    margin: 8px 0;
  }
  .hero-isjr {
    margin-top: 14px;
  }
  .section-inner {
    padding: 48px 20px;
  }
  .facility-card > h3,
  .facility-card > p,
  .facility-card > .price,
  .facility-card > .btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
    min-height: 56px;
  }
  .header .logo img {
    height: 40px;
  }
  .menu-toggle {
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }
  .section-inner {
    padding: 48px 16px;
  }
  .content-section {
    padding: 40px 16px 56px;
  }
  .hero-bullets {
    padding: 20px 20px 20px 2.25em;
  }
  .hero-bullets li {
    font-size: 0.9375rem;
    margin-bottom: 12px;
  }
  .members-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .main-nav > ul > li > a {
    padding: 16px 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .dropdown li a {
    padding: 12px 12px 12px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
