/* Limitless Fitness Club — shared styles */

:root {
  --navy: #0a1f44;
  --navy-deep: #061530;
  --navy-soft: #1a3360;
  --white: #ffffff;
  --ink: #0a1f44;
  --ink-soft: #5a6478;
  --line: #e5e7ec;
  --line-strong: #c9cdd6;
  --surface: #f6f7f9;
  --max-w: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

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

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

/* ——— NAV ——— */
.site-nav {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--navy-soft);
}
.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
}
.brand:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--white);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #eef0f5; }

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 28px;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-soft);
}
.mobile-menu .mobile-cta {
  background: var(--white);
  color: var(--navy);
  text-align: center;
  border-radius: 100px;
  padding: 14px;
  margin-top: 16px;
  border-bottom: none;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn-on-navy { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-on-navy:hover { background: #eef0f5; border-color: #eef0f5; }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-on-navy { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-on-navy:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ——— SECTIONS ——— */
.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.section.navy { background: var(--navy); color: var(--white); }
.section.surface { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
}
.section.navy .eyebrow { color: rgba(255,255,255,0.85); }
.section.navy .eyebrow::before { background: rgba(255,255,255,0.85); }

h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 700;
  color: inherit;
}
.h-display {
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 700;
}
.h-xl { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.03em; }
.h-lg { font-size: clamp(24px, 2.6vw, 30px); }
.h-md { font-size: 20px; }

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.55;
}
.section.navy .lede { color: rgba(255,255,255,0.78); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 14px; }

/* ——— HERO ——— */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(255,255,255,0.04), transparent 60%);
  color: var(--white);
  padding: 104px 0 112px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.hero h1 {
  margin-bottom: 28px;
  max-width: 14ch;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero h1 .serif {
  font-size: 1.05em;
  line-height: 1;
  display: inline-block;
  transform: translateY(0.04em);
  margin-right: 0.03em;
  color: #ffffff;
}
.hero p { color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 40px; font-size: 19px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-locations {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-locations .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-locations ul { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-locations li { position: relative; }
.hero-locations li + li::before {
  content: '·';
  position: absolute;
  left: -14px;
  color: rgba(255,255,255,0.35);
}

/* ——— PAGE HERO (interior pages) ——— */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 64px;
}
.page-hero h1 { font-size: clamp(34px, 4.8vw, 56px); max-width: 820px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; font-size: 17px; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.breadcrumb:hover { color: var(--white); }

/* ——— PULL QUOTE ——— */
.pullquote {
  background: var(--surface);
  border-left: 3px solid var(--navy);
  padding: 28px 28px 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.pullquote blockquote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 18px;
}
.pullquote dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; font-size: 13px; }
.pullquote dt { color: var(--ink-soft); margin-bottom: 2px; }
.pullquote dd { color: var(--ink); font-weight: 600; }

/* ——— CARDS ——— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(10,31,68,0.25);
}
.card .tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.card .tag::before {
  content: attr(data-num);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}
.card h3 {
  margin-bottom: 14px;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
.card p { color: var(--ink-soft); margin-bottom: 20px; font-size: 15px; }
.card ul {
  list-style: none;
  margin-bottom: 24px;
}
.card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--navy);
  flex-shrink: 0;
}
.card .more {
  margin-top: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .more:hover { gap: 10px; }

/* ——— STEPS (on navy) ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.step {
  padding: 44px 32px 12px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
}
.step:nth-child(2) { padding-left: 32px; }
.step:nth-child(3) { padding-left: 32px; border-right: none; }
.step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 28px;
  display: block;
}
.step h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}
.step p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; max-width: 30ch; }

/* ——— CTA BAND ——— */
.cta-band {
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; font-size: 17px; }
.section.navy .cta-band p { color: rgba(255,255,255,0.78); }

/* ——— PROSE (long-form sections) ——— */
.prose { max-width: 680px; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; line-height: 1.65; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ——— SPLIT (heading + content) ——— */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
.split h2 { margin-bottom: 12px; }

/* ——— FOOTER ——— */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.55; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-base {
  border-top: 1px solid var(--navy-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 8px;
}

/* ——— FORMS ——— */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ——— PILLS (location strip etc.) ——— */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}
.pill.solid { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ——— FEATURE LIST (icon + text rows) ——— */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .f-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list .f-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.feature-list .f-text span { font-size: 14px; color: var(--ink-soft); }

/* ——— UTIL ——— */
.stack-12 > * + * { margin-top: 12px; }
.stack-20 > * + * { margin-top: 20px; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ——— ANIMATIONS ——— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s cubic-bezier(.2,.8,.2,1) forwards; }
.fade-up.d1 { animation-delay: 0.08s; }
.fade-up.d2 { animation-delay: 0.18s; }
.fade-up.d3 { animation-delay: 0.28s; }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .card-grid.two, .card-grid.three, .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .footer-base { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .brand { font-size: 15px; }
}
