/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0a0a; color: #e8e4e0; font-family: 'Georgia', 'Times New Roman', serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== TOKENS ===== */
:root {
  --accent: #C0392B;
  --accent-hover: #a02d21;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #161616;
  --text: #e8e4e0;
  --text-secondary: #8a8480;
  --text-muted: #4a4540;
  --border: rgba(255,255,255,0.07);
  --section-pad: 5rem 1.25rem;
}

/* ===== TYPOGRAPHY ===== */
.font-heading { font-family: 'Arial Black', 'Arial Bold', 'Helvetica Neue', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.accent { color: var(--accent); }
.section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.section-desc { color: var(--text-secondary); max-width: 540px; margin-bottom: 2.5rem; }
.lead { font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.875rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== HERO: FULL BLEED ===== */
/* ===== HERO: PHOTO + TEXT PANEL (no overlap) ===== */
.hero {
  display: flex;
  flex-direction: column;
}

/* Photo — face fully visible, no text */
.hero-photo {
  position: relative;
  width: 100%;
  height: 62svh;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Text panel — solid dark background */
.hero-text-panel {
  background: var(--bg);
  border-top: 1px solid rgba(192,57,43,0.3);
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.875rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-text-panel h1 {
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 0.92;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.875rem;
  transition: background 0.2s, border-color 0.2s;
}
.social-pill:hover { background: rgba(192,57,43,0.15); border-color: var(--accent); color: var(--accent); }
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #111111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat { text-align: center; padding: 0.5rem 1.5rem; }
.stat-value { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--text); }
.stat-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 2.5rem; background: var(--border); }

/* ===== PROFILE SPLIT ===== */
.profile-split {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.profile-img {
  position: relative;
  overflow: hidden;
}
.profile-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}
.profile-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2rem 1.25rem 0.875rem;
}
.profile-content {
  padding: 3rem 1.25rem;
}
.profile-content h2 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.95;
  margin-bottom: 1.75rem;
}
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0 0;
  background: rgba(192,57,43,0.06);
}
.pullquote p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 0.4rem;
}
.pullquote cite { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent); font-style: normal; font-weight: 700; }

/* ===== ACHIEVEMENT: FULL BLEED ===== */
.achievement {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.achievement-bg {
  position: absolute;
  inset: 0;
}
.achievement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.achievement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.5) 60%,
    rgba(10,10,10,0.3) 100%
  );
}
.achievement-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 1.25rem;
}
.achievement-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.achievement-headline {
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.9;
  margin-bottom: 0.75rem;
  color: #fff;
}
.achievement-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ===== PROGRAM: NUMBERED LIST ===== */
.program-section { padding: var(--section-pad); }
.program-header { margin-bottom: 3rem; }
.program-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.program-list { display: flex; flex-direction: column; gap: 0; }
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.program-item:first-child { border-top: 1px solid var(--border); }
.program-num {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  opacity: 0.3;
  min-width: 3rem;
  line-height: 1;
}
.program-body h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.program-body p { font-size: 0.9rem; margin: 0; }

/* ===== LOVE ISLAND SPLIT ===== */
.loveisland-split {
  display: flex;
  flex-direction: column-reverse;
}
.loveisland-img {
  position: relative;
  overflow: hidden;
}
.loveisland-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}
.loveisland-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2rem 1.25rem 0.875rem;
}
.loveisland-content {
  padding: 3.5rem 1.25rem;
  background: var(--bg-elevated);
}
.loveisland-content h2 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.social-cta-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.social-link-text:hover { color: var(--accent); }

/* ===== PRICING ===== */
.pricing-section { padding: var(--section-pad); }
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.price-card {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  position: relative;
}
.price-card-featured {
  border-color: var(--accent);
  background: #150a09;
}
.price-badge-top {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.75rem;
}
.price-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.price-amount {
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-cents { font-size: 1.5rem; }
.price-mo { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.price-period { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.price-features li { font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: baseline; gap: 0.5rem; }
.check { color: var(--accent); font-size: 0.65rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: var(--section-pad); background: var(--bg-elevated); }
.testimonials-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 0.75rem;
}
.testimonial-card p { font-size: 0.9rem; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author .name { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 0.05em; }
.testimonial-author .role { font-size: 0.7rem; color: var(--text-muted); }

/* ===== FINAL CTA ===== */
.final-cta { padding: 5rem 1.25rem; text-align: center; border-top: 1px solid var(--border); }
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2.25rem, 6vw, 3.75rem); margin-bottom: 1.25rem; }
.final-cta p { font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; }
.final-cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.final-social-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad); background: var(--bg-elevated); }
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-bottom: 1.25rem; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== FOOTER ===== */
footer { background: #060606; border-top: 1px solid var(--border); padding: 3rem 1.25rem; }
.footer-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.footer-brand { font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; }
.footer-social { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.footer-social a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--accent); }
.footer-copy { font-size: 0.7rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SECTION INNER ===== */
.section-inner { max-width: 960px; margin: 0 auto; }

/* ===== DESKTOP ===== */
@media (min-width: 768px) {

  /* Profile split: image left (45%), content right (55%) */
  .profile-split {
    flex-direction: row;
    min-height: 560px;
  }
  .profile-img {
    width: 45%;
    flex-shrink: 0;
  }
  .profile-img img {
    height: 100%;
    min-height: 560px;
  }
  .profile-content {
    width: 55%;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Love Island split: content left (55%), image right (45%) */
  .loveisland-split {
    flex-direction: row;
    min-height: 520px;
  }
  .loveisland-content {
    width: 55%;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .loveisland-img {
    width: 45%;
    flex-shrink: 0;
  }
  .loveisland-img img {
    height: 100%;
    min-height: 520px;
  }

  /* Achievement: taller */
  .achievement { height: 560px; }
  .achievement-content { padding: 3.5rem 4rem; }

  /* Program: 2-col list */
  .program-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .program-item {
    border-bottom: 1px solid var(--border);
  }
  .program-item:nth-child(odd) {
    border-right: 1px solid var(--border);
    padding-right: 2.5rem;
  }
  .program-item:nth-child(even) {
    padding-left: 2.5rem;
  }
  .program-item:nth-child(1),
  .program-item:nth-child(2) {
    border-top: 1px solid var(--border);
  }

  /* Pricing: side by side */
  .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 680px; margin-left: auto; margin-right: auto; }

  /* Testimonials: 3-col */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero: limit content width */
  .hero { flex-direction: row; min-height: 92svh; }
  .hero-photo { width: 52%; height: auto; min-height: 92svh; }
  .hero-text-panel { width: 48%; padding: 4rem 3.5rem; justify-content: center; border-top: none; border-left: 1px solid rgba(192,57,43,0.3); }
  .hero-text-panel h1 { font-size: clamp(3rem, 5vw, 5.5rem); }

  /* Stats: no wrapping */
  .stat { padding: 0.5rem 2.5rem; }
}
