/* ============================================================
   THE INVINCIBILITY COACH — styles.css
   Mobile-first. Breakpoints: 480px / 768px / 1100px
   Colors: --black #0a0a0a  --gold #c9a84c  --white #f5f2ee
   Fonts: Cormorant Garamond (serif) + Montserrat (sans)
   Last updated: 2026
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --black:      #0a0a0a;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #f5f2ee;
  --grey:       #141414;
  --mid-grey:   #2e2e2e;
  --text-muted: #888;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY UTILITIES ── */
.section-label {
  font-size: 15px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}

/* ── BUTTON ── */
.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.4s, color 0.4s;
  cursor: pointer;
  background: transparent;
}
.cta-btn:hover { background: var(--gold); color: var(--black); }
.cta-btn.no-anim { animation: none; opacity: 1; }
.cta-btn.cta-btn-secondary {
  border-color: rgba(201,168,76,0.35);
  color: rgba(201,168,76,0.7);
}
.cta-btn.cta-btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); }

.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 36px; width: auto; }

/* Mobile: hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  list-style: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--black);
  padding: 100px 24px 48px;
  border-bottom: 1px solid var(--mid-grey);
  z-index: 105;
}
.nav-links.open { display: flex; }

.nav-links li { border-bottom: 1px solid var(--mid-grey); }

.nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }

.nav-links .nav-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 1;
  transition: background 0.3s, color 0.3s;
}
.nav-links li:has(.nav-cta) { border-bottom: none; }
.nav-links .nav-cta:hover { background: var(--gold); color: var(--black); }

@media (min-width: 480px) {
  .prop-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Tablet nav — logo centered top, links below */
@media (min-width: 768px) {
  nav {
    padding: 20px 40px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(10,10,10,0.95);
  }
  nav.scrolled { background: rgba(10,10,10,0.97); }

  .nav-logo img { height: 44px; }
  .nav-hamburger { display: none; }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 28px;
    position: static;
    background: none;
    padding: 0;
    border: none;
  }
  .nav-links li { border-bottom: none; }
  .nav-links a { padding: 0; font-size: 13px; }

  .nav-links .nav-cta {
    margin-top: 0;
    padding: 8px 18px;
    font-size: 13px;
  }
  .nav-links li:has(.nav-cta) { border-bottom: none; }
}

/* Desktop nav — logo left, links right, full horizontal */
@media (min-width: 1525px) {
  nav {
    padding: 28px 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
  }
  nav.scrolled { background: rgba(10,10,10,0.97); }

  .nav-logo img { height: 48px; }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 36px;
  }
  .nav-links a { font-size: 15px; }
  .nav-links .nav-cta { padding: 10px 22px; font-size: 15px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,1) 100%),
    url('../images/hero/hero-mountains.jpg') center/cover no-repeat;
  filter: grayscale(100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 72px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 15px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 2;
  color: rgba(245,242,238,0.6);
  max-width: 420px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero .cta-btn {
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
}

@media (min-width: 768px) {
  .hero-content { padding: 0 60px 100px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 28px; }
  /* .hero-sub desktop — already 15px */
}

/* ============================================================
   PHILOSOPHY / PROPOSITION
   ============================================================ */
#proposition { padding: 80px 24px; }

.proposition {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.prop-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 32px;
}
.prop-headline em { font-style: italic; color: var(--gold-light); }

.prop-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.1;
  color: rgba(245,242,238,0.55);
  margin-bottom: 20px;
}
.prop-body strong {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.prop-body:last-of-type { margin-bottom: 40px; }

.prop-right {
  border-top: 1px solid var(--mid-grey);
  padding-top: 52px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.stat-block {}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.6);
  line-height: 1.7;
}

@media (min-width: 768px) {
  #proposition { padding: 120px 60px; }
  .prop-right {
    border-top: none;
    border-left: 1px solid var(--mid-grey);
    padding-top: 56px;
    padding-left: 60px;
    display: block;
  }  .stat-block { margin-bottom: 52px; }
}

@media (min-width: 1100px) {
  .proposition {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .prop-right { padding-left: 80px; }
}

/* ============================================================
   THE FORMULA / PROGRAM
   ============================================================ */
.program { background: var(--grey); padding: 80px 24px; }
.program-inner { max-width: 1200px; margin: 0 auto; }

.program-header { text-align: center; margin-bottom: 60px; }

.program-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.program-sub {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(245,242,238,0.55);
  max-width: 460px;
  margin: 0 auto;
  line-height: 2.2;
}

/* Tiers — stack on mobile */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.tier {
  padding: 48px 32px;
  background: var(--black);
  transition: background 0.4s;
}
.tier:hover { background: #0d0d0d; }
.tier.featured { border-top: 2px solid var(--gold); }

.tier-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 300;
  margin-bottom: 8px;
}

.tier-duration {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 20px 0 4px;
}

.tier-price-note {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.tier-divider { width: 40px; height: 1px; background: var(--mid-grey); margin-bottom: 28px; }

.tier-features { list-style: none; }
.tier-features li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245,242,238,0.4);
  padding: 10px 0;
  border-bottom: 1px solid var(--mid-grey);
}
.tier-features li:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .program { padding: 120px 60px; }
  .program-header { margin-bottom: 80px; }
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .tier { padding: 56px 40px; }
}

@media (min-width: 1100px) {
  .tier { padding: 64px 48px; }
}

/* ============================================================
   VOICES / TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header { margin-bottom: 60px; }

.testimonials-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.2;
}
.testimonials-headline em { font-style: italic; }

/* Stack on mobile */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.testimonial {
  padding: 40px 32px;
  border: 1px solid var(--mid-grey);
  transition: border-color 0.4s;
}
.testimonial:hover { border-color: rgba(201,168,76,0.4); }
.testimonial.wide { grid-column: 1; }

.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 28px;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245,242,238,0.92);
  margin-bottom: 32px;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--mid-grey);
  filter: grayscale(30%);
}

.testimonial-author {
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .testimonials { padding: 140px 60px; }
  .testimonials-header { margin-bottom: 80px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { padding: 48px; }
  .testimonial.wide { grid-column: 1 / -1; max-width: 700px; }
  .testimonial-portrait { width: 72px; height: 72px; }
}

@media (min-width: 1100px) {
  .testimonial { padding: 56px; }
  .testimonial-portrait { width: 80px; height: 80px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--grey); overflow: hidden; }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}

.about-text {
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gold-light);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--mid-grey);
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
}
.about-headline em { font-style: italic; color: var(--gold-light); }

.about-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
  color: rgba(245,242,238,0.5);
}
.about-body p + p { margin-top: 16px; }

.about-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--mid-grey);
}

.about-detail-item {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.7;
}
.about-detail-item span { color: var(--gold); flex-shrink: 0; }

@media (min-width: 768px) {
  .about-photo { height: 560px; }
  .about-text { padding: 80px 60px; }
}

@media (min-width: 1100px) {
  .about-inner {
    grid-template-columns: 420px 1fr;
    min-height: 700px;
  }
  .about-photo { height: 100%; min-height: 700px; }
  .about-text { padding: 100px 80px; justify-content: center; }
}

/* ============================================================
   CTA / BEGIN THE CONVERSATION
   ============================================================ */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  background: var(--black);
}

.cta-eyebrow {
  font-size: 15px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: block;
}

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 28px;
}
.cta-headline em { font-style: italic; color: var(--gold-light); }

.cta-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  color: rgba(245,242,238,0.55);
  max-width: 440px;
  margin: 0 auto 52px;
}

@media (min-width: 768px) {
  .cta-section { padding: 180px 60px; }
  .cta-sub { font-size: 14px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 48px 24px 28px;
  border-top: 1px solid var(--mid-grey);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.footer-logo img:hover { opacity: 1; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  list-style: none;
}
.footer-links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.footer-design {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--mid-grey);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(201,168,76,0.3);
  text-transform: uppercase;
}
.footer-design a {
  color: rgba(201,168,76,0.3);
  transition: color 0.3s;
}
.footer-design a:hover { color: var(--gold); }

@media (min-width: 768px) {
  footer { padding: 52px 60px 32px; }
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   FORM PAGE (inquiry.php)
   ============================================================ */
.form-hero {
  padding: 160px 24px 80px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.form-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.form-hero-headline em { font-style: italic; color: var(--gold-light); }

.form-hero-sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 2;
  color: rgba(245,242,238,0.55);
  max-width: 480px;
  margin: 0 auto;
}

.form-section {
  padding: 0 24px 120px;
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 44px;
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-label .optional {
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-size: 9px;
  margin-left: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mid-grey);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,242,238,0.2); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 0.4em;
}

@media (min-width: 768px) {
  .form-hero { padding: 180px 60px 80px; }
  .form-section { padding: 0 60px 140px; }
  .form-submit { width: auto; padding: 20px 64px; }
}

/* ============================================================
   BOOK PAGE (book.php)
   ============================================================ */
.book-hero {
  padding: 140px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.book-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.book-headline em { font-style: italic; color: var(--gold-light); }

.book-sub {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245,242,238,0.55);
  margin-bottom: 36px;
}

.book-audio {
  margin: 36px 0;
}

.book-audio-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

audio {
  width: 100%;
  filter: invert(1) sepia(1) saturate(0.5) hue-rotate(5deg);
  opacity: 0.8;
}

.book-amazon {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}
.book-amazon:hover { border-color: var(--gold); }

@media (min-width: 768px) {
  .book-hero {
    padding: 160px 60px 100px;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
