* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --offwhite: #f5f4f0;
  --text-muted: #aaaaaa;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--black);
  color: var(--white);
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}
.nav-logo { height: 52px; width: auto; object-fit: contain; }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--black);
}
.hero-img {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.98) 40%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 60px;
  max-width: 620px;
}
.eyebrow {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: Arial, sans-serif;
  font-size: 17px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 500px;
}
.tagline {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  font-family: Arial, sans-serif;
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  padding: 16px 34px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

/* SECTIONS */
.section { padding: 90px 20px; }
.section.light { background: var(--offwhite); }
.section.dark { background: var(--dark); }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-label.gold { color: var(--gold); }
h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--black);
  line-height: 1.2;
}
h2.white { color: var(--white); }
.section-sub {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -36px;
  margin-bottom: 50px;
  text-align: center;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
}
.card h3 { font-size: 17px; color: var(--black); margin-bottom: 10px; }
.card p { font-family: Arial, sans-serif; font-size: 14px; color: #555; line-height: 1.7; }
.dark-card {
  background: var(--dark2);
  border-radius: 8px;
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
}
.dark-card h3.white { color: var(--white); font-size: 17px; margin-bottom: 10px; }
.dark-card p { font-family: Arial, sans-serif; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card-icon { font-size: 30px; margin-bottom: 16px; }
.gold-icon { color: var(--gold); }

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.photo-strip img:hover { filter: grayscale(0%); }

/* COACH */
.coach-section { background: var(--offwhite); }
.coach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coach-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 3px solid var(--gold);
}
.coach-text h2 { margin-bottom: 24px; }
.coach-text p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}
.coach-text .btn-gold { margin-top: 10px; }

/* PRICING */
.pricing-section { text-align: center; }
.price-card {
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 52px 44px;
  max-width: 500px;
  margin: 0 auto;
}
.price-label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.price-amount {
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 32px;
}
.price-amount span { font-size: 20px; font-weight: 400; color: var(--text-muted); }
.price-list { list-style: none; text-align: left; margin-bottom: 36px; }
.price-list li {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #ddd;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}

/* BOTTOM PHOTO CTA */
.bottom-photo {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.bottom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35);
}
.bottom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 20px;
}
.bottom-overlay h2 {
  color: var(--white);
  font-size: 34px;
  margin: 0;
  max-width: 600px;
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold);
  padding: 50px 20px;
  text-align: center;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-sub {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-sub a { color: var(--gold); text-decoration: none; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: background 0.2s;
}
.whatsapp-float:hover { background: #1ebe5d; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 10px 20px; }
  .nav-logo { height: 38px; }
  .nav-cta { display: none; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .hero-content { padding: 40px 24px; }
  .hero-img { width: 100%; opacity: 0.2; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 240px; }
  .coach-inner { grid-template-columns: 1fr; }
  .coach-photo { height: 300px; }
  .price-card { padding: 36px 24px; }
  .price-amount { font-size: 38px; }
  .bottom-overlay h2 { font-size: 24px; }
}

/* REVIEWS */
.reviews-meta {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: var(--gold);
  margin-top: -36px;
  margin-bottom: 44px;
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border-bottom: 3px solid var(--gold);
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* REVIEWS FIX */
.section.light {
  background: #1a1a1a !important;
}
.section.light h2 {
  color: #ffffff !important;
}
.section.light .section-label {
  color: var(--gold) !important;
}
.reviews-meta {
  margin-top: -30px !important;
}
.review-card {
  background: #111111 !important;
  border: 1px solid #2a2a2a !important;
  border-bottom: 3px solid var(--gold) !important;
}
.review-text {
  color: #cccccc !important;
}
.review-author {
  color: var(--gold) !important;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.faq-item {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 30px 26px;
  border-left: 3px solid var(--gold);
}
.faq-q {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.faq-a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.8;
}

/* FAQ REDESIGN */
.faq-section {
  background: #0d0d0d !important;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #222;
  border-left: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.faq-item:first-child { border-top: 1px solid #222; }
.faq-num {
  font-size: 42px;
  font-weight: 700;
  color: #2a2a2a;
  font-family: Georgia, serif;
  min-width: 60px;
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}
.faq-item:hover .faq-num { color: var(--gold); }
.faq-body { flex: 1; }
.faq-q {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
}
.faq-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.faq-a {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #999;
  line-height: 1.9;
}
.faq-item:hover .faq-q { color: var(--gold); }

@media (max-width: 600px) {
  .faq-num { font-size: 28px; min-width: 40px; }
  .faq-q { font-size: 16px; }
  .faq-item { gap: 20px; padding: 30px 0; }
}
