/* ─── RESET & VARIABLES ──────────────────────────────────── */

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

:root {
  --warm-white:   #F4F3EE;
  --paper:        #EDECEA;
  --ink:          #18181A;
  --ink-mid:      #3A3A3C;
  --ink-light:    #7A7A7C;
  --green:        #2B4439;
  --green-light:  #3A5A4C;
  --rule:         #CCC9C0;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Barlow', system-ui, sans-serif;
  --condensed:    'Barlow Condensed', 'Barlow', sans-serif;
}

html { font-size: 16px; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); }

/* ─── NAV ────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--rule);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(700%) hue-rotate(110deg) brightness(75%);
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.nav-wordmark:hover .nav-logo { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

/* Mobile hamburger */
.nav-toggle { display: none; }
.nav-hamburger {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ─── HERO (homepage) ────────────────────────────────────── */

.hero-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-bg-mark {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(22rem, 38vw, 34rem);
  height: auto;
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(700%) hue-rotate(110deg) brightness(75%);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.hero {
  padding: 7rem 3rem 5.5rem;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-bottom: 0.5rem;
}

.hero-wordmark {
  margin-bottom: 2.5rem;
}

.hero-logo {
  width: clamp(200px, 28vw, 300px);
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(700%) hue-rotate(110deg) brightness(75%);
}

.hero-rule {
  width: 3rem;
  height: 1px;
  background: var(--green);
  margin: 2rem 0;
}

.hero-headline {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  max-width: 32rem;
}

.hero-right {
  padding-bottom: 0.5rem;
}

.hero-body p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
  max-width: 36rem;
}

.hero-body p:last-child { margin-bottom: 0; }

.hero-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── STAT STRIP (homepage) ──────────────────────────────── */

.stat-strip {
  background: var(--green);
  border-bottom: 1px solid var(--green);
}

.stat-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: 3rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(244, 243, 238, 0.95);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.stat-number sup {
  font-size: 1.6rem;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 0.1em;
  opacity: 0.7;
}

.stat-divider-v {
  width: 1px;
  height: 3.5rem;
  background: rgba(244, 243, 238, 0.2);
}

.stat-eyebrow {
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 243, 238, 0.5);
  margin-bottom: 0.5rem;
}

.stat-body {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(244, 243, 238, 0.9);
  max-width: 46rem;
}

/* ─── SIGNPOST CARDS (homepage) ──────────────────────────── */

.cards-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4.5rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.cards-eyebrow {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.card {
  background: var(--warm-white);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s ease;
}

.card:hover {
  background: var(--paper);
}

.card-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.card-body {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--ink-mid);
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.15s ease;
}

.card-link:hover { gap: 0.85rem; }

.card-link-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* ─── FOOTER TEASER ──────────────────────────────────────── */

.teaser {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.teaser-label {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.teaser-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.teaser-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--green);
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.teaser-link:hover { background: var(--green-light); }

/* ─── FOOTER ─────────────────────────────────────────────── */

footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(700%) hue-rotate(110deg) brightness(75%);
  opacity: 0.45;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover { color: var(--green); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--ink-light);
}

/* ─── PAGE HEADER (inner pages) ──────────────────────────── */

.page-header {
  padding: 5rem 3rem 3.5rem;
  max-width: 72rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}

.page-header-eyebrow {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

/* ─── CONTENT AREA ───────────────────────────────────────── */

.content-area {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 3rem 5rem;
}

.content-area h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.content-area h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.content-area h2:first-child,
.content-area h3:first-child {
  margin-top: 0;
}

.content-area p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
  max-width: 46rem;
}

.content-area a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-area a:hover {
  color: var(--green-light);
}

.content-area ul,
.content-area ol {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  max-width: 46rem;
}

.content-area li {
  margin-bottom: 0.4rem;
}

.content-area hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 3rem 0;
}

/* Section eyebrow labels inside content */
.content-eyebrow {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}

.content-eyebrow:first-child {
  margin-top: 0;
}

/* ─── PULL QUOTES ────────────────────────────────────────── */

.pull-quote {
  border-left: 3px solid var(--green);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.5rem 0;
  max-width: 40rem;
}

.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
}

/* ─── TEAM CARDS (about page) ────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2rem 0 3rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.25rem;
  filter: grayscale(15%);
}

.team-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.team-title {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  text-align: left;
}

/* ─── SPOKE GRID (strategic therapy hub) ─────────────────── */

.spoke-group {
  margin-bottom: 3rem;
}

.spoke-group-eyebrow {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

.spoke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.spoke-card {
  background: var(--warm-white);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s ease;
  text-decoration: none;
}

.spoke-card:hover {
  background: var(--paper);
}

.spoke-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.spoke-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

.spoke-card-arrow {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.5rem;
}

/* ─── RELATED SPOKES (spoke page sidebar) ────────────────── */

.related-spokes {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

.related-spokes-title {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.related-spokes-list {
  list-style: none;
  padding: 0;
}

.related-spokes-list li {
  margin-bottom: 0.5rem;
}

.related-spokes-list a {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green);
  text-decoration: none;
}

.related-spokes-list a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── PRACTITIONER CARDS ─────────────────────────────────── */

.practitioner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.practitioner-card {
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practitioner-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.practitioner-card p {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 0;
  max-width: none;
}

.practitioner-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ─── BOOK LIST ──────────────────────────────────────────── */

.book-list {
  margin: 2rem 0 3rem;
}

.book-row {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}

.book-row:first-child {
  border-top: 1px solid var(--rule);
}

.book-cover-wrap {
  flex: 0 0 140px;
  width: 140px;
}

.book-cover-img {
  width: 140px;
  height: 210px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.book-cover-placeholder {
  width: 140px;
  height: 210px;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.book-cover-placeholder span {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
}

.book-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 210px;
}

.book-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.book-subtitle {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-mid);
  margin: 0;
}

.book-isbn {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-light);
  margin: 0;
  letter-spacing: 0.03em;
}

.book-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0.5rem 0 auto;
}

.book-amazon-link {
  font-family: var(--condensed);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: 1rem;
}

.book-amazon-link:hover {
  color: var(--green);
  border-color: var(--green);
}

/* ─── BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--green);
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--green-light); }

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

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

/* ─── CONTACT DETAILS ────────────────────────────────────── */

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-block {
  min-width: 180px;
}

.contact-label {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 0.35rem;
}

.contact-value {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 0.3rem;
}

.contact-value a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-value a:hover {
  color: var(--green);
}

.contact-map-link {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  text-decoration: none;
}

.contact-map-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-light);
  margin: 0.15rem 0 0;
}

.contact-map {
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .contact-details { flex-direction: column; gap: 1.5rem; }
}

/* ─── CONTACT FORM ───────────────────────────────────────── */

.contact-form {
  max-width: 36rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

/* ─── COMING SOON (find page) ────────────────────────────── */

.coming-soon {
  text-align: center;
  padding: 4rem 0;
  max-width: 32rem;
  margin: 0 auto;
}

.coming-soon h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.coming-soon p {
  max-width: none;
  text-align: center;
}

/* ─── HISTORICAL FIGURE PLACEHOLDER ──────────────────────── */

.figure-placeholder {
  background: var(--paper);
  border: 1px dashed var(--rule);
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
  max-width: 20rem;
}

.figure-placeholder .figure-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 0.25rem;
}

.figure-placeholder .figure-dates {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.figure-placeholder .figure-note {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--ink-light);
}

/* ─── SPOKE VISUAL (infographics) ────────────────────────── */

.spoke-visual {
  margin: 2.5rem 0;
  text-align: center;
}

.spoke-visual img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

/* ─── VISUAL PLACEHOLDER (spoke pages) ───────────────────── */

.visual-placeholder {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.visual-placeholder p {
  font-size: 0.85rem;
  color: var(--ink-light);
  font-style: italic;
  max-width: none;
  text-align: center;
  margin: 0;
}

/* ─── FOUNDATIONS (book entries) ──────────────────────────── */

.book-entry {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.book-entry:last-child {
  border-bottom: none;
}

.book-entry-cover {
  float: right;
  width: 72px;
  margin: 0.2rem 0 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  display: block;
}

.book-entry-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.book-entry-meta {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

.book-entry-amazon {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.book-entry-amazon a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.book-entry-amazon a:hover {
  opacity: 0.75;
}

/* ─── TWO-COLUMN LAYOUT ─────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left    { animation: fadeUp 0.7s ease both; }
.hero-right   { animation: fadeUp 0.7s 0.15s ease both; }
.cards-section { animation: fadeUp 0.7s 0.25s ease both; }

/* ─── RESPONSIVE: 1024px ─────────────────────────────────── */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 3rem 4rem;
    gap: 2.5rem;
  }

  .hero-right {
    padding-bottom: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spoke-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-row { gap: 1.5rem; }
  .book-cover-wrap, .book-cover-img { width: 120px; }
  .book-cover-img { height: 180px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── RESPONSIVE: 768px ──────────────────────────────────── */

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero-bg-mark {
    display: none;
  }

  .stat-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .stat-divider-v {
    width: 100%;
    height: 1px;
  }

  .cards-section {
    padding: 3rem 1.5rem;
  }

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

  .teaser {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .teaser-content {
    flex-direction: column;
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .page-header {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .content-area {
    padding: 2.5rem 1.5rem 4rem;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

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

  .book-row { flex-direction: column; gap: 1.25rem; }
  .book-cover-wrap { width: 100%; }
  .book-cover-img { width: 120px; height: 180px; }
}
