
:root {
  --bone: #ffffff;
  --bone-deep: #F9FDFF;
  --ink: #1d2420;
  --ink-soft: #221c38;
  --forest: #13649F;
  --forest-deep: #0C2B3E;
  --moss: #4D8EAB;
  --terracotta: #1B93CF;
  --terracotta-deep: #1175A6;
  --sienna: #7DD4F0;
  --rule: rgba(29, 29, 36, 0.18);
  --rule-strong: rgba(29, 36, 32, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'ss02';
  overflow-x: hidden;
  position: relative;
}

.hide {
  display: none !important;
}

sup {
  font-size: 0.75em;
}

/* ===== ACCESSIBILITY FALLBACKS ===== */
/* Mirrors Bootstrap's .visually-hidden implementation — safe if CDN fails */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: 'Fraunces', serif;
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.display em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  color: var(--forest);
}

.eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 0.7em;
  transform: translateY(-2px);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px) saturate(140%);
  border-bottom: 1px solid var(--bone);
  z-index: 100;
  padding: 0;
}

.navbar .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.navbar-brand.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36, 'SOFT' 60;
  color: var(--ink);
  text-decoration: none;
}

.navbar-brand.logo:hover {
  color: var(--ink);
}

.logo .amp {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
  margin: 0 0.1em;
}

.navbar-nav .nav-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--terracotta);
}

.navbar-toggler {
  border-color: var(--rule-strong);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(27, 147, 207, 0.25);
}

.nav-cta {
  background: var(--forest);
  color: var(--bone);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  display: inline-block;
}

.nav-cta:hover { background: var(--terracotta); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-eyebrow {
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}

.hero h1 {
  font-size: clamp(48px, 6.8vw, 96px);
  margin-bottom: 36px;
}

.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-deck {
  font-family: 'Instrument Serif', serif;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 44px;
  font-style: italic;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-brand-primary,
.btn-brand-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-brand-primary {
  background: var(--terracotta);
  color: var(--bone);
}

.btn-brand-primary:hover {
  background: var(--terracotta-deep);
  color: var(--bone);
  transform: translateY(-1px);
}

.btn-brand-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}

.btn-brand-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(29, 36, 32, 0.04);
}

.arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  transition: transform 0.25s;
}

.btn-brand-primary:hover .arrow,
.btn-brand-secondary:hover .arrow {
  transform: translateX(4px);
}

/* Fills any image container that uses position:relative + overflow:hidden */
.fill-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(29, 36, 32, 0.25);
}

.hero-caption {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  line-height: 1.4;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--rule-strong);
  padding-top: 24px;
}

.stat {
  flex: 1;
  padding-right: 32px;
}

.stat:not(:last-child) {
  border-right: 1px solid var(--rule);
}

.stat:not(:first-child) {
  padding-left: 32px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 350;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 144;
}

.stat-num em {
  font-style: italic;
  color: var(--terracotta);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== MISSION / PULL QUOTE ===== */
.mission {
  padding: 140px 0;
  background: var(--forest);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '"';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 600px;
  line-height: 1;
  color: rgba(244, 239, 230, 0.04);
  top: -120px;
  left: -40px;
  font-weight: 300;
}

.mission-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.mission .eyebrow {
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 40px;
}

.mission .eyebrow .dot {
  background: var(--sienna);
}

.mission-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}

.mission-quote em {
  font-style: italic;
  color: #F0DA8A;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.mission-attribution {
  margin-top: 48px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(244, 239, 230, 0.7);
  letter-spacing: 0.04em;
}

/* ===== FOUNDERS ===== */
.founders {
  padding: 140px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.section-head .eyebrow {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.section-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.section-head > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.founder {
  display: flex;
  flex-direction: column;
}

.founder:nth-child(2) {
  margin-top: 60px;
}

.founder-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--bone-deep), #d8cdb6);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.founder-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

.founder-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ===== OFFERINGS ===== */
.offerings {
  padding: 140px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.offerings-list {
  margin-top: 80px;
}

.offering {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 200px;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--rule-strong);
  transition: padding 0.3s;
}

.offering:last-child {
  border-bottom: 1px solid var(--rule-strong);
}

.offering:hover {
  padding-left: 12px;
}

.offering-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--terracotta);
  font-weight: 300;
  line-height: 1;
  padding-top: 8px;
}

.offering-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

.offering-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-top: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: start;
  width: fit-content;
  transition: all 0.2s;
}

.offering-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.offering-link .arrow {
  transition: transform 0.25s;
}

.offering-link:hover .arrow {
  transform: translateX(4px);
}

/* ===== FEATURED COURSE ===== */
.featured {
  padding: 140px 0;
  position: relative;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.featured-image-col {
  position: sticky;
  top: 120px;
}

.featured-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--forest-deep) 0%, var(--forest) 50%, var(--moss) 100%);
  position: relative;
  overflow: hidden;
}

.featured-volume {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.featured-content .eyebrow {
  margin-bottom: 32px;
}

.featured-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.featured-content h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.featured-deck {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.module-list {
  list-style: none;
  margin-bottom: 48px;
  padding: 0;
}

.module {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

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

.module-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 16px;
  padding-top: 4px;
}

.module-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  font-variation-settings: 'opsz' 36, 'SOFT' 60;
}

.module-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.featured-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.meta-item .meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 4px;
}

.meta-item .meta-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 120px 0;
  background: var(--forest-deep);
  color: var(--bone);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.audience h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.audience h2 em {
  font-style: italic;
  color: var(--sienna);
}

.audience-list {
  list-style: none;
  column-count: 2;
  column-gap: 60px;
  padding: 0;
}

.audience-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
  font-size: 16px;
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.audience-list li::before {
  content: '?';
  color: var(--sienna);
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 160px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 32px 0 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.final-cta p {
  font-family: 'Instrument Serif', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 6px;
  background: var(--bone);
}

.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.newsletter input::placeholder {
  color: rgba(29, 36, 32, 0.45);
}

.newsletter button {
  background: var(--terracotta);
  color: var(--bone);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.newsletter button:hover { background: var(--terracotta-deep); }

.newsletter button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.newsletter-fine {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.footer-brand .logo {
  color: var(--bone);
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 20px;
  font-weight: 500;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(244, 239, 230, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sienna); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-bottom em {
  font-family: 'Instrument Serif', serif;
  color: var(--sienna);
}

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

.hero-eyebrow,
.hero h1,
.hero-deck,
.cta-row,
.hero-image-wrap {
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-deck { animation-delay: 0.35s; }
.cta-row { animation-delay: 0.5s; }
.hero-image-wrap { animation-delay: 0.25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; padding: 16px 0; border: none !important; }

  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .founders-grid { grid-template-columns: 1fr; gap: 50px; }
  .founder:nth-child(2) { margin-top: 0; }

  .offering {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .offering:hover { padding-left: 0; }

  .featured-grid { grid-template-columns: 1fr; gap: 50px; }
  .featured-image-col { position: static; }

  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .audience-list { column-count: 1; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .mission, .founders, .offerings, .featured, .audience, .final-cta {
    padding: 80px 0;
  }
}


/* ==========================================================================
   COURSE DETAIL PAGE — course-detail.php
   All rules prefixed with .cd- to avoid conflicts with homepage classes.
   Sections mirror blade order in course-detail.php.
   ========================================================================== */


/* ===== BLADE 1: COURSE HERO ===== */

.cd-hero {
  padding: 48px 0 80px;
  border-bottom: 1px solid var(--rule);
}

/* Breadcrumb: minimal brand override on top of Bootstrap's .breadcrumb */
.cd-breadcrumb {
  margin-bottom: 40px;
}

.cd-breadcrumb .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  background: transparent;
  padding: 0;
  margin: 0;
}

.cd-breadcrumb .breadcrumb-item a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.cd-breadcrumb .breadcrumb-item a:hover {
  color: var(--terracotta);
}

.cd-breadcrumb .breadcrumb-item.active {
  color: var(--ink-soft);
  opacity: 0.6;
}

/* Override Bootstrap's default "/" breadcrumb divider */
.cd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "—";
  color: var(--rule-strong);
}

/* 2-column hero layout: content + enrollment card */
.cd-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.cd-hero-content {
  padding-top: 8px;
}

.cd-hero-title {
  font-size: clamp(44px, 5.5vw, 80px);
  margin-top: 20px;
  margin-bottom: 32px;
  line-height: 0.95;
}

/* Quick spec pill row */
.cd-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.cd-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bone-deep);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 999px;
}

.cd-spec-value {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 36;
}

/* Hero highlight bullets */
.cd-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-hero-highlights li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cd-hero-highlights li:first-child {
  border-top: 1px solid var(--rule);
}

.cd-hero-highlights li::before {
  content: '?';
  color: var(--terracotta);
  font-size: 13px;
  flex-shrink: 0;
  font-family: 'Instrument Serif', serif;
}

/* Enrollment card column — sticky so it follows scroll */
.cd-enrollment-col {
  position: sticky;
  top: 90px; /* clears sticky navbar height */
}

.enrollment-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 48px -12px rgba(29, 36, 32, 0.14);
}

.enrollment-card-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, var(--forest-deep), var(--forest));
  position: relative;
  overflow: hidden;
}

.enrollment-card-body {
  padding: 28px 28px 24px;
}

.enrollment-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: 'opsz' 72;
}

.price-note {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.enrollment-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Make brand buttons fill the card column */
.enrollment-ctas .btn-brand-primary,
.enrollment-ctas .btn-brand-secondary {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

/* What's included list */
.enrollment-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.enrollment-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 5px 0;
  line-height: 1.35;
}

.enrollment-includes li::before {
  content: '?';
  color: var(--terracotta);
  font-size: 12px;
  flex-shrink: 0;
}

.enrollment-cohort {
  font-size: 13px;
  color: var(--ink);
  text-align: center;
  padding: 14px;
  background: var(--bone-deep);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.enrollment-cohort strong {
  font-weight: 600;
}

.enrollment-guarantee {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  margin: 0;
}

.enrollment-guarantee a {
  color: var(--terracotta);
  text-decoration: none;
}

.enrollment-guarantee a:hover {
  text-decoration: underline;
}


/* ===== BLADE 2: COURSE STATS (reuses homepage .hero-stats) ===== */

.cd-stats {
  border-bottom: 1px solid var(--rule);
}

.cd-stats .hero-stats {
  margin-top: 0;
  padding: 36px 0;
  border-top: none;
}


/* ===== BLADE 3: LEARNING OUTCOMES ===== */

.cd-outcomes {
  padding: 120px 0;
  background: var(--forest-deep);
  color: var(--bone);
}

.cd-outcomes-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.cd-outcomes-head .eyebrow {
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 24px;
}

.cd-outcomes-head h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
}

.cd-outcomes-head h2 em {
  color: var(--sienna);
}

.cd-outcomes-head p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.75);
}

/* 2-column checklist grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.15);
}

.outcome-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.85);
}

.outcome-item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(244, 239, 230, 0.12);
}

.outcome-check {
  color: var(--sienna);
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ===== BLADE 4: CURRICULUM ===== */

.cd-curriculum {
  padding: 120px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* Brand override on Bootstrap accordion */
.cd-accordion .accordion-item {
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule-strong);
}

.cd-accordion .accordion-item:last-child {
  border-bottom: 1px solid var(--rule-strong);
}

.cd-accordion-btn {
  background: transparent !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  padding: 28px 0;
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: padding-left 0.3s;
}

.cd-accordion-btn:not(.collapsed) {
  padding-left: 8px;
}

/* Remove Bootstrap's default caret — we use the num color change instead */
.cd-accordion-btn::after {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.2s;
}

.cd-accordion-btn:not(.collapsed)::after {
  opacity: 1;
}

.curriculum-unit-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.curriculum-unit-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
  text-align: left;
}

.curriculum-unit-duration {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.7;
}

.curriculum-unit-body {
  padding: 0 0 32px 72px; /* aligns with title text past the number */
}

.curriculum-unit-desc {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 24px;
}

.curriculum-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-topics li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.curriculum-topics li::before {
  content: '—';
  color: var(--terracotta);
  flex-shrink: 0;
  font-family: 'Instrument Serif', serif;
}

/* Curriculum footer summary bar */
.curriculum-total {
  display: flex;
  gap: 0;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-strong);
}

.curriculum-total span {
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.curriculum-total span:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}

.curriculum-total span strong {
  font-weight: 600;
  color: var(--ink);
}


/* ===== BLADE 6: LEARNING EXPERIENCE ===== */

.cd-experience {
  padding: 120px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* 3-column pillar grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; /* creates visible rule lines between pillars via background */
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 0;
}

.experience-pillar {
  background: var(--bone-deep);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  font-variation-settings: 'opsz' 36, 'SOFT' 60;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule-strong);
  padding-top: 20px;
}

.pillar-features li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.4;
}

.pillar-features li::before {
  content: '?';
  color: var(--terracotta);
  font-size: 9px;
  flex-shrink: 0;
}


/* ===== BLADE 8: TESTIMONIALS ===== */

.cd-testimonials {
  padding: 120px 0;
  background: var(--forest);
  color: var(--bone);
}

.cd-testimonials-eyebrow {
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 32px;
  text-align: center;
}

.cd-testimonials-title {
  font-size: clamp(36px, 4.5vw, 64px);
  text-align: center;
  margin-bottom: 72px;
  line-height: 1;
}

.cd-testimonials-title em {
  color: #F0DA8A;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.12);
}

.testimonial-card {
  background: var(--forest);
  padding: 40px 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(244, 239, 230, 0.9);
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  flex: 1;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}

.testimonial-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--bone);
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 239, 230, 0.5);
}


/* ===== BLADE 9: FAQ ===== */

.cd-faq {
  padding: 120px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cd-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 100px;
  align-items: start;
}

.cd-faq-head {
  position: sticky;
  top: 90px;
}

.cd-faq-head .eyebrow {
  margin-bottom: 24px;
}

.cd-faq-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.cd-faq-head h2 em {
  color: var(--terracotta);
}

/* FAQ accordion reuses .cd-accordion with smaller padding */
.faq-accordion .cd-accordion-btn {
  font-size: 16px;
  padding: 20px 0;
}

.faq-accordion .cd-accordion-btn:not(.collapsed) {
  padding-left: 0;
  color: var(--terracotta) !important;
}

.faq-answer {
  padding: 0 0 24px 0;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.faq-answer a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
}

.faq-answer a:hover {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}


/* ==========================================================================
   COURSE DETAIL — RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

  /* Hero: stack to single column, enrollment card goes below content */
  .cd-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cd-enrollment-col {
    position: static; /* un-stick on mobile */
  }

  /* Outcomes: single column */
  .cd-outcomes-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .outcome-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  /* Curriculum body: remove left indent */
  .curriculum-unit-body {
    padding-left: 0;
  }

  .curriculum-total {
    flex-wrap: wrap;
    gap: 12px;
  }

  .curriculum-total span {
    flex: 1 1 40%;
    border: none !important;
    padding-left: 0 !important;
  }

  /* Experience pillars: single column */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .experience-pillar {
    padding: 36px 28px;
  }

  /* Testimonials: single column */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* FAQ: stack head above accordion */
  .cd-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cd-faq-head {
    position: static;
  }

  /* Section padding reductions */
  .cd-hero { padding: 32px 0 60px; }

  .cd-outcomes,
  .cd-curriculum,
  .cd-experience,
  .cd-testimonials,
  .cd-faq {
    padding: 80px 0;
  }
}


/* ==========================================================================
   ABOUT PAGE — about.php
   All rules prefixed with .about- to avoid conflicts with other page classes.
   Sections mirror blade order in about.php.
   ========================================================================== */


/* ===== BLADE 1: EDITORIAL INTRO ===== */

.about-intro {
  padding: 80px 0 0;
}

.about-intro-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.about-intro-title {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

/* Full-bleed cinematic cover — tall 16:7 aspect ratio */
.about-intro-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 4px;
}

/* Two-column intro body text below the cover image */
.about-intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  padding: 56px 0 80px;
  border-bottom: 1px solid var(--rule);
}

.about-intro-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}


/* ===== BLADE 2: FOUNDING STORY + VERTICAL TIMELINE ===== */

.about-origin {
  padding: 100px 0;
  background: var(--bone);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.origin-narrative .eyebrow {
  margin-bottom: 16px;
}

.origin-narrative h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 40px;
}

.origin-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

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

/* Vertical timeline */
.origin-timeline {
  position: relative;
  padding-left: 28px;
}

/* Continuous vertical rule connecting nodes */
.origin-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rule-strong);
}

.timeline-node {
  position: relative;
  padding: 0 0 48px 24px;
}

.timeline-node:last-child {
  padding-bottom: 0;
}

/* Circle marker on the timeline rule */
.timeline-node-marker {
  position: absolute;
  left: -22px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--bone);
  outline: 1px solid var(--terracotta);
}

.timeline-node-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.timeline-node-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.timeline-node-content {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-soft);
  opacity: 0.85;
}


/* ===== BLADE 3: STATED VALUES / GUIDING PRINCIPLES ===== */

.about-values {
  padding: 100px 0;
}

/* Shared single-column section head for about page blades */
.about-section-head {
  max-width: 560px;
  margin-bottom: 72px;
}

.about-section-head .eyebrow {
  margin-bottom: 16px;
}

.about-section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* Three-column horizontal grid with ruled separators between items */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}

.value-item {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--rule-strong);
}

.value-item:first-child {
  padding-left: 0;
}

.value-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}

.value-item:not(:first-child):not(:last-child) {
  padding-left: 40px;
}

.value-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.value-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.value-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}


/* ===== BLADE 4: ALTERNATING FOUNDER PROFILES ===== */

.about-founders {
  padding: 100px 0;
  background: var(--bone);
}

/* Each profile row */
.founder-profile {
  padding: 60px 0;
  border-top: 1px solid var(--rule);
}

.founder-profile:last-of-type {
  border-bottom: 1px solid var(--rule);
}

.founder-profile-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}

/* Reverse layout: image goes right, content goes left */
.founder-profile--reverse .founder-profile-inner {
  grid-template-columns: 3fr 2fr;
}

.founder-profile--reverse .founder-profile-portrait {
  order: 2;
}

.founder-profile--reverse .founder-profile-content {
  order: 1;
}

/* Portrait container */
.founder-profile-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
}

/* Content side */
.founder-profile-content .eyebrow {
  margin-bottom: 12px;
}

.founder-profile-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}

.founder-profile-credentials {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.founder-profile-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.founder-profile-quote {
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 0;
}

.founder-profile-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}


/* ===== BLADE 5: TYPOGRAPHIC CONNECT / CONTACT ===== */

.about-connect {
  background: var(--forest-deep);
  padding: 120px 0;
}

.connect-inner {
  max-width: 800px;
}

.connect-inner .connect-eyebrow {
  color: var(--sienna);
  margin-bottom: 24px;
}

.connect-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 48px;
}

.connect-title em {
  color: var(--sienna);
}

/* Large typographic email link */
.connect-email {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(125, 212, 240, 0.4);
  text-underline-offset: 6px;
  transition: color 0.2s, text-decoration-color 0.2s;
  margin-bottom: 72px;
}

.connect-email:hover {
  color: var(--sienna);
  text-decoration-color: var(--sienna);
}

/* Three-column social channel grid */
.connect-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(125, 212, 240, 0.25);
}

.connect-channel {
  padding: 32px 0;
  border-right: 1px solid rgba(125, 212, 240, 0.15);
  padding-right: 32px;
}

.connect-channel:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.connect-channel:not(:first-child):not(:last-child) {
  padding-left: 32px;
}

.connect-channel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.7;
  margin-bottom: 8px;
}

.connect-social {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.2s;
}

.connect-social:hover {
  color: var(--sienna);
}


/* ==========================================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

  /* Intro: single column body text */
  .about-intro-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 60px;
  }

  .about-intro-cover {
    aspect-ratio: 16 / 9;
  }

  /* Origin: stack narrative above timeline */
  .about-origin-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Values: single column, remove lateral padding/borders */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 36px 0 !important;
  }

  .value-item:last-child {
    border-bottom: none;
  }

  /* Founder profiles: single column, portrait above content */
  .founder-profile-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-profile--reverse .founder-profile-inner {
    grid-template-columns: 1fr;
  }

  .founder-profile--reverse .founder-profile-portrait {
    order: 0;
  }

  .founder-profile--reverse .founder-profile-content {
    order: 0;
  }

  .founder-profile-portrait {
    aspect-ratio: 3 / 2;
  }

  /* Connect: single column channels */
  .connect-channels {
    grid-template-columns: 1fr;
  }

  .connect-channel {
    border-right: none;
    border-bottom: 1px solid rgba(125, 212, 240, 0.15);
    padding: 24px 0 !important;
  }

  .connect-channel:last-child {
    border-bottom: none;
  }

  /* Section padding reductions */
  .about-intro,
  .about-origin,
  .about-values,
  .about-founders,
  .about-connect {
    padding: 72px 0;
  }
}


/* ==========================================================================
   TOOLKIT PAGE — toolkit.php
   All rules prefixed with .tk- to avoid conflicts with other page classes.
   Sections mirror blade order in toolkit.php.
   ========================================================================== */


/* ===== BLADE 1: PRODUCT HERO ===== */

.tk-hero {
  padding: 48px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.tk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}

/* Deck wrap — centers the card stack inside its column */
.tk-deck-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 60px 20px; /* bottom padding accommodates card offset overflow */
}

/* Deck container — absolute children stack inside this */
.tk-deck {
  position: relative;
  width: 300px;
  height: 290px;
}

/* Base card */
.tk-deck-card {
  position: absolute;
  width: 280px;
  height: 200px;
  border-radius: 8px;
  padding: 24px 28px 0;
  background: var(--forest-deep);
  box-shadow: 0 8px 32px -8px rgba(12, 43, 62, 0.4);
  overflow: hidden;
}

/* Back-to-front stacking via DOM order (last child = topmost) */
.tk-deck-card:nth-child(1) { top: 40px; left: 28px; transform: rotate(-3.5deg); opacity: 0.28; }
.tk-deck-card:nth-child(2) { top: 28px; left: 20px; transform: rotate(-2deg);   opacity: 0.45; }
.tk-deck-card:nth-child(3) { top: 16px; left: 12px; transform: rotate(-1.2deg); opacity: 0.62; }
.tk-deck-card:nth-child(4) { top: 6px;  left: 5px;  transform: rotate(-0.4deg); opacity: 0.8;  }
.tk-deck-card:nth-child(5) { top: 0;    left: 0;    transform: rotate(0deg);    opacity: 1;    }

/* Front card gets a terracotta accent stripe */
.tk-deck-card--front {
  border-top: 3px solid var(--terracotta);
}

/* Small eyebrow label — front card only */
.tk-deck-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

/* Category name on every card */
.tk-deck-cat {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(244, 239, 230, 0.88);
  line-height: 1.25;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

/* Ruled-lines decoration — CSS-only document feel */
.tk-deck-lines {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(244, 239, 230, 0.06) 0,
    rgba(244, 239, 230, 0.06) 1px,
    transparent 1px,
    transparent 14px
  );
}

/* Hero content column */
.tk-hero-content .eyebrow {
  margin-bottom: 20px;
}

.tk-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: 24px;
}

.tk-hero-deck {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}

/* Tag pills — visible summary of toolkit components */
.tk-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.tk-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  white-space: nowrap;
}


/* ===== BLADE 2: CONTENTS INVENTORY ===== */

.tk-contents {
  padding: 100px 0;
  background: var(--forest-deep);
  color: var(--bone);
}

/* 2-col head: heading left, supporting paragraph right */
.tk-contents-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  padding-bottom: 48px;
}

.tk-contents-head .eyebrow {
  color: var(--sienna);
  margin-bottom: 16px;
}

.tk-contents-head .display {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bone);
}

.tk-contents-head .display em {
  color: var(--sienna);
}

.tk-contents-head > p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.65);
  margin: 0;
  align-self: end;
  padding-bottom: 4px;
}

/* Each content row: number | name+count | description+samples */
.tk-content-row {
  display: grid;
  grid-template-columns: 72px 180px 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  transition: background 0.25s;
}

.tk-content-row:first-of-type {
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.tk-content-row:hover {
  background: rgba(244, 239, 230, 0.025);
}

/* Decorative row number */
.tk-content-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(125, 212, 240, 0.25);
  line-height: 1;
  padding-top: 2px;
  font-variation-settings: 'opsz' 72, 'SOFT' 20;
}

.tk-content-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 10px;
  line-height: 1.25;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

.tk-content-count {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.75;
}

.tk-content-detail p {
  font-size: 0.94rem;
  line-height: 1.78;
  color: rgba(244, 239, 230, 0.68);
  margin-bottom: 20px;
}

/* Sample item pills */
.tk-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tk-sample {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(125, 212, 240, 0.22);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 230, 0.55);
  white-space: nowrap;
}


/* ===== BLADE 3: WORKFLOW USE CASES ===== */

.tk-workflow {
  padding: 100px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.tk-workflow-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.tk-workflow-head .eyebrow {
  margin-bottom: 16px;
}

.tk-workflow-head .display {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.tk-workflow-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* 3-col card grid — hairline gap via background on the container */
.tk-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule-strong);
}

/* Scenario card */
.tk-workflow-card {
  background: var(--bone);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tk-workflow-scenario {
  margin-bottom: 28px;
}

/* Decorative dash before scenario */
.tk-workflow-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-bottom: 14px;
  line-height: 1;
}

/* Clinical scenario — italic serif, reads like a patient voice */
.tk-workflow-moment {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-variation-settings: 'opsz' 36, 'SOFT' 70;
}

/* Toolkit resource block — inset, left-accented */
.tk-workflow-resource {
  flex-shrink: 0;
  padding: 16px 20px;
  background: var(--bone-deep);
  border-left: 3px solid var(--terracotta);
  margin-bottom: 24px;
}

.tk-resource-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.tk-resource-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

/* Outcome sentence — bottom of card, ruled off */
.tk-workflow-outcome {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: auto; /* pushes outcome to card bottom regardless of content height */
}


/* ===== BLADE 4: ENROLLMENT CTA ===== */

.tk-enroll {
  padding: 120px 0;
  background: var(--forest-deep);
  text-align: center;
}

.tk-enroll-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Pill badge */
.tk-enroll-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(125, 212, 240, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 36px;
}

.tk-enroll-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--bone);
  margin-bottom: 56px;
  line-height: 1.05;
}

.tk-enroll-title em {
  color: var(--sienna);
}

/* Module info strip — horizontal bordered box */
.tk-enroll-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 52px;
  text-align: left;
}

.tk-strip-item {
  flex: 1;
  padding: 20px 24px;
}

.tk-strip-divider {
  width: 1px;
  background: rgba(244, 239, 230, 0.1);
  flex-shrink: 0;
}

.tk-strip-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.65;
  margin-bottom: 7px;
}

.tk-strip-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--bone);
  line-height: 1.35;
  font-variation-settings: 'opsz' 36, 'SOFT' 40;
}

/* CTA row centered for the enroll section */
.tk-cta-row {
  justify-content: center;
}

/* Full-width button utility for enrollment cards */
.tk-btn-full {
  width: 100%;
  justify-content: center;
}

/* Secondary button variant for dark backgrounds */
.tk-btn-outline-light {
  color: rgba(244, 239, 230, 0.75);
  border-color: rgba(244, 239, 230, 0.22);
}

.tk-btn-outline-light:hover {
  color: var(--bone);
  border-color: rgba(244, 239, 230, 0.55);
  background: rgba(244, 239, 230, 0.06);
}


/* ===== HERO STRIP — "saves you from" ===== */

/* Overflow strip of strikethrough items below the hero grid */
.tk-hero-strip {
  display: flex;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  margin-top: 64px;
  /* Fade out at edges — pure CSS, no JS */
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tk-hero-strip span {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  opacity: 0.45;
  flex-shrink: 0;
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 1px;
}

.tk-hero-strip .tk-strip-sep {
  text-decoration: none;
  color: var(--terracotta);
  opacity: 0.4;
}


/* ===== BLADE 1B: PROBLEM / TENSION STATEMENT ===== */

.tk-problem {
  padding: 120px 0;
  background: var(--ink);
  text-align: center;
}

.tk-problem-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Massive centered display statement — the emotional hook */
.tk-problem-statement {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  color: var(--bone);
  line-height: 1.08;
  margin-bottom: 40px;
}

/* The problem statement uses the .display class from base typography,
   but we override em color here since the background is dark */
.tk-problem-statement em {
  color: var(--sienna);
}

.tk-problem-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.5);
  max-width: 540px;
  margin: 0 auto;
}


/* ===== BLADE 2B: VALUE / IMPACT METRICS ===== */

.tk-value {
  padding: 80px 0;
  background: var(--forest);
}

/* 4-col horizontal grid of impact numbers */
.tk-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.tk-value-item {
  padding: 0 40px;
  border-right: 1px solid rgba(244, 239, 230, 0.15);
  text-align: center;
}

.tk-value-item:first-child {
  padding-left: 0;
  text-align: left;
}

.tk-value-item:last-child {
  border-right: none;
  padding-right: 0;
  text-align: right;
}

/* Big number — the primary visual element */
.tk-val-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 350;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.02em;
}

.tk-val-label {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.65);
  max-width: 180px;
  margin: 0 auto;
}

.tk-value-item:first-child .tk-val-label {
  margin-left: 0;
}

.tk-value-item:last-child .tk-val-label {
  margin-right: 0;
}


/* ===== BLADE 3B: PRE-CLOSE CHECKLIST + STICKY CARD ===== */

.tk-checklist {
  padding: 100px 0;
  background: var(--bone);
  border-top: 1px solid var(--rule);
}

/* 2-col: checklist content left (wider), sticky card right */
.tk-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.tk-checklist-content .eyebrow {
  margin-bottom: 16px;
}

.tk-checklist-content .display {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
}

.tk-checklist-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 520px;
}

/* Checklist — each item: checkmark | label (row 1) + description (row 2) */
.tk-checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tk-checklist-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.tk-checklist-list li:first-child {
  border-top: 1px solid var(--rule);
}

/* Checkmark — pinned to row 1, col 1 */
.tk-checklist-list li::before {
  content: '?';
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  grid-column: 1;
  grid-row: 1;
  padding-top: 3px;
  line-height: 1.5;
}

/* Label — row 1, col 2 */
.tk-checklist-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  grid-column: 2;
  grid-row: 1;
}

/* Description — row 2, col 2; sits under label, indented by col 1 width */
.tk-checklist-list li span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.75;
  grid-column: 2;
  grid-row: 2;
}

/* Sticky enrollment card */
.tk-checklist-aside {
  position: sticky;
  top: 90px;
}

.tk-enroll-card {
  background: var(--forest-deep);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 20px 48px -16px rgba(12, 43, 62, 0.35);
}

.tk-enroll-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 10px;
}

.tk-enroll-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bone);
  line-height: 1.3;
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

/* Detail rows inside the card */
.tk-enroll-card-details {
  margin-bottom: 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  padding: 16px 0;
}

.tk-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
}

.tk-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
}

.tk-detail-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: var(--bone);
  font-variation-settings: 'opsz' 36, 'SOFT' 40;
}

/* "Included" toolkit row gets a sienna highlight — targets the last detail row */
.tk-detail-row:last-child .tk-detail-val {
  color: var(--sienna);
}

.tk-card-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.tk-card-link:hover {
  color: rgba(244, 239, 230, 0.8);
}


/* ==========================================================================
   TOOLKIT PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

  /* Hero: stack single column; hide deck (tags provide same content) */
  .tk-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tk-deck-wrap {
    display: none;
  }

  /* Contents head: single column */
  .tk-contents-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Content rows: collapse to 2-col then full width for detail */
  .tk-content-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 20px;
  }

  .tk-content-detail {
    grid-column: 1 / -1;
    padding-top: 4px;
  }

  /* Workflow: single column */
  .tk-workflow-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Enroll strip: stack items vertically */
  .tk-enroll-strip {
    flex-direction: column;
  }

  .tk-strip-divider {
    width: 100%;
    height: 1px;
  }

  .tk-strip-item {
    text-align: center;
  }

  /* Hero strip: hide on mobile — too wide */
  .tk-hero-strip {
    display: none;
  }

  /* Value metrics: 2×2 grid on mobile */
  .tk-value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .tk-value-item {
    border-right: none;
    border-bottom: 1px solid rgba(244, 239, 230, 0.12);
    padding: 0 24px 40px;
    text-align: center;
  }

  .tk-value-item:first-child,
  .tk-value-item:last-child {
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .tk-value-item:nth-child(3),
  .tk-value-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 40px;
  }

  .tk-val-label {
    margin: 0 auto;
  }

  /* Checklist: stack card below content */
  .tk-checklist-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tk-checklist-aside {
    position: static;
  }

  /* Section padding reductions */
  .tk-hero { padding: 32px 0 64px; }

  .tk-problem { padding: 80px 0; }

  .tk-contents,
  .tk-workflow,
  .tk-checklist,
  .tk-enroll {
    padding: 72px 0;
  }

  .tk-value {
    padding: 64px 0;
  }
}


/* ============================================================
   LISTS PAGE  (.ls-  prefix)
   ============================================================ */

/* ---- Page Header ---- */

.ls-header {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--rule);
}

.ls-header .eyebrow {
  margin-bottom: 12px;
}

.ls-header-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 24px;
  max-width: 640px;
  line-height: 0.95;
}

.ls-header-deck {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 560px;
  margin: 0;
}

/* ---- Filter Bar ---- */

.ls-filter {
  position: sticky;
  top: 65px;
  z-index: 90;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}

.ls-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.ls-pill {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--rule-strong);
  background: transparent;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
  letter-spacing: 0.01em;
}

.ls-pill:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.ls-pill.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--bone);
}

/* ---- Grid Section ---- */

.ls-grid-section {
  padding: 2px 0 0;
}

.ls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--rule-strong);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 72px;
}

/* Module card wraps span all 3 columns */
.ls-card-wrap[data-category="module"] {
  grid-column: 1 / -1;
}

/* Base card shell */
.ls-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---- Module Cards ---- */

.ls-card--module {
  flex-direction: row;
  min-height: 440px;
  background: var(--bone);
}

.ls-module-image {
  width: 400px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.ls-module-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  background: var(--terracotta);
  color: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

.ls-module-badge--soon {
  background: var(--ink);
}

.ls-module-content {
  flex: 1;
  padding: 52px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bone);
}

.ls-module-content .eyebrow {
  margin-bottom: 10px;
}

.ls-module-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
  max-width: 480px;
}

.ls-module-deck {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.8;
  max-width: 500px;
  margin-bottom: 20px;
}

.ls-module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ls-module-tags li {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  color: var(--ink-soft);
}

.ls-module-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-bottom: 28px;
}

.ls-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ls-meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
}

.ls-meta-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ls-meta-val--accent {
  color: var(--terracotta);
}

/* Coming-soon variant */
.ls-card--soon .ls-module-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 43, 62, 0.55);
  pointer-events: none;
}

.ls-card--soon .ls-module-content {
  opacity: 0.65;
}

/* ---- Article Cards ---- */

.ls-card--article {
  background: #fff;
  padding: 36px 32px 28px;
}

.ls-article-top {
  flex: 1;
  margin-bottom: 20px;
}

.ls-article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ls-article-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.ls-article-read-time {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.55;
}

.ls-article-title {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 14px;
}

.ls-article-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 0;
}

.ls-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: auto;
  background: #fff;
}

.ls-article-author {
font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--forest);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
}

.ls-article-date {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.55;
}

/* ---- Resource Card ---- */

.ls-card--resource {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 40px 36px;
}

#ls-resource-01 {
  background: var(--forest) !important;
}

#ls-resource-02 {
  background: var(--terracotta-deep) !important;
}

#ls-resource-03 {
  background: var(--forest-deep) !important;
}

.ls-resource-eyebrow {
  color: var(--sienna);
  opacity: 0.85;
  margin-bottom: 10px;
}

.ls-resource-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1;
  color: var(--bone);
  margin: 0 0 10px;
}

.ls-resource-desc {
  font-size: 0.85rem;
  color: var(--bone);
  opacity: 0.55;
  margin-bottom: 24px;
  line-height: 1.5;
}

.ls-resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ls-resource-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  text-decoration: none;
  color: var(--bone);
  transition: color 0.15s;
}

.ls-resource-links li:last-child .ls-resource-link {
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.ls-resource-link:hover {
  color: var(--sienna);
}

.ls-resource-link-title {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.88rem;
  font-weight: 600;
}

.ls-resource-link-desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.77rem;
  opacity: 0.55;
  line-height: 1.4;
}

.ls-resource-link-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 0.9rem;
  opacity: 0.4;
  transition: transform 0.15s, opacity 0.15s;
}

.ls-resource-link:hover .ls-resource-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ---- Press Cards ---- */

.ls-card--press {
  background: var(--ink);
  color: var(--bone);
  padding: 40px 36px;
}

.ls-press-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ls-press-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.4;
  margin-bottom: 6px;
}

.ls-press-org {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.ls-press-headline {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.05;
  color: var(--bone);
  margin: 0 0 auto;
  padding-bottom: 28px;
}

.ls-press-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.28);
  color: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.ls-press-btn:hover {
  background: rgba(244, 239, 230, 0.1);
  border-color: rgba(244, 239, 230, 0.55);
}

.ls-press-btn .arrow {
  transition: transform 0.15s;
}

.ls-press-btn:hover .arrow {
  transform: translateX(3px);
}

/* ---- Press Release Modals ---- */

.ls-modal-content {
  background: var(--bone);
  border: none;
  border-radius: 0;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.3);
}

.ls-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 44px 52px 28px;
  border-bottom: 1px solid var(--rule);
}

.ls-modal-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-bottom: 10px;
}

.ls-modal-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--ink);
  margin: 0;
}

.ls-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}

.ls-modal-close:hover {
  background: var(--rule);
}

.ls-modal-body {
  padding: 36px 52px 52px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.ls-modal-lead {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.ls-modal-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 28px 0;
}

.ls-modal-contact {
  font-size: 0.875rem;
  color: var(--ink-soft);
  opacity: 0.65;
  line-height: 1.8;
  margin: 0;
}

/* ---- Lists Page — Responsive ---- */

@media (max-width: 1199px) {
  .ls-module-content {
    padding: 40px 44px 40px;
  }
}

@media (max-width: 991px) {
  .ls-filter {
    top: 56px;
  }

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

  .ls-card--module {
    flex-direction: column;
    min-height: 0;
  }

  .ls-module-image {
    width: 100%;
    height: 300px;
  }

  .ls-module-content {
    padding: 36px 36px 40px;
  }
}

@media (max-width: 767px) {
  .ls-header {
    padding: 56px 0 40px;
  }

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

  .ls-card-wrap[data-category="module"] {
    grid-column: 1;
  }

  .ls-module-meta {
    gap: 16px;
  }

  .ls-modal-header {
    padding: 28px 24px 20px;
  }

  .ls-modal-body {
    padding: 24px 24px 36px;
  }
}


/* ============================================================
   CONTACT PAGE  (.ct-  prefix)
   ============================================================ */

/* ---- Main Contact Section ---- */

.ct-contact {
  padding: 80px 0 96px;
}

.ct-contact-head {
  margin-bottom: 28px;
}

.ct-contact-head .eyebrow {
  margin-bottom: 12px;
}

.ct-contact-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 0;
  max-width: 700px;
  line-height: 0.95;
}

/* Expectation bar — reuses .dot from global eyebrow rules */
.ct-bar {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.6;
  padding: 16px 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ct-bar .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 18px;
  transform: translateY(-1px);
  flex-shrink: 0;
}

/* Two-column grid */
.ct-contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

/* ---- Contact Info Column ---- */

.ct-info {
  position: sticky;
  top: 96px;
}

.ct-channel {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

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

.ct-channel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-bottom: 6px;
}

.ct-channel-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
}

a.ct-channel-value:hover {
  color: var(--forest);
  text-decoration: underline;
}

.ct-channel-value--plain {
  cursor: default;
}

.ct-channel-address {
  font-style: normal;
  line-height: 1.65;
}

.ct-channel-sub {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-top: 4px;
}

.ct-info-note {
  margin-top: 28px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.6;
  font-style: italic;
}

/* ---- Form Card ---- */

.ct-form-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 48px 52px;
}

.ct-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.ct-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.ct-required {
  color: var(--terracotta);
  margin-left: 2px;
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bone);
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.35;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--forest);
  background: #fff;
}

.ct-textarea {
  resize: vertical;
  min-height: 148px;
  line-height: 1.6;
}

/* Custom select arrow */
.ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%231d2420' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* Consent checkbox row */
.ct-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.ct-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  accent-color: var(--forest);
  cursor: pointer;
}

.ct-check-label {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.7;
  cursor: pointer;
}

/* Submit button */
.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  background: var(--forest);
  border: none;
  color: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}

.ct-submit:hover {
  background: var(--forest-deep);
}

.ct-submit .arrow {
  transition: transform 0.2s;
}

.ct-submit:hover .arrow {
  transform: translateX(4px);
}

/* Post-submit confirmation */
.ct-confirm {
  margin-top: 20px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--forest) 10%, transparent);
  border-left: 3px solid var(--forest);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

/* ---- Self-Service Routing Section ---- */

.ct-routes {
  padding: 88px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ct-routes-head {
  margin-bottom: 52px;
}

.ct-routes-head .display {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 8px 0 12px;
}

.ct-routes-deck {
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.65;
  margin: 0;
}

.ct-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--rule);
}

.ct-route {
  padding: 36px 40px;
  border-right: 1px solid var(--rule);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: border-top-color 0.2s;
}

.ct-route:hover {
  border-top-color: var(--terracotta);
}

.ct-route-scenario {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-bottom: 10px;
}

.ct-route-title {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.05;
}

.ct-route-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.72;
  flex: 1;
  margin-bottom: 24px;
}

.ct-route-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.ct-route-link:hover {
  color: var(--forest-deep);
  text-decoration: underline;
}

.ct-route-link .arrow {
  transition: transform 0.15s;
}

.ct-route-link:hover .arrow {
  transform: translateX(3px);
}

/* ---- Availability Strip ---- */

.ct-availability {
  background: var(--forest-deep);
  padding: 60px 0;
}

.ct-availability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ct-avail-item {
  padding: 0 44px;
  border-left: 1px solid rgba(244, 239, 230, 0.14);
}

.ct-avail-item:first-child {
  padding-left: 0;
  border-left: none;
}

.ct-avail-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.75;
  margin-bottom: 9px;
}

.ct-avail-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 5px;
}

.ct-avail-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--bone);
  opacity: 0.4;
}

/* ---- Contact Page — Responsive ---- */

@media (max-width: 1100px) {
  .ct-contact-grid {
    grid-template-columns: 300px 1fr;
    gap: 56px;
  }

  .ct-form-card {
    padding: 40px 40px;
  }
}

@media (max-width: 991px) {
  .ct-contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ct-info {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }

  /* Info note spans both columns */
  .ct-info-note {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .ct-availability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .ct-avail-item:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }

  .ct-avail-item:nth-child(even) {
    border-left: 1px solid rgba(244, 239, 230, 0.14);
  }
}

@media (max-width: 767px) {
  .ct-contact {
    padding: 56px 0 72px;
  }

  .ct-bar {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
  }

  .ct-bar .dot {
    display: none;
  }

  .ct-info {
    grid-template-columns: 1fr;
  }

  .ct-fields-row {
    grid-template-columns: 1fr;
  }

  .ct-form-card {
    padding: 32px 24px;
  }

  .ct-routes {
    padding: 64px 0;
  }

  .ct-routes-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .ct-route {
    border-right: none;
    border-left: 3px solid transparent;
    border-top: 1px solid var(--rule);
    padding: 28px 0 28px 24px;
    transition: border-left-color 0.2s;
  }

  .ct-route:hover {
    border-top-color: var(--rule);
    border-left-color: var(--terracotta);
  }

  .ct-availability-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ct-avail-item,
  .ct-avail-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(244, 239, 230, 0.12);
    padding-top: 28px;
  }

  .ct-avail-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}


/* ============================================================
   HOMEPAGE ALT  (.ha-  prefix)
   ============================================================ */

/* ---- Hero: Split Full-Viewport ---- */

.ha-hero {
  display: flex;
  flex-direction: column;
}

.ha-hero-grid {
  display: grid;
  grid-template-columns: 56fr 44fr;
  min-height: 88vh;
}

/* Left: dark navy panel */
.ha-hero-left {
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  padding: 80px 72px 80px 40px;
}

/* Constrain content within max-width on large screens */
.ha-hero-content {
  max-width: 580px;
  margin-left: auto;
}

/* Eyebrow override for dark backgrounds */
.ha-eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.8;
  margin-bottom: 20px;
}

.ha-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--sienna);
  border-radius: 50%;
  margin: 0 0.6em;
  transform: translateY(-2px);
  opacity: 0.6;
}

.ha-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--bone);
  line-height: 0.96;
  margin: 0 0 28px;
}

/* Override global .display em (forest color) for dark hero */
.ha-hero-title em {
  color: var(--sienna);
}

.ha-hero-deck {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--bone);
  opacity: 0.72;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Dark-background button variants */
.ha-btn-light,
.ha-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.ha-btn-light {
  background: var(--bone);
  color: var(--forest-deep);
  border-color: var(--bone);
}

.ha-btn-light:hover {
  background: #fff;
  color: var(--forest-deep);
  transform: translateY(-1px);
}

.ha-btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 239, 230, 0.4);
}

.ha-btn-ghost:hover {
  border-color: rgba(244, 239, 230, 0.8);
  background: rgba(244, 239, 230, 0.08);
  color: var(--bone);
}

.ha-btn-light .arrow,
.ha-btn-ghost .arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  transition: transform 0.25s;
}

.ha-btn-light:hover .arrow,
.ha-btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.ha-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right: image fills column */
.ha-hero-right {
  position: relative;
  overflow: hidden;
}

/* Stats strip below hero grid */
.ha-stats-strip {
  background: var(--bone);
  border-top: 1px solid var(--rule);
}

.ha-stats-row {
  display: flex;
  align-items: stretch;
}

.ha-stat {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid var(--rule);
  text-align: center;
}

.ha-stat:last-child {
  border-right: none;
}

.ha-stat-num {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1;
}

.ha-stat-num em {
  color: var(--terracotta);
}

.ha-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
}

/* ---- Trust / Credentials Strip ---- */

.ha-trust {
  background: var(--ink);
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding: 14px 0;
}

.ha-trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ha-trust-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.45;
  white-space: nowrap;
}

.ha-creds {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ha-cred {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 4px 11px;
  border: 1px solid rgba(244, 239, 230, 0.25);
  color: var(--bone);
  opacity: 0.75;
}

.ha-trust-note {
  font-size: 0.75rem;
  color: var(--bone);
  opacity: 0.35;
  margin-left: auto;
  font-style: italic;
}

/* ---- Premise: 2-col Editorial ---- */

.ha-premise {
  padding: 96px 0;
  background: var(--bone-deep);
}

.ha-premise-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 96px;
  align-items: start;
}

.ha-premise-eyebrow {
  margin-bottom: 24px;
}

.ha-premise-quote {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.05;
  color: var(--ink);
  border: none;
  padding: 0;
  margin: 0;
}

.ha-premise-quote em {
  color: var(--forest);
}

.ha-premise-right {
  padding-top: 8px;
}

.ha-diff {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.ha-diff:last-child {
  border-bottom: 1px solid var(--rule);
}

.ha-diff-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}

.ha-diff-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.72;
  margin: 0;
}

/* ---- Process: Numbered Steps ---- */

.ha-process {
  padding: 88px 0;
  background: var(--bone);
}

.ha-process-head {
  margin-bottom: 64px;
}

.ha-process-head .eyebrow {
  margin-bottom: 10px;
}

.ha-process-head .display {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0;
  max-width: 520px;
}

.ha-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.ha-step {
  flex: 1;
  padding: 40px 40px 40px 0;
}

.ha-step:last-child {
  padding-right: 0;
}

.ha-step-num {
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--terracotta);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.ha-step-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ha-step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 0;
}

/* Connector line between steps */
.ha-step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: var(--rule-strong);
  margin-top: 56px; /* align with center of step number */
  opacity: 0.5;
}

/* ---- Offerings: 2×2 Card Grid ---- */

.ha-offerings {
  padding: 88px 0;
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ha-offerings-head {
  margin-bottom: 52px;
}

.ha-offerings-head .eyebrow {
  margin-bottom: 10px;
}

.ha-offerings-head .display {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0;
}

.ha-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule-strong);
}

.ha-offer {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
}

.ha-offer--light {
  background: var(--bone);
}

.ha-offer--dark {
  background: var(--forest-deep);
}

.ha-offer-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--terracotta);
  margin-bottom: 14px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.ha-offer-num--light {
  color: var(--sienna);
  opacity: 0.7;
}

.ha-offer-title {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.02;
}

.ha-offer-title--light {
  color: var(--bone);
}

.ha-offer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.72;
  flex: 1;
  margin-bottom: 24px;
}

.ha-offer-desc--light {
  color: var(--bone);
  opacity: 0.6;
}

.ha-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
  align-self: flex-start;
}

.ha-offer-link:hover {
  text-decoration: underline;
}

.ha-offer-link .arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  transition: transform 0.2s;
}

.ha-offer-link:hover .arrow {
  transform: translateX(3px);
}

.ha-offer-link--light {
  color: var(--sienna);
}

.ha-offer-link--light:hover {
  color: var(--bone);
}

/* ---- Featured Course: Lean Editorial Band ---- */

.ha-course {
  background: var(--bone);
}

.ha-course-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
}

.ha-course-image {
  position: relative;
  overflow: hidden;
}

.ha-course-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  background: var(--terracotta);
  color: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.ha-course-content {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ha-course-content .eyebrow {
  margin-bottom: 12px;
}

.ha-course-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 0.96;
  margin: 0 0 20px;
  max-width: 540px;
}

.ha-course-deck {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 480px;
  margin-bottom: 28px;
}

.ha-course-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  margin-bottom: 32px;
}

.ha-course-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ha-course-meta-item dt {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
}

.ha-course-meta-item dd {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* ---- Founders Teaser ---- */

.ha-founders {
  padding: 88px 0;
  background: var(--bone-deep);
}

.ha-founders-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}

.ha-founders-head .eyebrow {
  margin-bottom: 10px;
}

.ha-founders-head .display {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0;
}

.ha-founders-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0.72;
  margin: 0;
}

.ha-founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule-strong);
  margin-bottom: 36px;
}

.ha-founder-card {
  background: var(--bone);
}

.ha-founder-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ha-founder-info {
  padding: 24px 28px 28px;
}

.ha-founder-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
}

.ha-founder-creds {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 10px;
}

.ha-founder-focus {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.65;
  margin: 0;
}

.ha-founders-cta {
  text-align: center;
}

/* ---- Split CTA ---- */

.ha-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left: dark enrollment half */
.ha-cta-enroll {
  background: var(--forest-deep);
  padding: 80px 72px 80px 40px;
  display: flex;
  align-items: center;
}

/* Right: light newsletter half */
.ha-cta-newsletter {
  background: var(--bone);
  padding: 80px 40px 80px 72px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--rule);
}

.ha-cta-half-content {
  max-width: 440px;
}

.ha-cta-enroll .ha-cta-half-content {
  margin-left: auto;
}

/* Eyebrow on dark background */
.ha-cta-eyebrow-light {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  opacity: 0.75;
  margin-bottom: 14px;
}

.ha-cta-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--bone);
  margin: 0 0 16px;
  line-height: 0.96;
}

.ha-cta-newsletter-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 0.96;
}

.ha-cta-newsletter-heading em {
  color: var(--forest);
}

.ha-cta-sub {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.65;
  margin-bottom: 28px;
}

.ha-cta-sub--dark {
  color: var(--ink-soft);
  opacity: 0.7;
}

/* Newsletter form in split CTA */
.ha-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin-bottom: 12px;
}

.ha-newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  background: var(--bone-deep);
  border: 1px solid var(--rule-strong);
  border-right: none;
  border-radius: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.ha-newsletter-form input:focus {
  border-color: var(--forest);
}

.ha-newsletter-form input::placeholder {
  color: var(--ink-soft);
  opacity: 0.4;
}

.ha-newsletter-form button {
  padding: 13px 22px;
  background: var(--forest);
  border: 1px solid var(--forest);
  color: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.ha-newsletter-form button:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.ha-newsletter-fine {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.5;
  margin: 0;
}

/* ---- Homepage Alt — Responsive ---- */

@media (max-width: 1100px) {
  .ha-hero-left {
    padding: 72px 56px 72px 40px;
  }

  .ha-course-content {
    padding: 52px 56px;
  }
}

@media (max-width: 991px) {
  .ha-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ha-hero-left {
    padding: 72px 40px;
    min-height: 70vh;
  }

  .ha-hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .ha-hero-right {
    height: 360px;
  }

  .ha-stats-row {
    flex-wrap: wrap;
  }

  .ha-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--rule);
  }

  .ha-stat:nth-child(2) {
    border-right: none;
  }

  .ha-stat:nth-child(3),
  .ha-stat:nth-child(4) {
    border-bottom: none;
  }

  .ha-premise-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ha-process-steps {
    flex-direction: column;
    gap: 0;
  }

  .ha-step {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
  }

  .ha-step-connector {
    display: none;
  }

  .ha-course-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ha-course-image {
    height: 320px;
  }

  .ha-course-content {
    padding: 48px 40px;
  }

  .ha-founders-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ha-cta {
    grid-template-columns: 1fr;
  }

  .ha-cta-enroll {
    padding: 72px 40px;
  }

  .ha-cta-newsletter {
    padding: 72px 40px;
    border-top: 2px solid var(--rule-strong);
  }

  .ha-cta-enroll .ha-cta-half-content,
  .ha-cta-newsletter .ha-cta-half-content {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ha-hero-left {
    min-height: 0;
    padding: 56px 24px;
  }

  .ha-trust-inner {
    gap: 12px;
  }

  .ha-trust-note {
    width: 100%;
    margin-left: 0;
  }

  .ha-offerings-grid {
    grid-template-columns: 1fr;
  }

  .ha-founders-grid {
    grid-template-columns: 1fr;
  }

  .ha-course-meta {
    gap: 16px;
  }
}


/* ============================================================
   BLOG DETAIL PAGE  (.bd-  prefix)
   ============================================================ */

/* ---- Article Header ---- */

.bd-header {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--rule);
}

.bd-breadcrumb {
  margin-bottom: 36px;
}

.bd-back-link {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bd-back-link:hover {
  opacity: 1;
  color: var(--forest);
}

.bd-header-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.bd-category {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.bd-read-time {
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.5;
}

.bd-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 0.96;
  color: var(--ink);
  max-width: 800px;
  margin: 0 0 28px;
}

.bd-header-meta-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 6px;
}

.bd-byline {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.bd-author-link {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}

.bd-author-link:hover {
  text-decoration: underline;
}

.bd-meta-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--rule-strong);
  border-radius: 50%;
  margin: 0 14px;
  transform: translateY(-1px);
  flex-shrink: 0;
}

.bd-date,
.bd-reading-est {
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* ---- Featured Image ---- */

.bd-featured {
  margin: 0 0 0;
  padding: 40px 0 0;
}

.bd-featured-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: var(--bone-deep);
}

.bd-featured-caption {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-top: 10px;
  font-style: italic;
}

/* ---- Article Body ---- */

.bd-body {
  padding: 60px 0 72px;
}

/* Constrained reading column */
.bd-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Wider column for pull quotes and callouts */
.bd-body-wide {
  max-width: 920px;
  margin: 0 auto;
}

/* Article body typography */

.bd-lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  margin-bottom: 2em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--rule);
}

.bd-body-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.4em;
}

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

.bd-body-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 2.2em 0 0.75em;
}

.bd-body-inner h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 2em 0 0.6em;
}

.bd-body-inner ul,
.bd-body-inner ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.bd-body-inner li {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.45em;
  color: var(--ink);
}

.bd-body-inner strong {
  font-weight: 700;
  color: var(--ink);
}

.bd-body-inner em {
  font-style: italic;
  color: inherit;
}

/* Pull quote — wider than body text */
.bd-pullquote {
  border: none;
  border-left: 3px solid var(--terracotta);
  padding: 6px 0 6px 28px;
  margin: 2.4em auto;
}

.bd-pullquote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 350;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 10px;
}

.bd-pullquote cite {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.6;
  font-style: normal;
}

/* Callout / clinical note box */
.bd-callout {
  background: color-mix(in srgb, var(--forest) 8%, transparent);
  border-left: 3px solid var(--forest);
  padding: 18px 24px;
  margin: 2em 0;
}

.bd-callout-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.bd-callout p {
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: var(--ink) !important;
  margin: 0 !important;
}

/* ---- Author Card ---- */

.bd-author-section {
  padding: 0 0 72px;
  border-top: 1px solid var(--rule);
}

.bd-author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 720px;
  margin: 48px auto 0;
}

.bd-author-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex-shrink: 0;
}

.bd-author-eyebrow {
  margin-bottom: 8px;
}

.bd-author-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 3px;
}

.bd-author-creds {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 12px;
}

.bd-author-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 0 0 14px;
}

.bd-author-link-full {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.bd-author-link-full .arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 15px;
  transition: transform 0.2s;
}

.bd-author-link-full:hover {
  text-decoration: underline;
}

.bd-author-link-full:hover .arrow {
  transform: translateX(3px);
}

/* ---- Prev / Next Article Navigation ---- */

.bd-article-nav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone-deep);
}

.bd-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bd-nav-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 32px 40px;
  text-decoration: none;
  transition: background 0.15s;
}

.bd-nav-prev {
  border-right: 1px solid var(--rule);
  align-items: flex-start;
}

.bd-nav-next {
  align-items: flex-end;
  text-align: right;
}

.bd-nav-item:hover {
  background: var(--bone);
}

.bd-nav-dir {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
}

.bd-nav-cat {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.bd-nav-title {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--ink);
  line-height: 1.1;
  max-width: 340px;
}

/* ---- Related Articles ---- */

.bd-related {
  padding: 72px 0 88px;
}

.bd-related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.bd-related-head .display {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
}

.bd-related-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.bd-related-all .arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 15px;
  transition: transform 0.2s;
}

.bd-related-all:hover { text-decoration: underline; }
.bd-related-all:hover .arrow { transform: translateX(3px); }

.bd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule-strong);
}

/* ---- Blog Detail — Responsive ---- */

@media (max-width: 991px) {
  .bd-nav-item {
    padding: 28px 28px;
  }

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

@media (max-width: 767px) {
  .bd-header {
    padding: 40px 0 36px;
  }

  .bd-author-card {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .bd-nav-grid {
    grid-template-columns: 1fr;
  }

  .bd-nav-prev {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .bd-nav-next {
    align-items: flex-start;
    text-align: left;
  }

  .bd-nav-title {
    max-width: 100%;
  }

  .bd-related-grid {
    grid-template-columns: 1fr;
  }

  .bd-body-inner,
  .bd-body-wide {
    max-width: 100%;
  }
}


/* ==============================================================
   FEEDBACK SURVEY — feedback.php
   Prefix: .fb-
   ============================================================== */

/* ---- Blade 1: Survey header + form ---- */

.fb-survey {
  padding: 80px 0 96px;
}

.fb-survey-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.fb-survey-head .eyebrow {
  margin-bottom: 16px;
}

.fb-survey-title {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

/* Expectation bar — mirrors .ct-bar */
.fb-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 18px 24px;
  background: var(--bone-deep);
  border-radius: 6px;
  margin-bottom: 56px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.fb-bar .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rule-strong);
  flex-shrink: 0;
}

/* Two-column grid: info left / form right */
.fb-survey-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Left: Info column ---- */

.fb-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fb-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.fb-info-block:first-child {
  padding-top: 0;
}

.fb-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}

.fb-info-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 350;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.fb-info-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.7;
}

.fb-info-note {
  margin: 28px 0 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- Right: Form card ---- */

.fb-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 2px 24px rgba(29, 36, 32, 0.07);
}

/* ---- Form elements — mirrors .ct- patterns ---- */

.fb-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fb-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.fb-field {
  margin-bottom: 20px;
}

.fb-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.fb-required {
  color: var(--forest);
}

.fb-input,
.fb-select,
.fb-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--rule-strong);
  border-radius: 6px;
  background: var(--bone);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.fb-input::placeholder,
.fb-textarea::placeholder {
  color: rgba(29, 36, 32, 0.38);
}

.fb-input:focus,
.fb-select:focus,
.fb-textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}

.fb-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231d2420' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.fb-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
}

/* ---- Form section dividers ---- */

.fb-form-section {
  border-top: 1px solid var(--rule);
  margin: 8px 0 0;
}

.fb-form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  padding: 24px 0 20px;
}

/* First section label has no preceding rule */
.fb-form > .fb-form-section-label:first-child {
  padding-top: 0;
}

.fb-section-hint {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.6;
  margin: -12px 0 20px;
}

/* ---- Rating widget ---- */

.fb-rating-question {
  margin-bottom: 28px;
}

.fb-rating-scale {
  display: flex;
  gap: 10px;
  align-items: center;
}

.fb-rating-item {
  position: relative;
  flex-shrink: 0;
}

.fb-rating-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fb-rating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--rule-strong);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
  -webkit-user-select: none;
}

.fb-rating-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.fb-rating-item input[type="radio"]:checked + .fb-rating-btn {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.fb-rating-item input[type="radio"]:focus-visible + .fb-rating-btn {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* ---- Recommendation / attribution pill group ---- */

.fb-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.fb-pill-item {
  position: relative;
}

.fb-pill-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fb-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--rule-strong);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.fb-pill-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.fb-pill-item input[type="radio"]:checked + .fb-pill-btn {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.fb-pill-item input[type="radio"]:focus-visible + .fb-pill-btn {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* ---- Consent checkbox ---- */

.fb-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.fb-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--forest);
  cursor: pointer;
}

.fb-check-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
}

/* Attribution toggle — slides in when consent is checked */
.fb-attribution {
  padding: 20px 24px;
  background: var(--bone-deep);
  border-radius: 6px;
  margin-bottom: 20px;
}

.fb-attribution .fb-label {
  margin-bottom: 14px;
}

/* ---- Submit + confirmation ---- */

.fb-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 8px;
}

.fb-submit:hover {
  background: var(--forest-deep);
}

.fb-submit:active {
  transform: translateY(1px);
}

.fb-confirm {
  margin-top: 20px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--forest) 8%, var(--bone));
  border-left: 3px solid var(--forest);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

/* ---- Blade 2: Impact strip ---- */

.fb-impact {
  background: var(--forest-deep);
  padding: 64px 0;
}

.fb-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.fb-impact-item {
  background: var(--forest-deep);
  padding: 36px 32px;
}

.fb-impact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 10px;
}

.fb-impact-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 8px;
}

.fb-impact-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--sienna);
  opacity: 0.7;
}

/* ---- Feedback — Responsive ---- */

@media (max-width: 1100px) {
  .fb-survey-grid {
    grid-template-columns: 280px 1fr;
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .fb-survey-grid {
    grid-template-columns: 1fr;
  }

  .fb-info {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2px;
    background: var(--rule);
  }

  .fb-info-block {
    background: var(--bone);
    padding: 24px;
    border-bottom: none;
  }

  .fb-info-note {
    grid-column: 1 / -1;
    background: var(--bone);
    padding: 20px 24px;
    margin: 0;
  }

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

@media (max-width: 767px) {
  .fb-survey {
    padding: 56px 0 72px;
  }

  .fb-form-card {
    padding: 32px 24px;
  }

  .fb-fields-row {
    grid-template-columns: 1fr;
  }

  .fb-info {
    grid-template-columns: 1fr;
  }

  .fb-info-note {
    grid-column: auto;
  }

  .fb-rating-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .fb-rating-scale {
    gap: 8px;
  }

  .fb-impact-grid {
    grid-template-columns: 1fr;
  }

  .fb-impact-item {
    padding: 28px 24px;
  }
}
