/* =============================================
   CLEARPATH — STYLES
   Theme: Warm Editorial
   Colors: Forest #1C3828 | Amber #C48A28 | Cream #F8F4EF
   Fonts: Cormorant Garamond (headings) | Jost (body)
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest:       #2B4D6F;
  --forest-mid:   #1E3A54;
  --forest-light: #3B6590;
  --amber:        #C48A28;
  --amber-dark:   #A47020;
  --ink:          #1C1C2E;
  --body:         #4A4A5A;
  --muted:        #6B7280;
  --cream:        #F5F7FA;
  --cream-dark:   #E8EDF3;
  --white:        #FFFFFF;
  --border:       #E2E8F0;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1120px;
  --section-pad: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}

.btn-gold:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}


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

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }


/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-links a:not(.btn) {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--forest);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--forest);
  background-image:
    radial-gradient(ellipse at 15% 65%, rgba(196, 138, 40, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
  color: var(--white);
  padding: 160px 0 104px;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 20px;
  opacity: 0.65;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero .btn {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}


/* =============================================
   CREDIBILITY STRIP
   ============================================= */
.credibility-strip {
  background: var(--forest-mid);
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.strip-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.strip-logos {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}


/* =============================================
   SECTIONS (shared)
   ============================================= */
.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-navy {
  background: var(--forest);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}


/* =============================================
   WHO I HELP — PAIN CALLOUT
   ============================================= */
.pain-callout {
  background: var(--white);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  padding: 28px 36px;
  margin-bottom: 52px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pain-callout p {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.68;
  font-style: italic;
}


/* =============================================
   CARDS (Who I Help)
   ============================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.card:hover {
  box-shadow: 0 14px 44px rgba(28, 56, 40, 0.1);
  transform: translateY(-3px);
  border-color: var(--amber);
}

.card-icon {
  color: var(--amber);
  margin-bottom: 22px;
  width: 36px;
  height: 36px;
}

.card-icon svg {
  width: 36px;
  height: 36px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}


/* =============================================
   HOW I WORK
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.col-text p {
  margin-bottom: 20px;
  font-size: 17px;
}

.col-text p:last-child {
  margin-bottom: 0;
}

.col-text strong {
  color: var(--ink);
  font-weight: 600;
}

.client-quotes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 22px 28px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--forest);
}

.client-quotes span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
  font-size: 18px;
  font-weight: 600;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.cert-badge {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.pull-quote {
  background: var(--cream);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  padding: 44px;
  position: sticky;
  top: 100px;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 400;
}

.pull-quote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-theme {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  flex: 1;
}

.testimonial blockquote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 60px;
  color: var(--amber);
  line-height: 0;
  vertical-align: -22px;
  margin-right: 4px;
  opacity: 0.65;
}

.testimonial cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.testimonial cite strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}


/* =============================================
   ABOUT
   ============================================= */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.headshot-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(26, 18, 9, 0.18);
}

.headshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.headshot-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  border-radius: 4px;
}

.headshot-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--muted);
}

.headshot-placeholder p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 17px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--ink);
}

.invite-note {
  margin-top: 28px;
  padding: 16px 22px;
  background: var(--white);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: var(--body);
}

.cred-groups {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.cred-groups h3 {
  margin-bottom: 24px;
  font-size: 19px;
  color: var(--ink);
}

.cred-row-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cred-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.cred-group ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cred-group li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}


/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
  background: var(--ink);
  border-top: none;
}

.cta-inner {
  max-width: 640px;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-inner > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  line-height: 1.75;
}

.cta-email {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.cta-email a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cta-email a:hover {
  color: var(--amber);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--forest-mid);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  flex: 1;
  text-align: center;
}

.footer-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--amber);
}


/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  :root {
    --section-pad: 72px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pull-quote {
    position: static;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    position: static;
    max-width: 240px;
  }

  .cred-row-groups {
    grid-template-columns: 1fr 1fr;
  }
}


/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  :root {
    --section-pad: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .btn {
    margin-top: 16px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cert-row {
    flex-direction: column;
  }

  .cred-row-groups {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-copy {
    text-align: center;
  }

  .strip-logos {
    font-size: 11px;
  }
}
