/* ==========================================================================
   NxT — Design Tokens
   ========================================================================== */
:root {
  /* Brand colors */
  --navy: #0A2342;
  --navy-2: #0F2E56;
  --navy-3: #123057;
  --slate: #1A4B75;
  --green: #5B9A22;
  --green-light: #74B834;
  --gray: #8A929A;
  --gray-light: #D8DCE0;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --ink: #191D22;
  --ink-soft: #4B5259;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(48px, 7vw, 96px);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Typography
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--green-light); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
  color: var(--navy);
}
em, .accent-italic {
  font-style: italic;
  color: var(--green);
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
}
.on-dark .lede { color: rgba(255,255,255,0.78); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark em { color: var(--green-light); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-light); }
.btn-outline {
  background: transparent;
  border-color: rgba(10,35,66,0.25);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }
.on-dark .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.on-dark .btn-outline:hover { border-color: var(--white); }
.btn-arrow::after {
  content: "\2192";
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn-arrow::after,
.btn.btn-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,249,250,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,35,66,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s var(--ease);
  content: "";
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px var(--gutter);
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: var(--section-pad) 0; position: relative; }
.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
}
.section-tight { padding: clamp(36px, 5vw, 64px) 0; }
.section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-top: 14px; }

hr.divider {
  border: none;
  border-top: 1px solid rgba(10,35,66,0.1);
  margin: 0;
}
.on-dark hr.divider { border-top-color: rgba(255,255,255,0.14); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(44px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy .lede { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-mark {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark svg { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { max-width: 320px; margin: 0 auto; order: -1; }
}

/* ==========================================================================
   Threshold arc — signature motif (used as watermark + dividers)
   ========================================================================== */
.arc-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================================================
   Pillars (Well-being / Connection / Stewardship)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,35,66,0.1);
  border: 1px solid rgba(10,35,66,0.1);
}
.pillar-card {
  background: var(--bg);
  padding: 42px 36px;
}
.pillar-card .pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 22px;
  display: block;
}
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card p { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pathway / program cards
   ========================================================================== */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cores-grid { grid-template-columns: 1fr; }
}
.core-card .core-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 14px 0 22px;
}
.pathway-card {
  background: var(--white);
  border: 1px solid rgba(10,35,66,0.1);
  padding: 40px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(10,35,66,0.25);
}
.pathway-card.is-anchor {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.pathway-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pathway-index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray);
}
.is-anchor .pathway-index { color: rgba(255,255,255,0.55); }
.pathway-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
}
.pathway-card h3 { margin-bottom: 14px; }
.pathway-card.is-anchor h3 { color: var(--white); }
.pathway-card .modalities {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.is-anchor .modalities { color: rgba(255,255,255,0.72); }
.pathway-card .modalities span {
  display: inline-block;
}
.pathway-card .modalities span:not(:last-child)::after {
  content: "\00b7";
  margin: 0 8px;
  color: var(--green);
}
@media (max-width: 760px) {
  .pathways-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Feature list (icon + text rows) — Experience formats
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(10,35,66,0.1);
  border: 1px solid rgba(10,35,66,0.1);
}
.feature-card {
  background: var(--white);
  padding: 36px 30px;
}
.feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 22px;
  color: var(--green);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Stat row
   ========================================================================== */
.stat-row {
  display: flex;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}
.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--green-light);
  line-height: 1;
}
.stat-block .stat-label {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Team / founders
   ========================================================================== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.founder-card { display: flex; flex-direction: column; }
.founder-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--slate), var(--navy));
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-initials {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: rgba(255,255,255,0.85);
}
.founder-card .role {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.founder-card h3 { margin-bottom: 14px; }
.founder-card p { color: var(--ink-soft); font-size: 0.95rem; }
.founder-card p + p { margin-top: 14px; }
@media (max-width: 760px) {
  .founders-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid.single-tier {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
.price-billing-note {
  color: var(--gray);
  font-size: 0.92rem;
  margin-top: -18px;
  margin-bottom: 28px;
}
.is-featured .price-billing-note { color: rgba(255,255,255,0.65); }
.price-card {
  background: var(--white);
  border: 1px solid rgba(10,35,66,0.12);
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
}
.price-card.is-featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.price-tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.is-featured .price-tier-label { color: var(--green-light); }
.price-card h3 { font-size: 1.6rem; margin-bottom: 20px; }
.price-card.is-featured h3 { color: var(--white); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--navy);
  margin-bottom: 30px;
}
.is-featured .price-amount { color: var(--white); }
.price-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}
.is-featured .price-amount span { color: rgba(255,255,255,0.6); }
.price-features {
  flex: 1;
  margin-bottom: 32px;
}
.price-features li {
  padding: 12px 0;
  border-top: 1px solid rgba(10,35,66,0.08);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.is-featured .price-features li { border-top-color: rgba(255,255,255,0.15); }
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.is-featured .price-features li::before { background: var(--green-light); }
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq-list { max-width: 780px; }
.faq-item {
  border-top: 1px solid rgba(10,35,66,0.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(10,35,66,0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--green);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding-bottom: 26px;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ==========================================================================
   Story / About long-form text blocks
   ========================================================================== */
.story-block {
  max-width: 720px;
}
.story-block p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.story-block p.lead {
  font-size: 1.2rem;
  color: var(--navy);
}
.pull-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--navy);
  line-height: 1.4;
  border-left: 2px solid var(--green);
  padding-left: 28px;
  margin: 40px 0;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  padding: clamp(52px, 6vw, 80px) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 20px; }
.cta-band .lede { margin: 0 auto 36px; }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   Form
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-field .optional {
  color: var(--gray);
  font-weight: 400;
  text-transform: none;
}
.form-field input, .form-field textarea, .form-field select {
  padding: 14px 16px;
  border: 1px solid rgba(10,35,66,0.2);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A929A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--green);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-note { font-size: 0.82rem; color: var(--gray); }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* honeypot */
.hp-field { position: absolute; left: -9999px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 34px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-brand p + p { margin-top: 8px; }
.footer-brand p a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.footer-brand p a:hover { color: var(--green-light); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 780px; }
.page-hero .lede { margin-top: 22px; }

/* Utility */
.keep-line { white-space: nowrap; display: block; }
@media (max-width: 480px) {
  .keep-line { white-space: normal; }
}
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.max-w-narrow { max-width: 640px; }
.max-w-narrow.centered { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Team / practitioners list (Meet our practitioners)
   ========================================================================== */
.practitioner-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.practitioner-item { margin: 0; }
.practitioner-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 6px 4px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.practitioner-link:hover { background: rgba(10, 35, 66, 0.05); }
.practitioner-photo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 1px solid rgba(138, 146, 154, 0.4);
  display: inline-block;
}
.practitioner-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.practitioner-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.practitioner-modality {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.3;
}

/* ==========================================================================
   Visual density pass — texture, accents, reduced whitespace feel
   (Same theme: navy / slate / green / gray. No new imagery required.)
   ========================================================================== */

/* Give pillar cards and feature cards a top accent bar + lift so the grid
   reads as a graphic system rather than plain bordered white boxes */
.pillar-card, .feature-card {
  position: relative;
  box-shadow: 0 1px 3px rgba(10,35,66,0.05);
}
.pillar-card::before, .feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  opacity: 0.85;
}
.pillar-card { background: var(--white); }
.feature-card { background: var(--white); }

/* Founder / practitioner photo frame gets a colored ring so the empty
   placeholder circles read as intentional design, not a missing image */
.practitioner-photo {
  box-shadow: 0 0 0 3px rgba(91,154,34,0.15);
}
.founder-photo {
  box-shadow: 0 0 0 4px rgba(91,154,34,0.12);
}

/* Section dividers get a graphic gradient sweep instead of a flat hairline */
hr.divider {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: 0.45;
}
.on-dark hr.divider {
  background: linear-gradient(90deg, transparent, var(--green-light) 50%, transparent);
  opacity: 0.5;
}

