/* =============================================
   UNBROKEN MONEY — Design tokens
   ============================================= */
:root {
  --forest:       #0F1A14;
  --forest-mid:   #1E3028;
  --forest-green: #3D7A5F;
  --green-light:  #5A9E80;
  --paper:        #F7F3EE;
  --paper-warm:   #EDE7DC;
  --gold:         #C8A97E;
  --gold-dark:    #A8864F;
  --ember:        #E85D3A;
  --ember-dark:   #C44828;
  --ink:          #1A1A1A;
  --muted:        #6B7280;
  --divider:      #E2D9CE;
  --divider-dark: #2A3F32;

  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width: 1120px;
  --radius:    5px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ember); color: #fff;
  padding: 10px 18px; z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 40px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ember);
  color: #fff;
  border-color: var(--ember);
}
.btn-primary:hover {
  background: var(--ember-dark);
  border-color: var(--ember-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247,243,238,0.4);
}
.btn-outline:hover {
  border-color: var(--paper);
  background: rgba(247,243,238,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg { font-size: 16px; padding: 16px 36px; }

.text-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest-green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.text-link:hover { color: var(--gold-dark); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--forest);
  border-bottom: 1px solid var(--divider-dark);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: baseline; gap: 2px; }
.logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--forest-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
}
.main-nav ul {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.main-nav a {
  font-size: 14px; font-weight: 500; color: #B8C4BE;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--paper); }
.nav-cta {
  background: var(--forest-green) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--green-light) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); display: block; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--forest);
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--paper);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: #B8C4BE;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Signature: cycle SVG */
.cycle-visual {
  max-width: 420px;
  opacity: 0.85;
}
.cycle-visual svg { width: 100%; }
.cycle-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  fill: #6B8F7A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cycle-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 1.8s ease forwards 0.4s;
}
.cycle-cut {
  opacity: 0;
  animation: appear 0.3s ease forwards 2s;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes appear {
  to { opacity: 1; }
}

/* =============================================
   AD SLOTS
   ============================================= */
.ad-slot {
  background: var(--paper-warm);
  border: 1px dashed #C9BEAE;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 48px 0;
}
.ad-leaderboard { min-height: 90px; }
.ad-rectangle { min-height: 250px; max-width: 336px; }
.ad-center { display: flex; justify-content: center; }
.ad-center .ad-slot { margin: 48px auto; }
.ad-slot-label {
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: #A89B87;
  font-family: var(--font-body);
}

/* =============================================
   BELIEF
   ============================================= */
.belief {
  background: var(--forest-mid);
  padding: 72px 0;
}
.belief-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.belief-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px; display: block;
}
.belief blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--paper);
  line-height: 1.5;
  margin-bottom: 20px;
}
.belief cite {
  font-size: 13px; color: #6B8F7A; font-style: normal; letter-spacing: 0.04em;
}

/* =============================================
   PILLARS
   ============================================= */
.pillars { padding: 88px 0; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar-card {
  background: #fff;
  padding: 36px 32px;
  position: relative;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--paper-warm);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.pillar-card p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.pillar-link { font-size: 14px; font-weight: 600; color: var(--forest-green); }
.pillar-link:hover { color: var(--ember); }

/* =============================================
   LATEST POSTS
   ============================================= */
.latest { padding: 0 0 88px; }
.section-head-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
}
.section-head-row .section-heading { margin-bottom: 0; }
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--forest);
}
.post-card { padding: 28px 0 28px; border-bottom: 1px solid var(--divider); }
.post-card + .post-card { border-left: none; }
.post-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ember); display: block; margin-bottom: 10px;
}
.post-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.post-card h3 a:hover { color: var(--forest-green); }
.post-card p { color: var(--muted); font-size: 14.5px; }

/* =============================================
   VIDEO TEASE
   ============================================= */
.video-tease {
  background: var(--forest);
  padding: 88px 0;
}
.video-tease-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.video-tease .eyebrow { color: var(--gold); }
.video-tease-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--paper);
  margin-bottom: 16px;
}
.video-tease-copy p { color: #B8C4BE; margin-bottom: 28px; font-weight: 300; }
.video-tease-frame {
  background: var(--forest-mid);
  border: 1px solid var(--divider-dark);
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
}
.play-ring {
  width: 64px; height: 64px;
  border: 2px solid var(--forest-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.play-ring span { font-size: 22px; color: var(--forest-green); margin-left: 4px; }

/* =============================================
   COACHING CTA
   ============================================= */
.coaching-cta {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--divider);
}
.coaching-inner { max-width: 600px; margin: 0 auto; }
.coaching-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.coaching-cta p { color: var(--muted); margin-bottom: 32px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--forest); padding-top: 56px; }
.footer-inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
}
.footer-brand p { color: #6B8F7A; font-size: 14px; margin-top: 10px; font-weight: 300; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: #B8C4BE; font-size: 14px; }
.footer-nav a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid var(--divider-dark);
  padding: 20px 0;
}
.footer-bottom p { color: #4A5E52; font-size: 13px; }
.footer-bottom a { color: #4A5E52; }
.footer-bottom a:hover { color: var(--forest-green); }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--forest);
  padding: 64px 0 56px;
}
.page-header .eyebrow { color: var(--gold); }
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--paper);
  max-width: 740px;
  margin-bottom: 18px;
}
.page-sub {
  font-size: 17px;
  color: #B8C4BE;
  max-width: 580px;
  font-weight: 300;
}
.page-sub .text-link { color: var(--forest-green); }

/* =============================================
   PROSE / STORY
   ============================================= */
.story { padding: 64px 0 48px; }
.story-inner { max-width: 660px; margin: 0 auto; }
.story-inner p { margin-bottom: 22px; color: #2A2420; }
.story-inner h2 {
  font-size: 1.5rem; margin: 48px 0 16px;
  padding-top: 48px; border-top: 1px solid var(--divider);
}
.story-inner h2:first-of-type { border-top: none; padding-top: 0; }

/* =============================================
   START HERE
   ============================================= */
.paths { padding: 64px 0 88px; }
.path-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.path-card {
  border: 1px solid var(--divider);
  border-top: 3px solid var(--forest-green);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  display: flex; flex-direction: column;
}
.path-card:nth-child(2) { border-top-color: var(--gold-dark); }
.path-card:nth-child(3) { border-top-color: var(--ember); }
.path-card .pillar-mark {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--forest-green);
  display: block; margin-bottom: 14px;
}
.path-card:nth-child(2) .pillar-mark { color: var(--gold-dark); }
.path-card:nth-child(3) .pillar-mark { color: var(--ember); }
.path-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.path-card p { color: var(--muted); font-size: 15px; margin-bottom: 24px; flex-grow: 1; }

/* =============================================
   BLOG
   ============================================= */
.blog-filters {
  display: flex; gap: 10px; flex-wrap: wrap; padding: 36px 0 0;
}
.filter-pill {
  font-size: 13px; font-weight: 500; padding: 7px 16px;
  border: 1px solid var(--divider); border-radius: 999px;
  background: #fff; cursor: pointer; transition: all 0.15s;
}
.filter-pill:hover, .filter-pill.is-active {
  background: var(--forest); color: var(--paper); border-color: var(--forest);
}
.blog-list { padding: 32px 0 88px; }
.blog-list-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.blog-post-card {
  background: #fff; border: 1px solid var(--divider);
  border-radius: var(--radius); padding: 28px;
}
.blog-post-card .post-tag { margin-bottom: 12px; }
.blog-post-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-post-card h3 a:hover { color: var(--forest-green); }
.blog-post-card p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.post-meta { font-size: 12px; color: #A89B87; font-weight: 500; }

/* =============================================
   WORK WITH ME
   ============================================= */
.offer { padding: 64px 0 88px; }
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.offer-card {
  background: #fff; border: 1px solid var(--divider);
  border-top: 3px solid var(--ember);
  border-radius: var(--radius); padding: 36px;
}
.offer-card:first-child { border-top-color: var(--forest-green); }
.offer-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.offer-price { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 24px; letter-spacing: 0.04em; }
.offer-card ul { list-style: none; margin-bottom: 28px; }
.offer-card li {
  padding: 11px 0; border-top: 1px solid var(--divider);
  font-size: 15px; color: #2A2420;
}
.offer-card li:first-child { border-top: none; padding-top: 0; }
.faq-section { padding: 0 0 88px; }
.faq-inner { max-width: 660px; }
.faq-item { padding: 28px 0; border-top: 1px solid var(--divider); }
.faq-item h4 { font-size: 1rem; margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: 15px; }

/* =============================================
   YOUTUBE PAGE
   ============================================= */
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 40px 0 88px;
}
.video-card-frame {
  background: var(--forest-mid); border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; border: 1px solid var(--divider-dark);
}
.video-card-frame .play-ring { width: 48px; height: 48px; }
.video-card-frame .play-ring span { font-size: 16px; }
.video-card h3 { font-size: 1rem; line-height: 1.4; color: var(--ink); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .pillar-grid,
  .latest-grid,
  .video-tease-inner,
  .offer-grid,
  .path-grid,
  .blog-list-grid,
  .video-grid { grid-template-columns: 1fr; }

  .latest-grid { border-top: none; }
  .post-card { border-top: 1px solid var(--divider); }
}

@media (max-width: 680px) {
  .main-nav ul {
    position: fixed; inset: 72px 0 0 0;
    background: var(--forest); flex-direction: column;
    align-items: flex-start; padding: 28px;
    gap: 20px; transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav ul.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .footer-inner { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, .cycle-line, .cycle-cut { animation: none !important; transition: none !important; }
  .cycle-line { stroke-dashoffset: 0; }
  .cycle-cut { opacity: 1; }
}
