/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --cream: #F5F1E5;
  --cream-dim: rgba(245, 241, 229, 0.7);
  --gold: #C9A84C;
  --gold-dark: #a8873c;
  --gold-light: #e0c068;
  --white: #ffffff;
  --border: rgba(245, 241, 229, 0.1);
  --font-heading: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 0.9rem; letter-spacing: 0.1em; color: var(--cream-dim); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.center { text-align: center; }
.center.section-label { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
.btn-primary:hover { background: transparent; color: var(--cream); }

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

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-large { padding: 18px 48px; font-size: 1rem; }
.full-width { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  height: 48px;
  width: auto;
  display: block;
}

.footer-wordmark {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 2px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 241, 229, 0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-pre {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--cream-dim);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STRIP ===== */
.strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.strip-inner span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--black);
  margin: 0 20px;
}

.strip-inner .dot {
  font-size: 0.5rem;
  opacity: 0.6;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STORY ===== */
.story {
  background: var(--dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 { margin-bottom: 1.5rem; }
.story-text p { margin-bottom: 1.2rem; }

.story-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
}

.story-image {
  position: relative;
}

.story-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.4;
  border-radius: 4px;
}

/* ===== PILLARS ===== */
.pillars {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars h2 { margin-bottom: 3rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.pillar {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.pillar:hover { background: var(--dark-2); }

.pillar-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar h3 { margin-bottom: 0.75rem; color: var(--cream); }
.pillar p { font-size: 0.9rem; margin: 0; }

/* ===== EQUIPMENT ===== */
.equipment {
  background: var(--dark);
}

.equipment h2 { margin-bottom: 1rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.product-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.product-badge.gold {
  background: var(--gold);
  color: var(--black);
}

.product-image {
  background: var(--dark-3);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-img-placeholder svg {
  width: 120px;
  height: auto;
}

.product-img-placeholder.bundle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 { margin-bottom: 0.75rem; color: var(--cream); }
.product-info > p { font-size: 0.9rem; margin-bottom: 1rem; }

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
}

.price-note {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ===== PROGRAMS ===== */
.programs {
  background: var(--black);
}

.programs h2 { margin-bottom: 1rem; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.program-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.program-card:hover { border-color: rgba(201, 168, 76, 0.3); }

.program-level {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.program-card h3 { margin-bottom: 0.75rem; color: var(--cream); }
.program-card > p { font-size: 0.9rem; margin-bottom: 1.2rem; }

.program-card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.program-card-price span {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.program-card-weekly {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.program-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.program-card ul li {
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 5px 0 5px 16px;
  position: relative;
}

.program-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.membership-box {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.membership-text h3 { margin-bottom: 1rem; color: var(--cream); }
.membership-text > p { margin-bottom: 1.5rem; }

.membership-features {
  list-style: none;
}

.membership-features li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.membership-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.membership-pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.membership-tier {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 4px;
}

.membership-tier:not(.secondary) {
  border-color: rgba(201, 168, 76, 0.5);
}

.tier-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tier-price span {
  font-size: 1rem;
  color: var(--cream-dim);
}

.tier-note {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

/* ===== COMMUNITY ===== */
.community {
  background: var(--gold);
  color: var(--black);
}

.community-inner {
  max-width: 720px;
}

.community .section-label { color: rgba(0,0,0,0.5); }
.community h2 { color: var(--black); margin-bottom: 1.5rem; }
.community p { color: rgba(0,0,0,0.75); }

.community-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-top: 0.25rem;
}

.community .btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.community .btn-primary:hover {
  background: transparent;
  color: var(--black);
}

/* ===== JOIN ===== */
.join {
  background: var(--dark);
}

.join h2 { margin-bottom: 1rem; }

.join-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

input, select, textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(245, 241, 229, 0.3); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }

select option { background: var(--dark-2); }

.join-form .btn-gold {
  width: 100%;
  margin-top: 12px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-top: 1rem;
  opacity: 0.6;
}

.join-success {
  text-align: center;
  padding: 3rem;
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  max-width: 560px;
  margin: 0 auto;
}

.join-success h3 { color: var(--gold); margin-bottom: 1rem; }

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact h2 { margin-bottom: 1rem; }
.contact > .contact-grid > div > p { margin-bottom: 2rem; }

.contact-details { margin-top: 2rem; }

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item a { color: var(--cream); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form textarea { resize: vertical; }

.contact-success {
  font-size: 0.9rem;
  color: var(--gold);
  padding: 1rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 28px; margin-bottom: 1rem; filter: none; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.85rem; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; margin: 0; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cream); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { display: none; }
  .membership-box { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .community-stats { gap: 1.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .membership-pricing { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }
}