/* ============================================
   TRUE PATH CO. Main Stylesheet
   truepathco.com
   ============================================ */

/* --- Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Georgia:ital@0;1&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* --- Tokens --- */
:root {
  --yellow:  #FFD400;
  --cream:   #F4EFE9;
  --orange:  #FF6A00;
  --dark:    #2A2A2A;
  --mid:     #6B6B6B;
  --light:   #F9F7F4;
  --border:  rgba(42,42,42,0.12);
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Georgia', serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --max-width: 1100px;
  --section-pad: 80px 24px;
}

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dark);
}

h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(16px, 2vw, 20px); }
h4 { font-size: 15px; }

p { color: var(--mid); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0.6;
  margin-bottom: 12px;
  display: block;
}

em.highlight {
  font-style: normal;
  color: var(--orange);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: var(--section-pad); }
section.alt { background: var(--light); }
section.dark { background: var(--dark); }
section.cream { background: var(--cream); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  border: none;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark { background: var(--dark); color: var(--cream); }
.btn-outline { background: transparent; color: var(--dark); border: 1px solid rgba(42,42,42,0.25); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-ghost { background: transparent; color: var(--mid); font-size: 13px; padding: 12px 0; }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,239,233,0.25);
}
.btn-ghost-light:hover { border-color: rgba(244,239,233,0.5); color: #fff; }

.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- Nav --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--dark); }

.nav-links a.linkedin-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a.linkedin-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.nav-links a.linkedin-link:hover svg { opacity: 1; }

a.nav-cta {
  font-size: 13px;
  font-weight: 500;
  background: var(--dark);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: opacity 0.15s ease;
}

a.nav-cta:hover { opacity: 0.85; color: var(--cream); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* --- Hero --- */
.hero {
  padding: 100px 40px 80px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 0;
}

/* --- Two Path Cards --- */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.path-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.path-card:hover {
  border-color: rgba(255,106,0,0.3);
  box-shadow: 0 4px 24px rgba(255,106,0,0.06);
}

.path-card.accent {
  border-color: var(--orange);
  border-width: 1.5px;
}

.card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.tag-org { background: #FFF0E6; color: #CC4400; }
.tag-leader { background: var(--light); color: var(--mid); }
.tag-academy { background: var(--cream); color: var(--dark); }

.path-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.path-card .who {
  font-size: 13px;
  color: var(--mid);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.5;
}

.problem-list {
  list-style: none;
  margin-bottom: 20px;
}

.problem-list li {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

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

.problem-list li::before {
  content: "→";
  color: var(--orange);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease;
}

.card-link:hover { gap: 8px; }

/* --- Shape Note (inside path cards) --- */
.shape-note {
  background: rgba(255,106,0,0.05);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 4px 0 18px;
}

.shape-note strong {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.shape-note p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.55;
  margin: 0;
}

/* --- Hero orient line --- */
.hero-orient {
  font-size: 13px;
  color: var(--mid);
  margin-top: 16px;
  max-width: 540px;
}

/* --- Outcomes Box --- */
.outcomes-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.outcomes-box .box-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0.6;
  margin-bottom: 18px;
  display: block;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.outcome-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.outcome-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  flex-shrink: 0;
}

.outcome-text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.55;
}

/* --- How Row --- */
.how-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.how-row p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  max-width: 520px;
}

.how-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease;
}

.how-link:hover { gap: 8px; }

/* --- Executive Proof --- */
.exec-proof {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

.exec-proof p { color: var(--dark); margin: 0; }

.exec-proof strong {
  color: var(--orange);
  font-weight: 600;
}

/* --- Academy Sessions --- */
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.session-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.session-card:hover {
  border-color: rgba(255,106,0,0.3);
  box-shadow: 0 4px 24px rgba(255,106,0,0.06);
}

.session-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.session-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.session-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* --- Academy Outcomes (legacy stat cards, kept in case reused) --- */
.academy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.stat-num {
  font-size: 26px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 6px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
}

/* --- Credibility --- */
.cred-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cred-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.pillar-num {
  font-size: 32px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pillar-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* --- Social Proof --- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
}

.proof-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 16px;
}

.proof-pullquote {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--orange);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.proof-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 18px;
}

.proof-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  flex-shrink: 0;
}

.proof-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

.proof-role {
  font-size: 12px;
  color: var(--mid);
}

.proof-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  gap: 8px;
}

.proof-placeholder p {
  font-size: 12px;
  color: var(--mid);
  opacity: 0.5;
  line-height: 1.5;
}

/* --- Podcast Strip --- */
.podcast-strip {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.podcast-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.podcast-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.podcast-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0.6;
  margin-bottom: 2px;
}

.podcast-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

/* --- About Mita --- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo-wrap {
  width: 100%;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 520px;
}

.about-copy p {
  max-width: 540px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.cred-pill {
  font-size: 12px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--mid);
}

/* --- Diagnostic Strip --- */
.diag-section {
  padding: 80px 40px;
  background: var(--dark);
}

.diag-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.diag-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: block;
}

.diag-section h2 {
  color: var(--cream);
  max-width: 560px;
  margin-bottom: 12px;
}

.diag-section p {
  color: rgba(244,239,233,0.6);
  max-width: 480px;
  margin-bottom: 32px;
}

.diag-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.diag-meta {
  font-size: 12px;
  color: rgba(244,239,233,0.3);
  margin-top: 14px;
}

/* --- Newsletter Strip --- */
.newsletter-strip {
  padding: 56px 40px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-copy h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.newsletter-copy p {
  font-size: 14px;
  color: var(--mid);
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-form input[type="email"] {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  width: 260px;
  outline: none;
  transition: border-color 0.15s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--orange);
}

.newsletter-form input::placeholder { color: rgba(42,42,42,0.35); }

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand-block .footer-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer-brand-block .footer-logo span { color: var(--orange); }

.footer-brand-block p {
  font-size: 13px;
  color: rgba(244,239,233,0.45);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-block {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,233,0.4);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(244,239,233,0.65);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

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

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(244,239,233,0.3);
}

.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(244,239,233,0.4);
  transition: color 0.15s ease;
}

.footer-linkedin:hover { color: var(--cream); }

.footer-linkedin svg {
  width: 16px;
  height: 16px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 64px 20px 48px; }

  .path-grid,
  .proof-grid,
  .cred-pillars,
  .academy-stats,
  .session-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo-wrap { max-width: 240px; }

  .outcomes-grid { grid-template-columns: 1fr; }

  .how-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { width: 100%; }

  .footer-top { flex-direction: column; }
  .footer-links-block { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .podcast-strip { flex-direction: column; align-items: flex-start; gap: 14px; }

  .diag-section { padding: 56px 20px; }
  .newsletter-strip { padding: 40px 20px; }
  .container { padding: 0 20px; }
}
