/* ============================================
   styles.css
   From Burnout To Breakthrough — Cheryl Donahue
   ============================================ */

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  --color-cream:        #FFF5EC;
  --color-peach-light:  #FEECDE;
  --color-peach:        #FEECDD;
  --color-terra:        #CC9175;
  --color-gold:         #C59F60;
  --color-ink:          #1A1A1A;
  --color-ink-soft:     #2E2E2E;
  --color-mid:          #5A5A5A;
  --color-muted:        #8A8A8A;
  --color-border:       #E8E0D8;
  --color-border-light: #F0EAE2;
  --color-white:        #FFFFFF;
  --color-bg:           #FDFAF7;

  --font-serif:    "Georgia", "Times New Roman", serif;
  --font-sans:     system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display:  "Didact Gothic", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;

  --space-xs:   0.4rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4.5rem;

  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.5rem;
  --radius-pill: 999px;

  --shadow-card:  0 2px 12px rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 6px 20px rgba(26, 26, 26, 0.09);
  --shadow-hero:  0 10px 32px rgba(26, 26, 26, 0.10);
}

/* ============================================
   BASE
   ============================================ */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

/* ============================================
   LAYOUT
   ============================================ */

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section        { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.section--lg    { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

/* ============================================
   HEADER & NAV
   ============================================ */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(253, 250, 247, 0.96);
  border-bottom: 1px solid var(--color-border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  flex-shrink: 0;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-terra), var(--color-gold));
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

/* Display font for brand name */
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
}

.nav-brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.85rem;
  color: var(--color-mid);
  transition: color 0.18s ease;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background-color: var(--color-terra);
  transition: width 0.2s ease;
}

.nav-links a:hover { color: var(--color-ink); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  padding: 0.48rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-ink);
  font-size: 0.82rem;
  color: var(--color-ink);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease, transform 0.12s ease;
}

.nav-cta:hover {
  background-color: var(--color-ink);
  color: var(--color-cream);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.18s ease;
}

.nav-toggle:hover { box-shadow: var(--shadow-card); }

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background-color: var(--color-ink);
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--color-border-light);
  background-color: rgba(253, 250, 247, 0.98);
  backdrop-filter: blur(10px);
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color 0.15s ease;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background-color: var(--color-peach-light); }

.nav-mobile-cta {
  background-color: var(--color-ink) !important;
  color: var(--color-cream) !important;
  text-align: center;
  font-weight: 500;
}

.nav-mobile-cta:hover {
  background-color: var(--color-ink-soft) !important;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--color-terra);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.serif { font-family: var(--font-serif); }

h1, h2, h3 { line-height: 1.15; color: var(--color-ink); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: 1.1rem; }

.lead {
  font-size: 1.05rem;
  color: var(--color-mid);
  line-height: 1.7;
}

.footnote { font-size: 0.8rem; color: var(--color-muted); }

/* ============================================
   HERO HEADLINE EFFECTS
   ============================================ */

.hero-word-burnout {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  position: relative;
  display: inline-block;
}

.hero-word-burnout::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12em;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-terra) 0%, transparent 100%);
  opacity: 0.45;
  border-radius: 2px;
}

/* "Breakthrough" — italic serif, warm terra color = the destination */
.hero-word-breakthrough {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-terra);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-ink);
  color: var(--color-cream);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.12s ease;
}

.btn-primary::after { content: "→"; transition: transform 0.15s ease; }
.btn-primary:hover {
  background-color: var(--color-ink-soft);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.18);
  transform: translateY(-1px);
}
.btn-primary:hover::after { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    transform 0.12s ease;
}

.btn-secondary:hover {
  border-color: var(--color-terra);
  background-color: var(--color-peach-light);
  transform: translateY(-1px);
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-terra);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.12s ease;
}

.btn-warm::after { content: "→"; transition: transform 0.15s ease; }
.btn-warm:hover {
  background-color: #b87d62;
  box-shadow: 0 6px 18px rgba(204, 145, 117, 0.3);
  transform: translateY(-1px);
}
.btn-warm:hover::after { transform: translateX(3px); }

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header-left h2 { margin-bottom: 0.5rem; }
.section-header-left p {
  font-size: 0.95rem;
  color: var(--color-mid);
  max-width: 28rem;
}

/* ============================================
   CARDS
   Cards that ARE links get hover; others don't.
   ============================================ */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border-light);
  position: relative;
}

/* Only apply hover effect when card is a link or has .card--linked */
a.card,
.card--linked {
  display: block;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

a.card:hover,
.card--linked:hover {
  background-color: var(--color-cream);
  border-color: var(--color-border);
}

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

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.72rem;
  color: var(--color-terra);
  margin-bottom: 0.9rem;
  background-color: var(--color-peach-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card h3 { margin-bottom: 0.6rem; }
.card p  { font-size: 0.9rem; color: var(--color-mid); line-height: 1.6; }

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: start;
}

.two-column--equal { grid-template-columns: 1fr 1fr; }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.img-placeholder {
width: 100%;
border-radius: var(--radius-lg);
background: linear-gradient(135deg, var(--color-peach-light), var(--color-peach));
overflow: hidden;
position: relative;
}

.img-placeholder::after {
content: "Photo coming soon";
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
color: var(--color-terra);
letter-spacing: 0.06em;
text-transform: uppercase;
}

.img-placeholder--tall { height: 420px; }
.img-placeholder--medium { height: 280px; }
.img-placeholder--short { height: 200px; }

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS
   ============================================ */

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

/* Stat cards are not links — no hover */
.stat-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border-light);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-mid);
  line-height: 1.5;
}

/* ============================================
   INLINE STRIP / CTA BANNER
   ============================================ */

.inline-strip {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.inline-strip--warm {
  background: linear-gradient(135deg, var(--color-peach-light), var(--color-cream));
  border-color: var(--color-border);
}

.inline-strip-text { max-width: 34rem; }
.inline-strip-text h2 { margin-bottom: 0.5rem; }
.inline-strip-text p  { font-size: 0.95rem; color: var(--color-mid); }

.inline-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--color-terra);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero h1       { margin-bottom: 1rem; }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 34rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-meta      { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.hero-footnote  { font-size: 0.78rem; color: var(--color-muted); }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

/* Hero card — this IS an interactive element, keep gentle hover */
.hero-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-hero);
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-headshot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-headshot img {
  width: 55%;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
   padding-bottom: 10px;
}

.hero-signoff           { font-size: 0.82rem; color: var(--color-muted); }
.hero-signoff strong    { color: var(--color-ink); display: block; font-size: 0.9rem; }


.hero {
  position: relative;
  overflow: hidden;
}

/* ============================================
   WARM / INK BANDS
   ============================================ */

.band--warm {
  background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--color-cream) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.band--ink {
  background-color: var(--color-ink);
  color: var(--color-cream);
}

.band--ink .kicker  { color: var(--color-gold); }
.band--ink h2       { color: var(--color-cream); }
.band--ink p,
.band--ink li       { color: #d0c8bf; }

/* ============================================
   BULLET LIST
   ============================================ */

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

ul.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--color-mid);
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

ul.bullet-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.6rem;
  color: var(--color-terra);
}

/* ============================================
   TESTIMONIAL CARDS — no hover (not links)
   ============================================ */

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--color-mid);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card cite           { font-style: normal; font-size: 0.82rem; color: var(--color-muted); }
.testimonial-card cite strong    { display: block; color: var(--color-ink); font-size: 0.9rem; margin-bottom: 0.15rem; }

/* ============================================
   BLOG CARDS — linked, keep hover
   ============================================ */

.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.blog-card:hover {
  background-color: var(--color-cream);
  border-color: var(--color-border);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-peach-light), var(--color-peach));
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img img  { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3       { font-size: 1rem; line-height: 1.35; color: var(--color-ink); }
.blog-card p        { font-size: 0.875rem; color: var(--color-mid); line-height: 1.6; flex: 1; }
.blog-card-link     { font-size: 0.82rem; color: var(--color-terra); font-weight: 500; margin-top: 0.25rem; }

/* ============================================
   FORM
   ============================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.form-group label { font-size: 0.82rem; color: var(--color-muted); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terra);
  box-shadow: 0 0 0 3px rgba(204, 145, 117, 0.12);
}

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

/* ============================================
   BLOG POST PAGE
   ============================================ */

.post-hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  max-width: 760px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.post-meta-divider { color: var(--color-border); }

.post-cover {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-peach-light), var(--color-peach));
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

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

.post-body {
  max-width: 760px;
  margin: 0 auto;
}

.post-body p {
  font-size: 1rem;
  color: var(--color-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-size: 1.4rem;
  color: var(--color-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.post-body h3 {
  font-size: 1.1rem;
  color: var(--color-ink);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.post-body blockquote {
  border-left: 3px solid var(--color-terra);
  padding: 0.75rem 1.25rem;
  margin: 2rem 0;
  background: var(--color-peach-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-ink);
  line-height: 1.7;
}

.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-mid);
  font-size: 1rem;
  line-height: 1.8;
}

.post-body ul li,
.post-body ol li { margin-bottom: 0.4rem; }

.post-body a {
  color: var(--color-terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--color-ink); }

.post-body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

/* Author bio box */
.post-author {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-peach-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: var(--space-lg);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-terra), var(--color-gold));
  flex-shrink: 0;
  overflow: hidden;
}

.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.post-author-name  { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.post-author-bio   { font-size: 0.875rem; color: var(--color-mid); line-height: 1.6; }

/* Post navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 48%;
}

.post-nav-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.post-nav-title {
  font-size: 0.9rem;
  color: var(--color-terra);
  line-height: 1.4;
  transition: color 0.15s ease;
}

.post-nav-title:hover { color: var(--color-ink); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  border-top: 1px solid var(--color-border-light);
  padding: 2.5rem 0 3rem;
  background-color: var(--color-bg);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-ink);
  margin-bottom: 1.25rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-terra), var(--color-gold));
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-muted);
  position: relative;
  transition: color 0.15s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background-color: var(--color-terra);
  transition: width 0.18s ease;
}

.footer-links a:hover          { color: var(--color-ink); }
.footer-links a:hover::after   { width: 100%; }

.footer-legal {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.footer-legal a { color: var(--color-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--color-ink); }

.footer-credit {
  font-size: 0.72rem;
  color: #6b6b6b;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: #6b6b6b;
  transition: color 0.15s ease;
}

.footer-credit a:hover { color: #6b6b6b; }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal-group > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s;    opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
  .wrapper { padding-left: 1.25rem; padding-right: 1.25rem; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    gap: 2rem;
  }

  .hero h1             { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero-subtitle       { font-size: 0.98rem; }

  .card-grid,
  .stats-grid          { grid-template-columns: 1fr; }

  .two-column,
  .two-column--equal   { grid-template-columns: 1fr; gap: 2rem; }

  .btn-primary,
  .btn-secondary,
  .btn-warm            { width: 100%; justify-content: center; }

  .hero-cta-group      { flex-direction: column; }

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

  .nav-toggle          { display: flex; }

  .inline-strip        { flex-direction: column; align-items: flex-start; }

  .inline-strip-actions {
    flex-direction: column;
    width: 100%;
  }

  .inline-strip-actions .btn-primary,
  .inline-strip-actions .btn-secondary,
  .inline-strip-actions .btn-warm { width: 100%; justify-content: center; }

  .section { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

  .section-header      { flex-direction: column; align-items: flex-start; }

  .post-cover          { height: 220px; }
  .post-hero           { padding-top: var(--space-xl); }

  .post-nav            { flex-direction: column; }
  .post-nav-link       { max-width: 100%; }

  /* Nav brand tagline: hide "with Cheryl Donahue" on very small screens */
  .nav-brand-tagline-cheryl { display: none; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wrapper             { padding-left: 1.75rem; padding-right: 1.75rem; }

  .nav-links,
  .nav-cta             { display: flex !important; }

  .nav-toggle,
  .nav-mobile          { display: none !important; }

  /* Tighter nav on tablet */
  .nav-links           { gap: 0.9rem; }
  .nav-links a         { font-size: 0.78rem; }
  .nav-brand-name      { font-size: 0.72rem; }
  .nav-brand-tagline   { display: none; }

  .hero {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    padding-top: var(--space-xl);
  }

  .card-grid           { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid          { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-column          { gap: 2rem; }
}

@media (min-width: 1024px) {
  .wrapper             { padding-left: 2rem; padding-right: 2rem; }

  .nav-links,
  .nav-cta             { display: flex !important; }

  .nav-toggle,
  .nav-mobile          { display: none !important; }

  .card-grid           { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-grid          { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
}

/* Work With Me hero card — responsive */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  /* Hero card full-width on mobile */
  .hero-card {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }

  /* Work With Me CTA button full-width on mobile */
  .band--warm .btn-warm {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 1.25rem;
  }
}
