:root {
  --bg: #0d1117;
  --panel: #111722;
  --muted: #9fb0c3;
  --text: #e7edf5;
  --accent: #f5b544;
  --accent-2: #4ad1c8;
  --stroke: rgba(255,255,255,0.08);
  --glow: rgba(244,181,68,0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: radial-gradient(150% 120% at 20% 20%, rgba(74,209,200,0.06), transparent),
              radial-gradient(120% 100% at 80% 10%, rgba(245,181,68,0.07), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding: 24px;
}

.page {
  max-width: 1180px;
  margin: 0 auto 80px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(17,23,34,0.95), rgba(12,16,23,0.96));
  box-shadow: 0 25px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.02);
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(245,181,68,0.35));
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

nav span {
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.hero {
  position: relative;
  padding: 64px 28px 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,17,23,0.2) 0%, rgba(13,17,23,0.8) 60%, rgba(13,17,23,0.95) 100%),
              url('Chicago-Sports-Fitness-Club_f508788b1abb5173853103d4bb25785a.jpg') center/cover;
  filter: saturate(1.05);
  z-index: 0;
  transform: translateY(var(--parallax, 0px));
  transition: transform 200ms ease;
}

.hero-content {
  position: relative;
  max-width: 680px;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,209,200,0.12);
  color: var(--accent-2);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74,209,200,0.25);
  font-size: 13px;
  letter-spacing: 0.4px;
}

h1 {
  font-family: 'Space Grotesk', 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
}

.btn-primary {
  background: linear-gradient(120deg, #f8c251, #f19a2e);
  color: #0d1117;
  box-shadow: 0 10px 30px rgba(244,181,68,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.btn-ghost {
  border-color: var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.grid {
  display: grid;
  gap: 18px;
  padding: 0 28px 52px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.card h3 {
  font-family: 'Space Grotesk', 'Sora', sans-serif;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2px;
}

.highlight::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--glow);
}

.section-title {
  font-family: 'Space Grotesk', 'Sora', sans-serif;
  font-size: 26px;
  letter-spacing: -0.2px;
  margin: 0 28px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span {
  color: var(--accent-2);
  font-size: 15px;
  letter-spacing: 0.6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  padding: 0 28px 60px;
}

.gallery figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0b0f15;
  min-height: 200px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,17,23,0.85) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: 180ms ease;
}

.gallery figure:hover img { transform: scale(1.02); filter: saturate(1.2); }
.gallery figure:hover::after { opacity: 1; }
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 28px 60px;
}

.info-block {
  background: linear-gradient(135deg, rgba(245,181,68,0.14), rgba(17,23,34,0.9));
  border: 1px solid rgba(245,181,68,0.3);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(244,181,68,0.18);
}

.list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.list li {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(74,209,200,0.12);
  border: 1px solid rgba(74,209,200,0.3);
  font-size: 13px;
  color: var(--accent-2);
}

footer {
  padding: 24px 28px 36px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.muted { color: var(--muted); }
.mt-14 { margin-top: 14px; }
.mb-12 { margin-bottom: 12px; }
.title-compact {
  font-family: 'Space Grotesk', 'Sora', sans-serif;
  margin: 10px 0 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  body { padding: 16px; }
  header { flex-direction: column; align-items: flex-start; gap: 12px; }
  nav { width: 100%; justify-content: space-between; }
  .hero { padding: 54px 20px 34px; }
  .grid, .gallery, .split { padding-left: 20px; padding-right: 20px; }
  footer { flex-direction: column; }
}
