/* ============================================================
   Soul Works by Dr. Brooklyn Chick™ · Site Stylesheet
   Built to the locked Brand & Site Reference Guide (2026-05-19).
   Plum #5a3e63 · Cormorant Garamond + DM Sans · warm neutrals.
   ============================================================ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --plum:        #5a3e63;
  --plum-light:  #7a5a85;
  --plum-deep:   #3d2845;
  --warm-light:  #e6e4e8;
  --cream:       #e9e6e2;
  --brown:       #473530;
  --dark:        #3b2f2f;
  --off-white:   #faf9f7;
  --text-body:   #2e2a2a;
  --muted:       #665f6b;
  --field-border: #948c98;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 4px;
  --shadow-card: 0 2px 18px rgba(90, 62, 99, 0.08);
  --shadow-lift: 0 12px 36px rgba(61, 40, 69, 0.16);
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--plum); }
ul { list-style: none; }

::selection { background: var(--plum); color: #fff; }

:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
/* Dark surfaces: plum-on-plum focus ring is invisible, so flip to light. */
.nav :focus-visible,
.footer :focus-visible,
.page-header :focus-visible,
.section-plum :focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display em { color: var(--plum); font-style: italic; }

h2, .h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  color: var(--dark);
  letter-spacing: -0.005em;
}
h2 em, .h2 em { color: var(--plum); font-style: italic; }

h3, .h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 500;
  color: var(--brown);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--warm-light); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--brown);
  line-height: 1.7;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}
.hero .serif-quote { font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--plum); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.6rem; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 1.6rem; }

section { padding: var(--section-pad) 0; }
.section-cream { background: var(--cream); }
.section-lavender { background: var(--warm-light); }
.section-plum { background: var(--plum); color: #fff; }
.section-deep { background: var(--plum-deep); color: #fff; }

.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  background: var(--plum);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(61, 40, 69, 0.18);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo sup { font-size: 0.5em; font-style: normal; top: -0.9em; }

.nav-menu { display: flex; align-items: center; gap: 0.35rem; }

.nav-item { position: relative; }

.nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.045em;
  text-decoration: none;
  padding: 0.7rem 0.95rem;
  transition: color 0.18s var(--ease);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: #fff; }
.nav-link .caret {
  display: inline-block;
  margin-left: 0.3rem;
  border: solid rgba(255, 255, 255, 0.7);
  border-width: 0 1.4px 1.4px 0;
  padding: 2.4px;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}
.nav-item:hover .caret, .nav-link[aria-expanded="true"] .caret { transform: rotate(-135deg) translateY(1px); }

.nav-drop {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 244px;
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--plum);
  box-shadow: var(--shadow-lift);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop a {
  display: block;
  padding: 0.62rem 0.85rem;
  font-size: 0.85rem;
  color: var(--brown);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-drop a:hover { background: var(--warm-light); color: var(--plum); }
.nav-drop a .sub { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 1px; }

.nav-cta {
  background: #fff;
  color: var(--plum);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-left: 0.6rem;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.92rem 1.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--plum);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary { background: var(--plum); color: #fff; }
.btn-primary:hover { background: var(--plum-deep); border-color: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary { background: transparent; color: var(--plum); }
.btn-secondary:hover { background: var(--plum); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--plum); border-color: #fff; }
.btn-light:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: #fff; color: var(--plum); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn-row.center { justify-content: center; }

.textlink {
  color: var(--plum);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(90, 62, 99, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.textlink:hover { border-color: var(--plum); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--plum);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero p.lead { margin-top: 1.4rem; }

/* ── PAGE HEADER (interior pages) ─────────────────────────── */
.page-header {
  background: var(--plum);
  color: #fff;
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
  position: relative;
}
.page-header .display, .page-header h1 { color: #fff; }
.page-header .display em { color: var(--warm-light); }
.page-header p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin-top: 1.2rem; }
.page-header .eyebrow { color: rgba(255, 255, 255, 0.7); }

/* ── PHOTO FRAMES (real photos + remaining styled placeholders) ─ */
.photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--plum-light), var(--plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  box-shadow: var(--shadow-lift);
}
.photo.tall { min-height: 480px; }
.photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-note {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  padding: 1.5rem;
}
.photo-note svg { margin: 0 auto 0.7rem; display: block; opacity: 0.8; }
.photo-note small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.55rem;
  opacity: 0.7;
}
.photo-frame {
  position: relative;
}
.photo-frame::after {
  content: '';
  position: absolute;
  right: -16px; bottom: -16px;
  width: 64%; height: 64%;
  border: 1.5px solid var(--plum);
  border-radius: 8px;
  z-index: -1;
}

/* ── PRESS BAR ────────────────────────────────────────────── */
.press {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.9rem 0;
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  flex-wrap: wrap;
}
.press-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.press-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.3rem;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.press-logo:hover { opacity: 1; transform: translateY(-1px); }
.press-logo svg { height: 23px; width: auto; display: block; }
@media (max-width: 620px) {
  .press-logo svg { height: 20px; }
}

/* ── CARDS ────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Formats grid (work-with-me): 3 across, last two centered on the bottom row */
.grid-formats { grid-template-columns: repeat(6, 1fr); }
.grid-formats > * { grid-column: span 2; }
.grid-formats > *:nth-last-child(2) { grid-column: 2 / span 2; }

.card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2.1rem 1.9rem;
  border-top: 3px solid var(--plum);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card.on-cream { background: #fff; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--warm-light);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.card h3 { color: var(--dark); margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: #6f6469; }
.card .textlink { margin-top: 1.1rem; display: inline-block; }

.card-feature {
  background: var(--plum);
  color: #fff;
  border-top-color: var(--plum-deep);
}
.card-feature .card-num { color: rgba(255, 255, 255, 0.32); }
.card-feature h3 { color: #fff; }
.card-feature p { color: rgba(255, 255, 255, 0.85); }
.card-feature .textlink { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── SPLIT SECTION (text + image) ─────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse .split-media { order: -1; }

/* ── STATS BAND ───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--plum);
  line-height: 1;
}
.section-plum .stat-num, .section-deep .stat-num { color: #fff; }
.stat-label {
  font-size: 0.86rem;
  color: var(--brown);
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}
.section-plum .stat-label, .section-deep .stat-label { color: rgba(255, 255, 255, 0.82); }

/* ── PULL QUOTE ───────────────────────────────────────────── */
.pullquote {
  background: var(--plum);
  color: #fff;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  max-width: 880px;
  margin: 0 auto 1.4rem;
}
.pullquote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-light);
}

/* ── FEATURE LIST / CHECKS ────────────────────────────────── */
.checklist { display: grid; gap: 0.9rem; }
.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.96rem;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--warm-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a3e63' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.section-plum .checklist li::before, .section-deep .checklist li::before {
  background-color: rgba(255, 255, 255, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ── STEP / NUMBERED FLOW ─────────────────────────────────── */
.steps { display: grid; gap: 1.4rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  background: #fff;
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--plum);
  line-height: 1;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { font-size: 0.92rem; color: #6f6469; }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--warm-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 2.6rem 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--dark);
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--plum);
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease);
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner { padding: 0 0 1.5rem; font-size: 0.96rem; color: var(--brown); }

/* ── BLOG / POST CARDS ────────────────────────────────────── */
.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.post-thumb {
  height: 8px;
  background: linear-gradient(90deg, var(--plum), var(--plum-light));
}
.post-body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.7rem;
}
.post-card h3 { color: var(--dark); margin-bottom: 0.6rem; line-height: 1.25; }
.post-card p { font-size: 0.9rem; color: #6f6469; }
.post-card .textlink { margin-top: auto; padding-top: 1.1rem; }

/* ── BOOK CARDS ───────────────────────────────────────────── */
.book {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.2rem;
  align-items: start;
  background: #fff;
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--plum);
}
.book-cover { border-radius: 4px; box-shadow: var(--shadow-lift); aspect-ratio: 2 / 3; object-fit: cover; width: 100%; }
.book-tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  background: var(--warm-light);
  color: var(--plum);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.book-tag.soon { background: var(--cream); color: var(--brown); }

.book-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; align-items: stretch; }
.book-card2 {
  background: #fff;
  border-radius: 8px;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.book-card2 .book-cover { max-width: 215px; margin: 0 auto 1.7rem; display: block; }
.book-card2 h2 { font-size: clamp(1.45rem, 2.1vw, 1.85rem); }
.book-card2 .btn-row { margin-top: auto; padding-top: 1.5rem; }
.book-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0.9rem 0 0;
}
.book-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--brown);
  margin: 0.3rem 0 0;
}
.book-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  color: var(--plum);
  border-left: 2px solid var(--plum);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
}

/* ── MEDIA CARD THUMBNAILS ────────────────────────────────── */
.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  display: block;
}
.card-thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--plum-light), var(--plum-deep));
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}

/* ── RESOURCE GRID (reading list, media) ──────────────────── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.2rem;
}
.tile {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: block;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.tile-cover { aspect-ratio: 2 / 3; object-fit: cover; width: 100%; }
.tile-cap { padding: 0.7rem 0.85rem; }
.tile-cap strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 500; }
.tile-cap span { font-size: 0.72rem; color: var(--muted); }
.tile-film {
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, var(--plum-light), var(--plum-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; text-align: center; padding: 1rem;
}

/* ── FORMS ────────────────────────────────────────────────── */
.form { display: grid; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--field-border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s var(--ease);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
  border-color: var(--plum);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--plum);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ── EMAIL CAPTURE STRIP ──────────────────────────────────── */
.optin {
  background: var(--warm-light);
  border-radius: 10px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.optin-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.optin-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border: 1.5px solid #fff;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
/* ── QUOTE BAND (In My Words) ─────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem 2rem;
}
.quote-grid blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}
.quote-grid-cite { display: block; margin-top: 2rem; text-align: center; }

/* ── DUO CTA (two CTAs side by side on dark) ─────────────── */
.duo-cta { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4rem); }
.duo-cta > div { text-align: center; padding: 0 clamp(0.5rem, 2vw, 2rem); }
.duo-cta > div + div { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.duo-cta h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.duo-cta h2 em { color: var(--warm-light); }
.duo-cta p { color: rgba(255, 255, 255, 0.85); max-width: 460px; margin: 1.1rem auto 0; }

.cta-band { background: var(--plum-deep); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--warm-light); }
.section-deep h2 em, .section-plum h2 em { color: var(--warm-light); }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 1.1rem auto 0; }

/* ── NOTICE / DISCLAIMER ──────────────────────────────────── */
.notice {
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 3px solid var(--warm-light);
  padding-left: 1.1rem;
  line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.62); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .nav-logo { font-size: 1.5rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.32rem 0;
  transition: color 0.18s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-social a:hover { background: var(--plum); border-color: var(--plum); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { max-width: 620px; font-size: 0.76rem; line-height: 1.6; margin-top: 1.4rem; color: rgba(255,255,255,0.72); }

/* ── UTILITIES ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider { width: 54px; height: 3px; background: var(--plum); margin: 1.4rem 0; border: none; }
.divider.center { margin-left: auto; margin-right: auto; }
.eyebrow + .display, .eyebrow + h1, .eyebrow + h2 { margin-top: 0; }

/* ── SCROLL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover, .btn:hover, .btn-primary:hover, .btn-secondary:hover,
  .btn-light:hover, .post-card:hover, .tile:hover, .press-logo:hover {
    transform: none;
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .optin { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--plum-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.2rem 2rem;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: 0.85rem 0.6rem; font-size: 0.95rem; width: 100%; text-align: left; }
  .nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border-top: none;
    border-left: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    margin: 0 0 0.6rem 0.8rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s var(--ease);
  }
  .nav-item.open .nav-drop { max-height: 600px; }
  .nav-drop a { color: rgba(255, 255, 255, 0.78); }
  .nav-drop a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
  .nav-drop a .sub { color: rgba(255, 255, 255, 0.5); }
  .nav-cta { margin: 1rem 0.6rem 0; text-align: center; }
}

/* ── TABLET (621-900px): step 3-col grids down to 2 ───────── */
@media (min-width: 621px) and (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-formats { grid-template-columns: repeat(2, 1fr); }
  .grid-formats > *, .grid-formats > *:nth-last-child(2) { grid-column: auto; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .press { padding: 1.6rem 0 1.3rem; }
  .press-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem 1rem; justify-items: center; align-items: center; }
  .press-label { grid-column: 1 / -1; text-align: center; margin-bottom: 0.5rem; }
  .quote-grid { grid-template-columns: 1fr; gap: 0; max-width: 320px; margin: 0 auto; }
  .quote-grid blockquote { text-align: center; font-size: 1.18rem; padding: 1.15rem 0; }
  .quote-grid blockquote + blockquote { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .quote-grid-cite { margin-top: 1.4rem; }
  .grid-2plus1-mobile, .grid-2x2-mobile { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .grid-2plus1-mobile > *:not(:last-child), .grid-2x2-mobile > * { padding: 1.15rem 1rem; }
  .grid-2plus1-mobile > *:not(:last-child) h3, .grid-2x2-mobile > * h3 { font-size: 1rem; line-height: 1.3; text-wrap: balance; margin-bottom: 0.5rem; }
  .grid-2plus1-mobile > *:not(:last-child) p, .grid-2x2-mobile > * p { font-size: 0.8rem; line-height: 1.55; }
  .grid-2plus1-mobile > *:last-child { padding: 1.6rem 1.4rem; }
  .grid-2plus1-mobile > *:last-child h3 { text-wrap: balance; }
  .grid-2plus1-mobile > *:last-child { grid-column: 1 / -1; }
  .duo-cta { grid-template-columns: 1fr; gap: 1.1rem; }
  .duo-cta > div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    padding: 1.7rem 1.3rem 1.5rem;
  }
  .duo-cta > div + div { border-left: 1px solid rgba(255, 255, 255, 0.13); }
  .duo-cta h2 { font-size: 1.35rem; }
  .duo-cta p { font-size: 0.9rem; margin-top: 0.8rem; }
  .duo-cta .btn-row { margin-top: 1.2rem; }
  .grid-media-mobile { grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
  .grid-media-mobile > * { padding: 0.65rem 0.65rem 0.8rem; }
  .grid-media-mobile .card-thumb { margin: -0.65rem -0.65rem 0.55rem; width: calc(100% + 1.3rem); max-width: none; border-radius: 6px 6px 0 0; }
  .grid-media-mobile .post-meta { font-size: 0.55rem; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
  .grid-media-mobile h3 { font-size: 0.72rem; line-height: 1.35; margin-bottom: 0.35rem; }
  .grid-media-mobile p { display: none; }
  .grid-media-mobile .textlink { font-size: 0.7rem; padding: 0.45rem 0; }
  .grid-formats { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .grid-formats > *, .grid-formats > *:nth-last-child(-n+2) { grid-column: auto; padding: 1.15rem 1rem; }
  .grid-formats > * h3 { font-size: 1rem; line-height: 1.3; text-wrap: balance; margin-bottom: 0.5rem; }
  .grid-formats > * p { font-size: 0.8rem; line-height: 1.55; }
  .grid-formats > *:last-child { grid-column: 1 / -1; padding: 1.6rem 1.4rem; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; }
  .stat-num { font-size: 1.9rem; }
  .stat-label { font-size: 0.72rem; line-height: 1.4; }
  .form-row { grid-template-columns: 1fr; }
  .book { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-grid2 { grid-template-columns: 1fr; }
  .book-pull { text-align: left; }
  .book-cover { max-width: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .step { grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
  .step-num { font-size: 1.4rem; min-width: 2rem; margin-top: 0.15rem; }
  .step p { font-size: 0.88rem; }
  /* touch targets: 44px-class tap areas */
  .textlink { display: inline-block; padding: 0.55rem 0; border-bottom-width: 1.5px; }
  .footer-col a { padding: 0.55rem 0; }
  .footer-social a { width: 44px; height: 44px; }
  .press-logo { padding: 0.7rem 0.3rem; }
  a[href^="mailto:"] { display: inline-block; padding: 0.9rem 0; margin: -0.45rem 0; }
  .nav-cta { padding-top: 0.9rem; padding-bottom: 0.9rem; }
}


/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--plum);
  color: #fff;
  padding: 0.9rem 1.4rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* ── FOOTER CRISIS BLOCK ──────────────────────────────────── */
.footer-crisis {
  margin: 2.6rem 0 0;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.footer-crisis h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.footer-crisis ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 0.55rem 2rem;
}
.footer-crisis li {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.footer-crisis li strong { color: #fff; font-weight: 500; }
.footer-crisis > p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-style: italic;
}

/* ── FOOTER LEGAL LINKS ───────────────────────────────────── */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 1.8rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.3rem 0;
}
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }

/* ── FORM PHI NOTICE ──────────────────────────────────────── */
.form-phi-notice {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
  background: var(--off-white);
  border-left: 3px solid var(--plum);
  padding: 0.85rem 1.1rem;
  margin: 0 0 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.form-phi-notice a { color: var(--plum); }

/* ── LEGAL / LONG-FORM PROSE PAGES ────────────────────────── */
.legal-prose { padding-bottom: 1rem; }
.legal-prose h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin: 2.8rem 0 0.9rem;
}
.legal-prose h2:first-of-type { margin-top: 1.4rem; }
.legal-prose p, .legal-prose li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-body);
}
.legal-prose ul { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.legal-prose li { margin-bottom: 0.6rem; }
.legal-prose p { margin-bottom: 1.2rem; }
.legal-date {
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: 2.2rem !important;
}
.notice-strong {
  background: var(--off-white);
  border-left: 3px solid var(--plum);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice-strong p { margin: 0 !important; color: var(--text-body) !important; }

@media (max-width: 620px) {
  .footer-crisis { padding: 1.3rem 1.2rem; }
  .footer-crisis ul { grid-template-columns: 1fr; }
}

/* ── BLOG POST (Soul Space archive articles) ─────────────── */
.post-article { padding: 3rem 0 4rem; }
.post-breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.6rem; }
.post-breadcrumb a { color: var(--muted); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--plum); }
.post-breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }
.post-header { margin-bottom: 2.4rem; }
.post-header .display { color: var(--plum); margin-bottom: 1rem; }
.post-byline { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }
.post-byline span { margin: 0 0.5rem; opacity: 0.6; }

.post-prose { font-size: 1.06rem; line-height: 1.85; color: var(--text-body); }
.post-prose p { margin: 0 0 1.5rem; }
.post-prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--plum);
  margin: 2.8rem 0 1rem;
  line-height: 1.2;
}
.post-prose ul, .post-prose ol { margin: 0 0 1.5rem; padding-left: 1.4rem; }
.post-prose li { margin-bottom: 0.6rem; }
.post-prose strong { color: var(--dark); font-weight: 500; }
.post-prose a { color: var(--plum); text-decoration: underline; text-underline-offset: 2px; }
.post-prose blockquote {
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--plum);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--plum-deep);
}

.post-disclaimer { margin: 3rem 0 0; font-size: 0.85rem; }
.post-disclaimer p { margin: 0; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.6rem 0 0;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--warm-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.92rem;
  line-height: 1.35;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.post-nav-link:hover { border-color: var(--plum); transform: translateY(-2px); }
.post-nav-link span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.post-cta {
  margin: 3rem 0 0;
  padding: 2.2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  text-align: center;
}
.post-cta p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--plum);
  margin: 0 0 1.3rem;
}
.post-cta .btn { margin: 0 0.4rem 0.5rem; }

/* Soul Space archive grid on the index */
.archive-list { margin-top: 1rem; }
@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
}

/* Blog post list + reading refinements */
.post-prose ul, .post-prose ol { margin: 0 0 1.6rem; padding-left: 1.3rem; }
.post-prose li { margin-bottom: 0.55rem; padding-left: 0.2rem; line-height: 1.75; }
.post-prose li::marker { color: var(--plum); }
.post-prose li p { margin: 0; display: inline; }
.post-prose > p:first-child { font-size: 1.14rem; color: var(--dark); }
.post-prose h2 + p { margin-top: 0; }
.post-prose a:hover { color: var(--plum-deep); }
.post-article { padding: 3rem 0 3.5rem; }
.post-article .wrap-narrow { max-width: 720px; }

/* Essay card grids: 2 columns on mobile (was collapsing to 1) */
@media (max-width: 620px) {
  #soul-posts,
  .grid-3.archive-list { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  #soul-posts .post-body,
  .archive-list .post-body { padding: 1rem 0.95rem 1.15rem; }
  #soul-posts .post-card h3,
  .archive-list .post-card h3 { font-size: 1rem; line-height: 1.25; margin-bottom: 0.5rem; }
  #soul-posts .post-card p,
  .archive-list .post-card p { font-size: 0.82rem; line-height: 1.5; }
  #soul-posts .post-meta,
  .archive-list .post-meta { font-size: 0.68rem; margin-bottom: 0.4rem; }
  #soul-posts .post-card .textlink,
  .archive-list .post-card .textlink { font-size: 0.8rem; }
}
