:root {
  --black: #0a0a0a;
  --near-black: #131313;
  --white: #ffffff;
  --orange: #f5943a;
  --orange-dark: #d97a20;
  --grey: #b8b8b8;
  --border: rgba(255,255,255,0.1);
  --display-font: 'Anton', 'Arial Narrow', sans-serif;
  --body-font: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

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

.accent { color: var(--orange); }

h1, h2, h3 {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.lede {
  color: var(--grey);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-img.small { height: 34px; width: auto; }
.logo-eyebrow {
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-word {
  font-family: var(--display-font);
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-word.small { font-size: 1.3rem; }
.logo-tee { font-size: 0.5em; vertical-align: middle; margin-left: 4px; color: var(--grey); }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.main-nav a { color: var(--grey); transition: color 0.15s ease; padding: 4px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--white); }
.main-nav a.active { color: var(--white); border-bottom-color: var(--orange); }

.nav-cta { flex-shrink: 0; padding: 11px 22px; font-size: 0.8rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

/* Hero */
.hero {
  padding: 110px 0 90px;
  background:
    linear-gradient(180deg, rgba(245,148,58,0.38) 0%, transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.93) 55%, rgba(0,0,0,0.97) 100%),
    url('../assets/hero.jpg');
  background-size: cover;
  background-position: center 15%;
}
.hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.hero-sub {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 20px auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Strip */
.strip { background: var(--orange); padding: 32px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.strip-item { text-align: center; max-width: 320px; margin: 0 auto; padding: 0 28px; }
.strip-item:not(:first-child) { border-left: 1px solid rgba(0,0,0,0.2); }
.strip-item h3 {
  color: var(--black);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.strip-item p { color: var(--black); font-size: 0.95rem; }

/* Sections */
.section { padding: 100px 0; }
.section.alt { background: var(--near-black); }
#gallery { padding-bottom: 50px; }
#schedule { padding-top: 50px; }

/* Keep anchor-linked sections from landing under the sticky header */
section[id] { scroll-margin-top: 80px; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.about-copy p { color: var(--grey); margin-bottom: 16px; }
.text-link { color: var(--orange); font-weight: 700; display: inline-block; margin-top: 8px; }

.sweatstep-intro { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: start; margin-bottom: 56px; }
.sweatstep-copy .lede { margin-bottom: 28px; }
.sweatstep-photo-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.feature-card { padding: 28px 22px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,0.02); }
.feature-num { font-family: var(--display-font); color: var(--orange); font-size: 1.4rem; }
.feature-card p { color: var(--grey); font-size: 0.92rem; }

.feature-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 0;
}
.feature-grid--compact .feature-card { padding: 18px 16px; }
.feature-grid--compact .feature-num { font-size: 1.1rem; }
.feature-grid--compact .feature-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-grid--compact .feature-card p { font-size: 0.82rem; line-height: 1.45; }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 16px 30px;
  border-radius: 16px;
  background: var(--orange);
}
.cta-banner p {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--black);
  font-size: 1.15rem;
  margin-bottom: 0;
}
.cta-banner .btn-primary {
  background: var(--black);
  color: var(--white);
  flex-shrink: 0;
  padding: 13px 26px;
  font-size: 0.85rem;
}
.cta-banner .btn-primary:hover { background: var(--near-black); }

/* Gallery */
.gallery-wrap { position: relative; }
.gallery-track {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--near-black);
}
.gallery-item video, .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--square { aspect-ratio: 1/1; }
.gallery-item--portrait { aspect-ratio: 9/16; }
.gallery-item--landscape { aspect-ratio: 16/9; height: auto; align-self: center; }
.gallery-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  align-items: center;
  justify-content: center;
}
.gallery-prev { left: -8px; }
.gallery-next { right: -8px; }

/* Schedule */
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.schedule-card {
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.schedule-card.ghost { border-style: dashed; opacity: 0.75; }
.schedule-info { display: flex; flex-direction: column; gap: 4px; }
.schedule-day { font-family: var(--display-font); font-size: 1.15rem; text-transform: uppercase; }
.schedule-time { color: var(--orange); font-weight: 700; font-size: 0.9rem; }
.schedule-type { color: var(--grey); font-size: 0.85rem; }
.schedule-book {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.75rem;
}
.schedule-note { color: var(--grey); font-size: 0.9rem; margin-top: 8px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.price-card {
  padding: 30px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  text-align: center;
  position: relative;
}
.price-card.featured { border-color: var(--orange); background: rgba(245,148,58,0.08); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--black); font-size: 0.65rem; font-weight: 800;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.price-card h3 { font-size: 0.85rem; text-transform: none; font-family: var(--body-font); font-weight: 700; color: var(--grey); margin-bottom: 12px; letter-spacing: 0; }
.price { font-family: var(--display-font); font-size: 2.2rem; color: var(--white); }
.price-sub { color: var(--grey); font-size: 0.8rem; }

/* Contact */
.contact-inner { text-align: center; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.contact-meta { display: flex; gap: 28px; justify-content: center; color: var(--grey); font-size: 0.95rem; flex-wrap: wrap; }
.contact-meta a { color: var(--grey); }
.contact-meta a:hover { color: var(--orange); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0px));
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-inner p { color: #777; font-size: 0.85rem; }
.footer-inner a { color: var(--grey); font-size: 0.85rem; }
.footer-inner a:hover { color: var(--orange); }

/* Instagram icon link */
.ig-link { display: inline-flex; align-items: center; gap: 5px; color: inherit; }
.ig-link:hover { color: var(--orange); }
.ig-icon { width: 1em; height: 1em; }

/* Responsive */
@media (min-width: 800px) {
  .gallery-arrow { display: flex; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { max-width: 100%; padding: 18px 0; }
  .strip-item:not(:first-child) { border-left: none; border-top: 1px solid rgba(0,0,0,0.2); }
  .about-grid { grid-template-columns: 1fr; }
  .sweatstep-intro { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { gap: 10px; padding: 16px; align-items: center; }
  .cta-banner p { font-size: 0.8rem; line-height: 1.3; flex: 1 1 auto; min-width: 0; white-space: normal; }
  .cta-banner .btn-primary { padding: 9px 14px; font-size: 0.65rem; }
  .schedule-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--near-black);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    z-index: 99;
  }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero {
    padding: 80px 0 60px;
    background-image:
      radial-gradient(circle at 100% 30%, rgba(0,0,0,0.9) 0%, transparent 50%),
      linear-gradient(180deg, rgba(245,148,58,0.38) 0%, transparent 45%),
      linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.93) 55%, rgba(0,0,0,0.97) 100%),
      url('../assets/hero.jpg');
    background-position: center top;
    background-size: 100% 100%, 100% 100%, 100% 100%, contain;
    background-repeat: no-repeat;
  }
  .section { padding: 70px 0; }
  .gallery-item { height: 320px; }
  .cta-banner { gap: 10px; padding: 14px; }
  .cta-banner p { font-size: 0.72rem; line-height: 1.3; }
  .cta-banner .btn-primary { padding: 8px 12px; font-size: 0.6rem; }
  .site-footer { padding: 24px 0 calc(28px + env(safe-area-inset-bottom, 0px)); }
  .footer-inner { justify-content: center; flex-direction: column; text-align: center; }
}
