/* =========================================================
   PM 4 LIFE — Refined professional aesthetic
   Navy + Gold | Fraunces display + Inter Tight body
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --navy: #1B2A4E;
  --navy-deep: #0F1B36;
  --gold: #C9A227;
  --gold-soft: #D9B347;
  --charcoal: #2D2D2D;
  --warm: #F5F1E8;
  --cream: #FBF8F0;
  --line: rgba(27, 42, 78, 0.12);
  --line-strong: rgba(27, 42, 78, 0.22);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.8vw, 4.6rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

h4 {
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

p.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  max-width: 620px;
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.italic-display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.bg-warm { background: var(--warm); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy p { color: rgba(245, 241, 232, 0.85); }
.bg-navy .eyebrow { color: var(--gold-soft); }
.bg-navy .eyebrow::before { background: var(--gold-soft); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 240, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-mark .accent { color: var(--gold); }

.brand-tag {
  font-family: var(--body);
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.65;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 720px) { .brand-tag { display: none; } }

.nav-list {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
}

.nav-list a:hover { color: var(--navy); }

.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.65rem 1.25rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.28);
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  transition: all 0.3s;
}

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .nav-list {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.4rem; font-family: var(--display); }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-secondary.on-navy {
  color: var(--cream);
  border-color: var(--cream);
}

.btn-secondary.on-navy:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-arrow::after {
  content: "→";
  margin-left: 0.4rem;
  transition: transform 0.22s;
}

.btn-arrow:hover::after { transform: translateX(4px); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .italic-display { display: block; }
.hero p.lead { margin-bottom: 2.25rem; }

/* Full-width text hero (no photo) */
.hero-text {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}

.hero-text .eyebrow {
  margin-bottom: 1.75rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}

.hero-text p.lead {
  margin: 0 auto 2.5rem;
  max-width: 640px;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.hero-text .btn-group {
  justify-content: center;
}

.hero-proof {
  margin: 1.75rem auto 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 35%, rgba(27, 42, 78, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  transform: translate(20px, 20px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-credential {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-credential .small {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

/* Page hero (interior pages) */
.page-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 50%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08), transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.25rem;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  background: rgba(245, 241, 232, 0.5);
}

.trust-bar-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-bar-list li {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
}

/* ============ ATP CREDENTIAL STRIP ============ */
.atp-strip {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.atp-strip::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.07), transparent 65%);
  pointer-events: none;
}

.atp-strip-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  position: relative;
}

@media (max-width: 720px) {
  .atp-strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

.atp-badge-link {
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.atp-badge-link:hover { transform: scale(1.02); }

.atp-badge-link img {
  width: 180px;
  height: 180px;
  display: block;
}

@media (max-width: 720px) {
  .atp-badge-link { margin: 0 auto; }
  .atp-badge-link img { width: 150px; height: 150px; }
}

.atp-strip-text .eyebrow { margin-bottom: 0.75rem; }

.atp-strip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.atp-strip-text p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 640px;
  margin-bottom: 1.25rem;
}

@media (max-width: 720px) {
  .atp-strip-text p { margin-left: auto; margin-right: auto; }
}

.atp-verify-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.atp-verify-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.trust-bar-list li + li::before {
  content: "•";
  color: var(--gold);
  margin-right: 1.5rem;
}

@media (max-width: 720px) {
  .trust-bar-list { justify-content: center; }
  .trust-bar-list li + li::before { display: none; }
}

/* ============ SECTION HEADERS ============ */
.section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}

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

.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--charcoal); opacity: 0.8; }

/* ============ WHY-US CARDS ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  transition: all 0.3s;
  position: relative;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(27, 42, 78, 0.08);
}

.why-card-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.why-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.why-card p {
  font-size: 0.97rem;
  line-height: 1.6;
}

.why-card-quote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.why-card-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============ FEATURED QUOTE ============ */
.featured-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.featured-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.featured-quote blockquote::before {
  content: "\201C";
  display: block;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.featured-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ============ SERVICES CARDS ============ */
.boot-camps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .boot-camps { grid-template-columns: 1fr; }
}

.cert-card {
  padding: 2.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.cert-card.featured {
  background: var(--navy);
  color: var(--cream);
}

.cert-card.featured h3,
.cert-card.featured .cert-tagline,
.cert-card.featured p {
  color: var(--cream);
}

.cert-card.featured .cert-tagline { color: var(--gold-soft); }

.cert-card.featured .cert-flag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(27, 42, 78, 0.1);
}

.cert-card.featured:hover {
  box-shadow: 0 18px 40px rgba(27, 42, 78, 0.25);
}

.cert-cert {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cert-card.featured .cert-cert { color: var(--gold-soft); }

.cert-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.cert-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.cert-card p { font-size: 0.97rem; line-height: 1.6; margin-bottom: 1rem; }

.cert-best-for {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(27, 42, 78, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}

.cert-card.featured .cert-best-for {
  background: rgba(245, 241, 232, 0.08);
}

.cert-best-for strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.cert-card.featured .cert-best-for strong { color: var(--gold-soft); }

.cert-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

.cert-price-block {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  background: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
}

.cert-card.featured .cert-price-block {
  border-color: rgba(245, 241, 232, 0.18);
  background: rgba(245, 241, 232, 0.04);
}

.cert-price-format {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.cert-card.featured .cert-price-format { color: var(--gold-soft); opacity: 1; }

.cert-price-amount {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.cert-card.featured .cert-price-amount { color: var(--cream); }

.cert-price-block .btn {
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  margin-top: auto;
}

/* ============ CERT INCLUDES (Services page) ============ */
.cert-includes {
  margin: 1.25rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.cert-card.featured .cert-includes {
  border-top-color: rgba(245, 241, 232, 0.18);
}

.cert-includes strong {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.cert-card.featured .cert-includes strong {
  color: var(--gold-soft);
}

.cert-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-includes li {
  padding: 0.2rem 0 0.2rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cert-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--gold);
  font-weight: 700;
}

.cert-card.featured .cert-includes li::before {
  color: var(--gold-soft);
}

/* ============ ADDON "INCLUDED WITH BOOT CAMPS" TAG ============ */
.addon-included-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.10);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ============ ADD-ONS ============ */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 880px) {
  .addons-grid { grid-template-columns: 1fr; }
}

.addon-card {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.addon-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.addon-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.addon-card p { font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.55; }

.addon-price {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  margin-bottom: 1rem;
}

.addon-price small {
  font-size: 0.8rem;
  font-family: var(--body);
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.7;
}

/* ============ TESTIMONIAL THEMES ============ */
.theme-section { padding: 3rem 0; border-bottom: 1px solid var(--line); }
.theme-section:last-of-type { border-bottom: none; }

.theme-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.theme-head h3 { font-size: 1.6rem; }

.theme-head .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  font-weight: 700;
}

.testimonial-card blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 1rem;
  position: relative;
  padding-top: 0.5rem;
}

.testimonial-card cite {
  font-style: normal;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  opacity: 0.75;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2.5rem;
  background: var(--navy);
  border-radius: 6px;
  text-align: center;
  margin: 2rem 0 0;
  color: var(--cream);
}

@media (max-width: 720px) { .stats-row { grid-template-columns: 1fr; } }

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
}

/* ============ ABOUT (BIO) ============ */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) { .bio-grid { grid-template-columns: 1fr; } }

.bio-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

.bio-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.5;
  transform: translate(16px, 16px);
}

.bio-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-content h2 { margin-bottom: 0.5rem; }

.bio-role {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.bio-content p { margin-bottom: 1.25rem; }

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.bio-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--navy);
  background: var(--cream);
}

.belief-list {
  list-style: none;
  margin: 1.5rem 0;
}

.belief-list li {
  padding: 1rem 0 1rem 2.25rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1.05rem;
}

.belief-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.belief-list li:last-child { border-bottom: none; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: all 0.2s;
}

.contact-info-card:hover {
  border-color: var(--gold);
}

.contact-info-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-info-card .value {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-info-card .value a { color: var(--navy); }
.contact-info-card .value a:hover { color: var(--gold); }

/* Form */
.form {
  background: var(--cream);
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form .form-intro {
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
  color: var(--charcoal);
  opacity: 0.8;
}

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

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

.form button[type="submit"] { width: 100%; justify-content: center; }

/* ============ DOWNLOAD CARD ============ */
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--warm);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.download-card h4 { margin-bottom: 0.25rem; }
.download-card p { font-size: 0.92rem; opacity: 0.8; margin: 0; max-width: 460px; }

/* ============ SCHEDULE ============ */
.schedule-empty {
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--cream);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
}

.schedule-empty h3 {
  margin-bottom: 0.75rem;
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
}

.schedule-empty p { max-width: 480px; margin: 0 auto 1.5rem; }

.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

.faq-q {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.faq-a { font-size: 0.97rem; line-height: 1.6; }

/* ============ BIO STATS (About page) ============ */
.bio-stats-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 720px) {
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
}

.bio-stat-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.bio-stat-item:last-child { border-right: none; }

@media (max-width: 720px) {
  .bio-stat-item:nth-child(2) { border-right: none; }
  .bio-stat-item:nth-child(1),
  .bio-stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.bio-stat-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.bio-stat-label {
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  display: block;
  opacity: 0.85;
}

/* ============ COHORT CARDS (Schedule page) ============ */
.cohort-section { padding-bottom: clamp(3rem, 6vw, 5rem); }

.cohort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .cohort-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

.cohort-card {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.cohort-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(27, 42, 78, 0.08);
}

.cohort-format {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201, 162, 39, 0.14);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.cohort-eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  text-transform: none;
}

.cohort-eyebrow::before { display: none; }

.cohort-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.cohort-meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cohort-meta > div {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cohort-meta strong {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 72px;
  flex-shrink: 0;
}

.cohort-meta > div span {
  color: var(--charcoal);
}

.cohort-card > p {
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.cohort-card .btn { align-self: flex-start; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.18), transparent 65%);
  pointer-events: none;
}

.final-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.final-cta p { color: rgba(245, 241, 232, 0.85); margin-bottom: 2rem; max-width: 600px; }

.final-cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta .btn-group { justify-content: center; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 241, 232, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .brand-mark {
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.65);
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h4 {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(245, 241, 232, 0.75);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-attribution {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.4);
  max-width: 1000px;
}

/* ============ SLIM WHY STRIP ============ */
.why-strip {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.why-strip-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-strip-head .eyebrow { margin-bottom: 0.75rem; }

.why-strip-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 720px) {
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-strip-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}

.why-strip-item:last-child { border-right: none; }

@media (max-width: 720px) {
  .why-strip-item:nth-child(2) { border-right: none; }
  .why-strip-item:nth-child(1),
  .why-strip-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.why-strip-item:hover {
  background: rgba(201, 162, 39, 0.05);
}

.why-strip-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.why-strip-item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.why-strip-item p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--charcoal);
  opacity: 0.78;
  margin: 0;
}

/* ============ INSTRUCTOR STRIP ============ */
.instructor-strip {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.instructor-strip-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 820px) {
  .instructor-strip-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

.instructor-strip-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
  max-width: 280px;
  width: 100%;
}

.instructor-strip-img::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.45;
  transform: translate(16px, 16px);
  pointer-events: none;
}

.instructor-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-strip-text .eyebrow { margin-bottom: 0.75rem; }

.instructor-strip-text h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.instructor-strip-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.instructor-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.instructor-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ============ MARQUEE (testimonial scroll) ============ */
.marquee-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: var(--warm);
  overflow: hidden;
}

.marquee-head {
  text-align: center;
  margin-bottom: 3rem;
}

.marquee-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.5rem; }
.marquee-head p { color: var(--charcoal); opacity: 0.75; font-size: 1.05rem; }

.marquee-row {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marquee-scroll 80s linear infinite;
  padding: 0.5rem 0;
}

.marquee-row.reverse {
  display: none; /* No longer used */
}

/* Pause on hover anywhere over the marquee section */
.marquee-section:hover .marquee-row {
  animation-play-state: paused;
}

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

.marquee-card {
  flex: 0 0 auto;
  width: 360px;
  padding: 1.5rem 1.6rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.marquee-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.marquee-card::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  left: 0.95rem;
  font-family: var(--display);
  font-size: 3.4rem;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  font-weight: 700;
}

.marquee-card blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  padding-top: 0.4rem;
}

.marquee-card cite {
  display: block;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  opacity: 0.75;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

/* Edge fade so cards smoothly disappear at the boundaries */
.marquee-track {
  position: relative;
}

.marquee-track::before,
.marquee-track::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track::before {
  left: 0;
  background: linear-gradient(to right, var(--warm), transparent);
}

.marquee-track::after {
  right: 0;
  background: linear-gradient(to left, var(--warm), transparent);
}

@media (max-width: 720px) {
  .marquee-card { width: 280px; padding: 1.25rem; }
  .marquee-row { animation-duration: 45s; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-row { animation: none; }
}

/* ============ ANIMATION ============ */
/* Subtle fade-in on scroll. Content is always visible by default. */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal:not(.in-view) {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
