@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Cinzel:wght@500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  color-scheme: light;
  font-family: var(--font-body);
  background: var(--color-surface-elevated);
  color: var(--color-ink-primary);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-surface-elevated);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-surface-elevated);
  color: var(--color-ink-primary);
  font-family: var(--font-body);
}

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

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

main {
  background: var(--color-surface-elevated);
}

#about-lynne,
#about-lynne-detail,
#services,
#reach-out,
#testimonials,
#specialties,
#resources,
#contact {
  scroll-margin-top: var(--space-10);
}

.skip-link {
  position: fixed;
  left: var(--space-3);
  top: var(--space-3);
  z-index: 50;
  transform: translateY(-220%);
  border: 1px solid var(--color-brand-rust);
  border-radius: var(--radius-pill);
  background: var(--color-surface-elevated);
  color: var(--color-ink-primary);
  padding: 10px 14px; /* drift: tighter than scale step for compact skip-link */
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

/* ============================================================
   Healing Journey — Hero section (added 2026-05-13)
   Owns: .thj-hero, .thj-nav, .thj-hero-grid, .thj-trust-strip
   ============================================================ */
.thj-hero {
  /* Section-prefixed vars retained as aliases to canonical tokens to preserve all
     downstream selector behavior. Do not reintroduce hex literals here. */
  --thj-cream: var(--color-surface-elevated);
  --thj-cream-soft: var(--color-surface-elevated);
  --thj-cream-deep: var(--color-surface-base);
  --thj-ink: var(--color-ink-primary);
  --thj-ink-soft: var(--color-ink-secondary);
  --thj-rust: var(--color-brand-rust);
  --thj-rust-dark: var(--color-brand-rust-dark);
  --thj-rust-deep: var(--color-brand-rust);
  --thj-olive: var(--color-brand-olive);
  --thj-line: var(--color-line-cream);

  position: relative;
  display: block;
  width: 100%;
  min-height: 1024px;
  background: var(--thj-cream);
  overflow: hidden;
  color: var(--thj-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.thj-hero-photo {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 96px;
  right: 0;
  width: min(56.315vw, 865px);
  height: 800px;
  background-image: url('./public/images/healing-journey/hero/hero-path.jpg');
  background-size: 100% 100%;
  background-position: top right;
  background-repeat: no-repeat;
}
.thj-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top right;
}

@media (min-width: 768px) {
  html.safari-desktop .thj-hero-video {
    display: none;
  }
}
.thj-hero-photo::after {
  /* Localized text-protection gradient on hero photo. rgba(250,242,220,*) is the
     elevated cream as a translucent overlay; keep as literal because var() inside
     rgba() requires color-mix and we want max browser support. */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--thj-cream) 0%,
    rgba(250, 242, 220, 0.96) 4%,
    rgba(250, 242, 220, 0.62) 13%,
    rgba(250, 242, 220, 0.18) 24%,
    rgba(250, 242, 220, 0) 34%
  );
  pointer-events: none;
}

/* Top nav */
.thj-nav {
  position: absolute;
  top: 43px;
  left: 60px;
  right: 51px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: none;
  margin: 0 auto;
  gap: 26px;
}

.thj-logo-lockup {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  flex-shrink: 0;
}
.thj-logo-mark {
  width: 108px;
  height: 108px;
  background: url('./public/images/healing-journey/hero/logo-thjcc-mark-live.png') center/contain no-repeat;
  flex-shrink: 0;
}
.thj-logo-text {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thj-logo-title {
  /* Cinzel retained per logotype design intent — drift from canonical display font. */
  font-family: 'Cinzel', var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--thj-rust-deep);
  text-transform: uppercase;
  line-height: 1;
}
.thj-logo-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.29em;
  color: var(--thj-olive);
  text-transform: uppercase;
  margin-top: var(--space-2);
}

.thj-nav-links {
  display: flex;
  gap: clamp(18px, 1.55vw, 22px);
  list-style: none;
  align-items: center;
  margin: 0 12px 0 auto;
  padding: 0;
}
.thj-nav-links a {
  color: var(--thj-ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.thj-nav-links a:hover { color: var(--thj-rust); }

.thj-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px; /* drift: nav-internal micro-gap */
  min-height: 44px;
  padding: 10px 15px; /* drift: nav-internal compact padding */
  border: 1px solid rgba(170, 74, 34, 0.35);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.86);
  color: var(--thj-rust-dark);
  font: 600 14px/1 var(--font-body);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.thj-menu-toggle-icon {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.thj-menu-toggle-icon span {
  position: absolute;
  left: 0;
  top: 8px;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.thj-menu-toggle-icon span:first-child {
  transform: translateY(-4px);
}

.thj-menu-toggle-icon span:last-child {
  transform: translateY(4px);
}

.thj-menu-toggle[aria-expanded="true"] .thj-menu-toggle-icon span:first-child {
  transform: translateY(0) rotate(45deg);
}

.thj-menu-toggle[aria-expanded="true"] .thj-menu-toggle-icon span:last-child {
  transform: translateY(0) rotate(-45deg);
}

/* Pill buttons */
.thj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  padding: 17px 30px; /* drift: bespoke hero CTA padding */
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.thj-btn-primary {
  background: var(--thj-rust);
  color: var(--color-ink-on-dark);
  border-color: var(--thj-rust);
}
.thj-btn-primary:hover {
  background: var(--thj-rust-dark);
  border-color: var(--thj-rust-dark);
  color: var(--color-ink-on-dark);
}

.thj-btn-outline {
  background: transparent;
  color: var(--thj-rust);
  border-color: var(--thj-rust);
}
.thj-btn-outline:hover {
  background: var(--thj-rust);
  color: var(--color-ink-on-dark);
}

.thj-nav-cta {
  padding: 14px 22px; /* drift: bespoke nav CTA padding */
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* Hero content */
.thj-hero-content {
  position: absolute;
  top: 255px;
  left: 67px;
  z-index: 4;
  width: 720px;
  max-width: calc(100% - 780px);
  margin: 0;
  padding: 0;
}

.thj-hero-text {
  max-width: 720px;
  padding-top: 0;
}

.thj-hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 80px;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--thj-ink);
  margin: 0 0 var(--space-1);
}

.thj-hero-ornament {
  display: block;
  width: 258px;
  max-width: 60%;
  height: auto;
  margin: 9px 0 1px;
  opacity: 1;
}

.thj-hero-subhead {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.5;
  color: var(--color-ink-primary);
  max-width: 566px;
  margin: 0 0 43px; /* drift: bespoke spacing above hero CTAs */
}

.thj-hero-ctas {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}

/* Trust strip */
.thj-trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 176px;
  /* rgba(242,232,216,0.94) is a translucent variant of surface-base. */
  background: rgba(242, 232, 216, 0.94);
  padding: var(--space-7) var(--space-8) 35px; /* drift: 35px bottom for trust-strip optical alignment */
  border-top: 0;
}
.thj-trust-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.thj-trust-item {
  display: flex;
  align-items: center;
  gap: 23px;
  justify-content: center;
  padding: 0 20px;
}
.thj-trust-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thj-trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thj-trust-text {
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.thj-trust-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--thj-ink);
}
.thj-trust-sub {
  font-size: 18px;
  color: var(--color-ink-primary);
  margin-top: 6px;
}
.thj-trust-divider {
  width: 1px;
  height: 72px;
  background: rgba(79, 90, 59, 0.22);
  justify-self: center;
}

@media (min-width: 769px) and (max-width: 1439px) {
  .thj-nav {
    left: 44px;
    right: 32px;
    gap: 18px;
  }
  .thj-logo-lockup { gap: 14px; }
  .thj-logo-mark { width: 88px; height: 88px; }
  .thj-logo-title { font-size: 26px; }
  .thj-logo-sub { font-size: 13px; letter-spacing: 0.22em; }
  .thj-nav-links {
    gap: clamp(16px, 1.6vw, 22px);
    margin-right: 4px;
  }
  .thj-nav-links a,
  .thj-nav-cta {
    font-size: 14.5px;
  }
  .thj-nav-cta {
    padding: 13px 22px; /* drift: bespoke nav CTA padding (tablet) */
    border-radius: var(--radius-md);
  }
  .thj-hero-content {
    left: 52px;
    top: 250px;
    max-width: min(680px, calc(100% - 520px));
  }
  .thj-hero-headline {
    font-size: 76px;
    line-height: 1.02;
  }
  .thj-hero-subhead {
    max-width: 560px;
    margin-bottom: 28px;
  }
}

@media (max-width: 1279px) {
  .thj-nav {
    flex-wrap: wrap;
  }

  .thj-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .thj-logo-lockup {
    flex: 1 1 auto;
    min-width: 0;
  }

  .thj-logo-text {
    min-width: 0;
  }

  .thj-nav-links {
    order: 3;
    display: none;
    width: min(360px, 100%);
    margin: 0 0 0 auto;
    padding: 8px; /* drift: nav-menu compact padding */
    border: 1px solid rgba(170, 74, 34, 0.18);
    border-bottom: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .thj-nav.is-open .thj-nav-links {
    display: grid;
    gap: 6px;
  }

  .thj-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid rgba(79, 90, 59, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(250, 242, 220, 0.58);
    font-size: 15px;
    font-weight: 500;
  }

  .thj-nav-links a:hover {
    background: rgba(170, 74, 34, 0.08);
  }

  .thj-nav-cta {
    order: 4;
    display: none;
    width: min(360px, 100%);
    margin-left: auto;
    justify-content: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .thj-nav.is-open .thj-nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .thj-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--thj-cream);
  }
  .thj-nav {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 18px 22px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .thj-nav-links,
  .thj-nav-cta {
    width: 100%;
    margin-left: 0;
  }
  .thj-nav.is-open .thj-nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .thj-nav-links a {
    white-space: normal;
  }
  .thj-logo-lockup {
    width: auto;
    gap: 9px;
  }
  .thj-logo-title { font-size: clamp(16px, 4.5vw, 20px); }
  .thj-logo-sub {
    font-size: clamp(7px, 2.1vw, 9px);
    letter-spacing: 0.14em;
    margin-top: 6px;
  }
  .thj-logo-mark { width: 46px; height: 46px; }
  .thj-hero-photo {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 280px;
    margin-top: 0;
    background-size: cover;
    background-position: center right;
  }
  .thj-hero-video {
    object-fit: cover;
    object-position: center right;
  }
  .thj-hero-photo::after {
    background: linear-gradient(to bottom, rgba(250, 242, 220, 0) 60%, var(--thj-cream) 100%);
  }
  .thj-hero-content { padding: 0 22px; }
  .thj-hero-content {
    order: 3;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-width: none;
  }
  .thj-hero-text { padding-top: 20px; max-width: 100%; }
  .thj-hero-headline { font-size: clamp(40px, 12vw, 58px); }
  .thj-hero-ornament {
    display: block;
    margin: 22px auto 20px;
  }
  .thj-hero-subhead { font-size: 15px; }
  .thj-hero-ctas { flex-direction: column; align-items: stretch; }
  .thj-trust-strip { order: 4; position: relative; padding: 22px; }
  .thj-trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
  .thj-trust-divider { display: none; }
  .thj-trust-icon { width: 32px; height: 32px; visibility: visible; }
  .thj-trust-title { font-size: 13.5px; }
  .thj-trust-sub { font-size: 12px; }
}

@media (max-width: 520px) {
  .thj-hero-headline {
    font-size: clamp(38px, 10.8vw, 50px);
  }

  .thj-menu-toggle {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .thj-menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .thj-nav {
    padding-inline: 18px;
    gap: 10px;
  }

  .thj-nav.is-open .thj-nav-links {
    grid-template-columns: 1fr;
  }

  .thj-logo-lockup {
    gap: 8px;
  }

  .thj-logo-mark {
    width: 38px;
    height: 38px;
  }

  .thj-logo-title {
    font-size: 13px;
  }

  .thj-logo-sub {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }
}

/* ============================================================
   Healing Journey — Meet Lynne section (added 2026-05-13)
   Owns: .thj-meet-lynne and descendants
   ============================================================ */
.thj-meet-lynne {
  /* meet-lynne is an "even" section in the alternation rhythm → surface.elevated.
     Section-prefixed vars retained as aliases for backward compatibility. */
  --ml-cream-bg: var(--color-surface-elevated);
  --ml-cream-bg-soft: var(--color-surface-elevated);
  --ml-cta-bar: var(--color-surface-base);
  --ml-terracotta: var(--color-brand-rust);
  --ml-terracotta-deep: var(--color-brand-rust-dark);
  --ml-gold: var(--color-brand-gold);
  --ml-sage: var(--color-brand-olive);
  --ml-text-dark: var(--color-ink-primary);
  --ml-text-body: var(--color-ink-secondary);
  --ml-text-muted: var(--color-brand-rust-dark);
  --ml-tile-border: var(--color-line-subtle);

  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  position: relative;
  background-color: var(--ml-cream-bg);
  min-height: 1128px;
  padding: 86px var(--space-10) 76px; /* drift: 86px and 76px optical balance */
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--ml-text-dark);
  box-sizing: border-box;
}
.thj-meet-lynne *,
.thj-meet-lynne *::before,
.thj-meet-lynne *::after { box-sizing: border-box; }

.thj-meet-lynne::after {
  content: none;
}
.thj-meet-lynne > * { position: relative; z-index: 1; }

.thj-meet-lynne-grid {
  display: grid;
  grid-template-columns: minmax(420px, 512px) minmax(0, 1fr);
  align-items: start;
  gap: 88px;
  max-width: 1344px;
  margin: 0 auto;
}

.thj-meet-lynne-photo-wrap {
  width: 100%;
  aspect-ratio: 512 / 650;
  padding: var(--space-2);
  overflow: hidden;
  z-index: 1;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow-lg);
}
.thj-meet-lynne-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center center;
  box-shadow: none;
}

.thj-meet-lynne-content {
  position: relative;
  padding: 49px 0 0;
  max-width: 674px;
}
.thj-meet-lynne-ornament {
  display: block;
  position: absolute;
  top: -44px;
  left: 250px;
  width: 64px;
  height: auto;
  margin: 0;
}

.thj-meet-lynne-eyebrow {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ml-terracotta);
  font-weight: 600;
  margin: 0 0 var(--space-6);
}
.thj-meet-lynne-eyebrow::after { content: none; }

h2.thj-meet-lynne-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 99px;
  line-height: 0.95;
  text-align: left;
  color: var(--ml-text-dark);
  margin: 0 0 34px; /* drift: bespoke title spacing */
  letter-spacing: 0;
}

.thj-meet-lynne-lede {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.34;
  font-weight: 500;
  font-style: italic;
  color: var(--ml-terracotta);
  margin: 0 0 34px; /* drift: bespoke lede spacing */
  width: 100%;
}
.thj-meet-lynne-body p {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.52;
  color: var(--ml-text-body);
  margin: 0 0 var(--space-6);
  width: 100%;
}
.thj-meet-lynne-body::before {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  background: var(--ml-gold);
  margin: -20px 0 28px;
  box-shadow: 50px 0 0 -49px var(--ml-gold);
}
.thj-meet-lynne-body strong {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-ink-primary);
}
.thj-meet-lynne-inline-heart {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 39px;
  margin-left: 24px;
  vertical-align: -12px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 32 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 27C10.2 21.8 4 16.6 4 10.2C4 6.6 6.6 4 10 4C12.4 4 14.6 5.3 16 7.5C17.4 5.3 19.6 4 22 4C25.4 4 28 6.6 28 10.2C28 16.6 21.8 21.8 16 27Z' fill='none' stroke='%23b94f21' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.thj-meet-lynne-trust-strip {
  width: min(100%, 1328px);
  min-height: 154px;
  margin: 44px auto 28px; /* drift: bespoke trust-strip vertical rhythm */
  padding: 28px 58px; /* drift: trust-strip optical padding */
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(234, 220, 200, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}
.thj-meet-lynne-trust-item {
  min-height: 94px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-right: 1px solid rgba(201, 148, 59, 0.5);
  color: inherit;
}
.thj-meet-lynne-trust-item:first-child { padding-left: 18px; }
.thj-meet-lynne-trust-item:last-child {
  border-right: 0;
  padding-right: 18px;
}
.thj-meet-lynne-trust-icon {
  width: 92px;
  height: 92px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thj-meet-lynne-trust-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}
.thj-meet-lynne-trust-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--ml-text-dark);
  margin: 0 0 11px; /* drift: optical balance */
}
.thj-meet-lynne-trust-copy span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ml-terracotta-deep);
  font-weight: 600;
}

.thj-meet-lynne-cta-bar {
  width: min(100%, 1215px);
  min-height: 113px;
  margin: 0 auto;
  background: var(--ml-cta-bar);
  border: 1px solid var(--color-line-subtle);
  border-radius: var(--radius-sm);
  padding: 0 45px; /* drift: bespoke cta-bar horizontal padding */
  display: grid;
  grid-template-columns: 100px 1px 1fr 300px;
  align-items: center;
  gap: var(--space-4);
}
.thj-meet-lynne-cta-leaf {
  width: 84px;
  height: auto;
  justify-self: center;
}
.thj-meet-lynne-cta-divider {
  width: 1px;
  height: 50px;
  background: var(--ml-gold);
  opacity: 0.72;
}
.thj-meet-lynne-cta-text {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
  color: var(--ml-text-dark);
}
.thj-meet-lynne-cta-text strong { display: block; font-weight: 700; }
.thj-meet-lynne-cta-text em { display: block; font-style: italic; color: var(--ml-terracotta); }
.thj-meet-lynne-cta-btn {
  background: var(--ml-terracotta);
  color: var(--color-ink-on-dark);
  border: none;
  border-radius: var(--radius-sm);
  width: 300px;
  min-height: 55px;
  padding: 0 28px; /* drift: bespoke cta padding */
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.15s ease;
}
.thj-meet-lynne-cta-btn:hover { background: var(--ml-terracotta-deep); transform: translateY(-1px); }
.thj-meet-lynne-cta-btn svg { width: 22px; height: 22px; }

@media (min-width: 769px) and (max-width: 1320px) {
  .thj-meet-lynne {
    min-height: 0;
    padding: 74px 44px 64px;
  }
  .thj-meet-lynne-grid {
    grid-template-columns: minmax(340px, 43vw) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 72px);
  }
  h2.thj-meet-lynne-title {
    font-size: 76px;
  }
  .thj-meet-lynne-lede {
    font-size: 29px;
  }
  .thj-meet-lynne-body p {
    font-size: 18px;
  }
  .thj-meet-lynne-trust-strip {
    padding: 26px 28px;
  }
  .thj-meet-lynne-trust-item {
    padding: 0 18px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
  }
  .thj-meet-lynne-trust-icon,
  .thj-meet-lynne-trust-icon img {
    width: 82px;
    height: 82px;
  }
  .thj-meet-lynne-trust-copy strong {
    font-size: 24px;
  }
  .thj-meet-lynne-trust-copy span {
    font-size: 13px;
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  .thj-meet-lynne {
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    padding: 36px 18px 36px;
    overflow-x: hidden;
  }
  .thj-meet-lynne * {
    min-width: 0;
  }
  .thj-meet-lynne-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .thj-meet-lynne-photo-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100vw - 36px), 360px);
    margin: 0 auto;
    height: auto;
    aspect-ratio: 1 / 1.16;
    border-radius: var(--radius-lg);
    padding: 9px; /* drift: photo-frame padding */
  }
  .thj-meet-lynne-photo {
    border-radius: var(--radius-md);
  }
  .thj-meet-lynne-content {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100vw - 36px), 520px);
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }
  .thj-meet-lynne-ornament {
    position: static;
    width: 64px;
    height: auto;
    margin: 0 auto 18px;
  }
  .thj-meet-lynne-eyebrow {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin-bottom: 18px;
  }
  .thj-meet-lynne-eyebrow::after { display: none; }
  h2.thj-meet-lynne-title {
    text-align: center;
    font-size: 52px;
    margin: 0 0 24px;
  }
  .thj-meet-lynne-lede {
    font-size: 26px;
    text-align: center;
    transform: none;
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .thj-meet-lynne-body::before { margin: -12px 0 18px; }
  .thj-meet-lynne-body p {
    transform: none;
    width: auto;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 22px;
  }
  .thj-meet-lynne-body strong {
    font-size: 21px;
  }
  .thj-meet-lynne-trust-strip {
    width: min(100%, 520px);
    min-height: 0;
    margin: 0 auto 22px;
    padding: 18px 20px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .thj-meet-lynne-trust-item,
  .thj-meet-lynne-trust-item:first-child,
  .thj-meet-lynne-trust-item:last-child {
    min-height: 96px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 148, 59, 0.38);
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
  }
  .thj-meet-lynne-trust-item:last-child {
    border-bottom: 0;
  }
  .thj-meet-lynne-trust-icon,
  .thj-meet-lynne-trust-icon img {
    width: 76px;
    height: 76px;
  }
  .thj-meet-lynne-trust-copy strong {
    font-size: 23px;
  }
  .thj-meet-lynne-trust-copy span {
    font-size: 12px;
    letter-spacing: 0;
  }
  .thj-meet-lynne-cta-bar {
    width: auto;
    min-height: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 22px;
  }
  .thj-meet-lynne-cta-divider { display: none; }
  .thj-meet-lynne-cta-text { font-size: 19px; }
  .thj-meet-lynne-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-self: center;
  }
  .thj-meet-lynne-inline-heart {
    width: 24px;
    height: 22px;
    margin-left: 9px;
    vertical-align: -6px;
  }
}

@media (max-width: 480px) {
  .thj-meet-lynne-trust-copy span {
    letter-spacing: 0;
  }
}

/* ============================================================
   Healing Journey — Services section (added 2026-05-13)
   Owns: .thj-services and descendants
   ============================================================ */
.thj-services {
  /* services is an "odd" section in the alternation rhythm → surface.base.
     Section-prefixed vars retained as aliases. */
  --services-bg: var(--color-surface-base);
  --services-card: var(--color-surface-elevated);
  --services-border: var(--color-line-subtle);
  --services-ink: var(--color-ink-primary);
  --services-body: var(--color-ink-secondary);
  --services-rust: var(--color-brand-rust);
  --services-gold: var(--color-brand-gold);

  position: relative;
  width: 100%;
  max-width: 1535px;
  min-height: 1024px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 250, 241, 0.82) 0, rgba(255, 250, 241, 0.34) 36%, rgba(252, 245, 236, 0) 62%),
    var(--services-bg);
  color: var(--services-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.thj-services-inner {
  position: relative;
  z-index: 1;
  padding: 25px 47px 0;
}

.thj-services-header {
  max-width: 1240px;
  margin: 0 auto 37px;
  text-align: center;
}

.thj-services-ornament {
  display: grid;
  grid-template-columns: 71px 51px 71px;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0 auto 8px;
}

.thj-services-ornament span {
  display: block;
  width: 71px;
  height: 1px;
  background: var(--services-gold);
  opacity: 0.82;
}

.thj-services-ornament img {
  width: 51px;
  height: 30px;
  object-fit: contain;
}

.thj-services-eyebrow {
  margin: 0 0 2px;
  color: var(--services-rust);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.thj-services-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--services-ink);
}

.thj-services-rule {
  display: flex;
  justify-content: center;
  margin: 24px auto 17px;
}

.thj-services-rule span {
  position: relative;
  display: block;
  width: 145px;
  height: 1px;
  background: var(--services-gold);
}

.thj-services-rule span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-circle);
  background: var(--services-gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 17px var(--services-bg);
}

.thj-services-subhead {
  margin: 0;
  color: var(--services-body);
  font-size: 21px;
  line-height: 1.52;
  font-weight: 400;
}

.thj-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thj-service-card {
  --service-icon-x: -8px;
  position: relative;
  min-height: 558px;
  overflow: hidden;
  border: 1px solid var(--services-border);
  border-radius: var(--radius-lg);
  background: var(--services-card);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: 224px 1fr;
}

.thj-service-photo {
  width: 100%;
  height: 224px;
  object-fit: cover;
  object-position: center;
}

.thj-service-icon {
  position: absolute;
  top: 181px;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-circle);
  background: var(--services-card);
  transform: translateX(calc(-50% + var(--service-icon-x)));
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(70, 45, 20, 0.08));
}

.thj-service-card:nth-child(1) {
  --service-icon-x: -6px;
}

.thj-service-card:nth-child(3) {
  --service-icon-x: -10px;
}

.thj-service-card:nth-child(4) {
  --service-icon-x: -16px;
}

.thj-service-content {
  display: grid;
  grid-template-rows: 64px 29px 1fr 53px;
  justify-items: center;
  padding: 40px 36px 22px;
  text-align: center;
}

.thj-service-content h3 {
  align-self: end;
  margin: 0;
  color: var(--services-ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.thj-service-divider {
  align-self: center;
  width: 44px;
  height: 1px;
  background: var(--services-gold);
}

.thj-service-content p {
  align-self: start;
  margin: 0;
  color: var(--services-body);
  font-size: 16px;
  line-height: 1.72;
}

.thj-service-link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 32px;
  color: var(--services-rust);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.thj-service-link span {
  font-size: 25px;
  font-weight: 400;
  line-height: 0.75;
}

.thj-service-link:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .thj-services {
    min-height: 0;
    overflow: visible;
  }

  .thj-services-inner {
    padding: 56px 24px;
  }

  .thj-services-header {
    margin-bottom: 32px;
  }

  .thj-services-title {
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1.02;
  }

  .thj-services-subhead {
    font-size: 18px;
  }

  .thj-services-subhead br {
    display: none;
  }

  .thj-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
  }

  .thj-service-link {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .thj-services-inner {
    padding: 44px 18px;
  }

  .thj-services-ornament {
    grid-template-columns: 48px 51px 48px;
    gap: 18px;
    margin-bottom: 10px;
  }

  .thj-services-ornament span {
    width: 48px;
  }

  .thj-services-eyebrow {
    font-size: 15px;
    letter-spacing: 0.22em;
    margin-bottom: 9px;
  }

  .thj-services-title {
    font-size: 40px;
  }

  .thj-services-rule {
    margin: 18px auto 17px;
  }

  .thj-services-subhead {
    font-size: 16px;
    line-height: 1.55;
  }

  .thj-services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .thj-service-card {
    min-height: 0;
    grid-template-rows: 198px auto;
  }

  .thj-service-photo {
    height: 198px;
  }

  .thj-service-icon {
    top: 156px;
    width: 84px;
    height: 84px;
  }

  .thj-service-content {
    grid-template-rows: auto 30px auto auto;
    padding: 56px 26px 25px;
    gap: 0;
  }

  .thj-service-content h3 {
    align-self: auto;
    font-size: 30px;
  }

  .thj-service-content p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .thj-service-link {
    width: 100%;
    min-height: 44px;
    margin-top: 22px;
    border: 1px solid rgba(181, 70, 32, 0.25);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.72);
    gap: 18px;
  }
}

/* ============================================================
   Healing Journey — Testimonials section (added 2026-05-13)
   Owns: .thj-testimonials and descendants
   ============================================================ */
.thj-testimonials {
  /* testimonials is an "odd" section in the alternation rhythm → surface.base.
     Section-prefixed vars retained as aliases. */
  --testimonials-bg: var(--color-surface-base);
  --testimonials-card: var(--color-surface-elevated);
  --testimonials-border: var(--color-line-subtle);
  --testimonials-ink: var(--color-ink-primary);
  --testimonials-body: var(--color-ink-secondary);
  --testimonials-rust: var(--color-brand-rust);
  --testimonials-gold: var(--color-brand-gold);

  position: relative;
  width: 100%;
  max-width: 1535px;
  min-height: 1024px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 241, 0.82) 0, rgba(255, 250, 241, 0.34) 38%, rgba(252, 245, 236, 0) 64%),
    var(--testimonials-bg);
  color: var(--testimonials-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.thj-testimonials-inner {
  position: relative;
  z-index: 1;
  padding: 57px 47px 0;
}

.thj-testimonials-header {
  max-width: 1000px;
  margin: 0 auto 55px;
  text-align: center;
}

.thj-testimonials-ornament {
  display: grid;
  grid-template-columns: 60px 51px 60px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 30px;
}

.thj-testimonials-ornament span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--testimonials-gold);
  opacity: 0.9;
}

.thj-testimonials-ornament img {
  width: 51px;
  height: 30px;
  object-fit: contain;
}

.thj-testimonials-eyebrow {
  margin: 0 0 6px;
  color: var(--testimonials-rust);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.thj-testimonials-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--testimonials-ink);
}

.thj-testimonials-rule {
  display: flex;
  justify-content: center;
  margin: 25px auto 17px;
}

.thj-testimonials-rule span {
  position: relative;
  display: block;
  width: 145px;
  height: 1px;
  background: var(--testimonials-gold);
}

.thj-testimonials-rule span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--testimonials-gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px var(--testimonials-bg);
}

.thj-testimonials-subhead {
  margin: 0;
  color: var(--testimonials-body);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.thj-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thj-testimonial-card {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--testimonials-border);
  border-radius: var(--radius-lg);
  background: var(--testimonials-card);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: 59px 211px 56px 86px;
  justify-items: center;
  padding: 42px 40px 35px; /* drift: bespoke testimonial-card padding */
  text-align: center;
}

.thj-testimonial-quote {
  align-self: start;
  display: block;
  height: 54px;
  color: var(--testimonials-rust);
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 700;
  line-height: 0.82;
}

.thj-testimonial-copy {
  align-self: start;
  max-width: none;
  margin: 0;
  color: var(--testimonials-body);
  font-size: 18px;
  line-height: 1.86;
  font-weight: 400;
  white-space: nowrap;
}

.thj-testimonial-divider {
  align-self: center;
  display: block;
  width: 98px;
  height: 1px;
  background: var(--testimonials-gold);
}

.thj-testimonial-person {
  align-self: end;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: center;
  justify-content: start;
  text-align: left;
}

.thj-testimonial-person img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.thj-testimonial-person p {
  margin: 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .thj-testimonial-card {
    overflow: visible;
    grid-template-rows: 59px minmax(211px, auto) 56px 86px;
    padding: 42px 24px 35px;
  }
  .thj-testimonial-copy {
    font-size: 16px;
    line-height: 1.78;
    white-space: normal;
  }
  .thj-testimonial-person {
    grid-template-columns: 60px minmax(0, 1fr);
  }
  .thj-testimonial-person img {
    width: 60px;
    height: 60px;
  }
  .thj-testimonial-person p {
    font-size: 21px;
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .thj-testimonials {
    min-height: 0;
    overflow: visible;
  }

  .thj-testimonials-inner {
    padding: 56px 24px;
  }

  .thj-testimonials-header {
    margin-bottom: 36px;
  }

  .thj-testimonials-title {
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1.02;
  }

  .thj-testimonials-subhead {
    font-size: 19px;
  }

  .thj-testimonials-subhead br {
    display: none;
  }

  .thj-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
  }

  .thj-testimonial-card {
    grid-template-rows: 58px 210px 54px 82px;
  }
}

@media (max-width: 640px) {
  .thj-testimonials-inner {
    padding: 44px 18px;
  }

  .thj-testimonials-ornament {
    grid-template-columns: 48px 51px 48px;
    gap: 18px;
    margin-bottom: 10px;
  }

  .thj-testimonials-ornament span {
    width: 48px;
  }

  .thj-testimonials-eyebrow {
    font-size: 15px;
    letter-spacing: 0.22em;
    margin-bottom: 9px;
  }

  .thj-testimonials-title {
    font-size: 40px;
  }

  .thj-testimonials-rule {
    margin: 18px auto 17px;
  }

  .thj-testimonials-subhead {
    font-size: 16px;
    line-height: 1.55;
  }

  .thj-testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .thj-testimonial-card {
    min-height: 0;
    grid-template-rows: auto auto 42px auto;
    padding: 32px 26px 28px;
  }

  .thj-testimonial-quote {
    height: 48px;
    font-size: 76px;
  }

  .thj-testimonial-copy {
    max-width: 300px;
    font-size: 16px;
    line-height: 1.68;
    white-space: normal;
  }

  .thj-testimonial-person {
    max-width: 270px;
    grid-template-columns: 60px 1fr;
    justify-self: center;
  }

  .thj-testimonial-person img {
    width: 60px;
    height: 60px;
  }

  .thj-testimonial-person p {
    font-size: 23px;
  }
}

/* ============================================================
   Healing Journey — What Brings You Here section (added 2026-05-13)
   Owns: .thj-what-brings-you-here and descendants
   ============================================================ */
.thj-what-brings-you-here {
  /* what-brings-you-here is an "odd" section in the alternation rhythm → surface.base.
     Section-prefixed vars retained as aliases. */
  --wbyh-bg: var(--color-surface-base);
  --wbyh-card: var(--color-surface-elevated);
  --wbyh-card-border: var(--color-line-subtle);
  --wbyh-ink: var(--color-ink-primary);
  --wbyh-ink-soft: var(--color-ink-secondary);
  --wbyh-link: var(--color-brand-rust);

  position: relative;
  width: 100%;
  max-width: 1535px;
  margin: 0 auto;
  min-height: 0;
  padding: 0;
  isolation: isolate;
  background: var(--wbyh-bg);
  color: var(--wbyh-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow: visible;
}

.thj-what-brings-you-here *,
.thj-what-brings-you-here *::before,
.thj-what-brings-you-here *::after { box-sizing: border-box; }

.thj-wbyh-plate {
  display: none;
}

.thj-wbyh-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto;
  padding: 66px 43px clamp(92px, 8vw, 132px);
}

.thj-wbyh-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 41px;
}
.thj-wbyh-ornament {
  display: block;
  width: 204px;
  height: auto;
  margin: 0 auto 26px;
}
.thj-wbyh-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--wbyh-ink);
  margin: 0 0 var(--space-4);
}
.thj-wbyh-title::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  background: var(--color-brand-gold);
  margin: 23px auto 0;
}
.thj-wbyh-sub {
  font-size: 22px;
  line-height: 1.55;
  color: var(--wbyh-ink-soft);
  margin: 0;
}

.thj-wbyh-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
.thj-wbyh-card {
  background: var(--wbyh-card);
  border: 1px solid var(--wbyh-card-border);
  border-radius: var(--radius-lg);
  padding: 32px var(--space-5) 30px; /* drift: bespoke vertical pillar padding */
  text-align: center;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-items: center;
  min-height: 430px;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.thj-wbyh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.thj-wbyh-card-icon {
  width: 126px;
  height: 126px;
  display: block;
  margin: 0 auto 0;
}
.thj-wbyh-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.02;
  color: var(--wbyh-ink);
  margin: 0;
  min-height: 58px;
  letter-spacing: 0;
}
.thj-wbyh-card-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-brand-gold);
  margin: 22px auto 0;
}
.thj-wbyh-nowrap {
  white-space: nowrap;
}
.thj-wbyh-card-desc {
  font-size: 17px;
  line-height: 1.67;
  color: var(--wbyh-ink-soft);
  margin: 21px 0 0;
  align-self: start;
}
.thj-wbyh-desc-mobile {
  display: none;
}
.thj-wbyh-card-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--wbyh-link);
  text-decoration: none;
  letter-spacing: 0;
  align-self: end;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 18px;
}
.thj-wbyh-card-link:hover { text-decoration: underline; }

.thj-wbyh-card[hidden] {
  display: none;
}

.thj-wbyh-expand-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 42px);
}

.thj-wbyh-expand-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--wbyh-link) 72%, transparent);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 241, 0.82);
  color: var(--wbyh-link);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.thj-wbyh-expand-btn:hover,
.thj-wbyh-expand-btn:focus-visible {
  background: rgba(255, 250, 241, 0.96);
  border-color: var(--wbyh-link);
  transform: translateY(-1px);
}

.thj-wbyh-expand-btn:focus-visible {
  outline: 3px solid rgba(201, 148, 59, 0.42);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .thj-what-brings-you-here {
    min-height: 0;
    padding-bottom: 66px;
    overflow: visible;
  }

  .thj-wbyh-inner {
    max-width: 780px;
    padding: 58px 22px 0;
  }

  .thj-wbyh-header {
    margin-bottom: 34px;
  }

  .thj-wbyh-ornament {
    width: 124px;
    margin-bottom: 18px;
  }

  .thj-wbyh-title {
    font-size: clamp(40px, 7vw, 56px);
    line-height: 1;
    transform: none;
    margin-bottom: 16px;
  }

  .thj-wbyh-title::after {
    width: 58px;
    margin-top: 17px;
  }

  .thj-wbyh-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.55;
  }

  .thj-wbyh-sub br {
    display: none;
  }

  .thj-wbyh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
  }

  .thj-wbyh-card {
    min-width: 0;
    min-height: 0;
    padding: var(--space-5) var(--space-4) 22px; /* drift: bottom 22px optical */
    grid-template-rows: auto auto 1fr auto;
    border-radius: var(--radius-md);
  }

  .thj-wbyh-card-icon {
    width: 88px;
    height: 88px;
  }

  .thj-wbyh-card-label {
    min-height: 52px;
    font-size: 22px;
  }

  .thj-wbyh-card-label::after {
    margin-top: 14px;
  }

  .thj-wbyh-card-desc {
    font-size: 15px;
    line-height: 1.56;
    margin-top: 17px;
  }

  .thj-wbyh-card-link {
    min-height: 44px;
    margin-top: 18px;
    font-size: 14px;
  }

  .thj-wbyh-expand-wrap {
    margin-top: 28px;
  }

  .thj-wbyh-nowrap { white-space: normal; }
}

@media (max-width: 640px) {
  .thj-what-brings-you-here {
    padding-bottom: 84px;
  }

  .thj-wbyh-inner {
    padding: 46px 18px 0;
  }

  .thj-wbyh-header {
    margin-bottom: 26px;
  }

  .thj-wbyh-ornament {
    width: 96px;
    margin-bottom: 16px;
  }

  .thj-wbyh-title {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .thj-wbyh-title::after {
    width: 48px;
    margin-top: 15px;
  }

  .thj-wbyh-sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .thj-wbyh-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .thj-wbyh-expand-wrap {
    margin-top: 22px;
  }

  .thj-wbyh-expand-btn {
    width: min(100%, 280px);
    min-height: 48px;
    font-size: 14px;
  }

  .thj-wbyh-card {
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 15px;
    row-gap: 0;
    padding: 16px 52px 16px 16px;
    text-align: left;
    position: relative;
  }

  .thj-wbyh-card-icon {
    width: 68px;
    height: 68px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .thj-wbyh-card-label {
    min-height: 0;
    font-size: 22px;
    line-height: 1.02;
  }

  .thj-wbyh-card-label::after {
    width: 34px;
    margin: 11px 0 0;
  }

  .thj-wbyh-card-desc {
    grid-column: 2;
    font-size: 14.5px;
    line-height: 1.35;
    margin-top: 8px;
  }

  .thj-wbyh-desc-full {
    display: none;
  }

  .thj-wbyh-desc-mobile {
    display: inline;
  }

  .thj-wbyh-card-link {
    position: absolute;
    inset: 0 auto auto 0;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    margin: 0;
    border: 0;
    border-radius: var(--radius-md);
    background: transparent;
    z-index: 2;
  }

  .thj-wbyh-card-link::after {
    content: "\2192";
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--wbyh-link);
    font-size: 24px;
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .thj-wbyh-inner {
    padding-inline: 16px;
  }

  .thj-wbyh-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 13px;
    padding: 15px 48px 15px 15px;
  }

  .thj-wbyh-card-icon {
    width: 58px;
    height: 58px;
  }

  .thj-wbyh-card-label {
    font-size: 20px;
  }

  .thj-wbyh-card-desc {
    font-size: 14px;
  }
}

/* Testimonials composition refresh — sourced from Care Experience reference */
.thj-testimonials {
  /* Re-asserted aliases (this rule wins via cascade for the refresh composition). */
  --testimonials-bg: var(--color-surface-base);
  --testimonials-card: rgba(255, 250, 244, 0.86);
  --testimonials-border: var(--color-line-subtle);
  --testimonials-ink: var(--color-ink-primary);
  --testimonials-body: var(--color-ink-secondary);
  --testimonials-rust: var(--color-brand-rust);
  --testimonials-gold: var(--color-brand-gold);

  min-height: 1024px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 250, 241, 0.88) 0, rgba(255, 250, 241, 0.48) 35%, rgba(252, 245, 236, 0) 64%),
    var(--testimonials-bg);
  overflow: hidden;
}

.thj-testimonials-inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 36px clamp(44px, 6.75vw, 104px) 28px;
}

.thj-testimonials-header {
  max-width: 1120px;
  margin: 0 auto 38px;
}

.thj-testimonials-ornament {
  grid-template-columns: 53px 50px 53px;
  gap: 31px;
  margin: 0 auto 20px;
}

.thj-testimonials-ornament span {
  width: 53px;
}

.thj-testimonials-eyebrow {
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: 0.31em;
}

.thj-testimonials-title {
  font-size: clamp(54px, 4.75vw, 73px);
  line-height: 0.96;
}

.thj-testimonials-rule {
  margin: 20px auto 15px;
}

.thj-testimonials-subhead {
  font-size: clamp(19px, 1.56vw, 24px);
  line-height: 1.45;
}

.thj-testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.57fr) minmax(330px, 1fr);
  gap: clamp(24px, 2.86vw, 44px);
  align-items: start;
}

.thj-testimonial-feature,
.thj-testimonial-side-card,
.thj-testimonial-note {
  border: 1px solid rgba(234, 220, 200, 0.78);
  border-radius: var(--radius-md);
  background: var(--testimonials-card);
  box-shadow: var(--shadow-md);
}

.thj-testimonial-feature {
  position: relative;
  height: 568px;
  min-height: 568px;
  overflow: hidden;
}

.thj-testimonial-feature-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 61.3%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thj-testimonial-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.92) 30%, rgba(255, 250, 244, 0.25) 56%, rgba(255, 250, 244, 0) 74%);
  pointer-events: none;
}

.thj-testimonial-feature-content {
  position: relative;
  z-index: 1;
  width: min(520px, 64%);
  height: 100%;
  min-height: 0;
  padding: 58px 52px 48px 64px;
  display: grid;
  grid-template-rows: 66px 1fr 42px 72px;
  align-items: start;
}

.thj-testimonial-quote {
  height: auto;
  color: var(--testimonials-rust);
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 700;
  line-height: 0.68;
}

.thj-testimonial-feature-copy,
.thj-testimonial-side-copy {
  margin: 0;
  color: var(--testimonials-body);
  font-family: var(--font-body);
  font-weight: 400;
}

.thj-testimonial-feature-copy {
  max-width: 468px;
  font-family: var(--font-display);
  font-size: clamp(25px, 1.95vw, 30px);
  line-height: 1.31;
}

.thj-testimonial-divider {
  align-self: center;
  width: 53px;
  height: 1px;
  background: var(--testimonials-gold);
}

.thj-testimonial-person {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  text-align: left;
}

.thj-testimonial-person img {
  width: 58px;
  height: 58px;
}

.thj-testimonial-person span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.thj-testimonial-person strong {
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.thj-testimonial-person em {
  color: var(--testimonials-rust);
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.thj-testimonial-side-list {
  display: grid;
  gap: 14px;
}

.thj-testimonial-side-card {
  height: 277px;
  min-height: 0;
  padding: 25px 44px 24px;
  display: grid;
  grid-template-rows: 42px minmax(91px, auto) 22px 58px;
  align-items: start;
}

.thj-testimonial-side-card .thj-testimonial-quote {
  font-size: 62px;
}

.thj-testimonial-side-copy {
  max-width: 405px;
  font-size: clamp(16px, 1.17vw, 18px);
  line-height: 1.54;
}

.thj-testimonial-note {
  width: min(784px, 72%);
  min-height: 82px;
  margin: 24px auto 0;
  padding: 18px 28px 18px 30px;
  display: grid;
  grid-template-columns: 36px 1px minmax(0, 1fr);
  gap: 27px;
  align-items: center;
}

.thj-testimonial-note img {
  width: 36px;
  height: auto;
}

.thj-testimonial-note-divider {
  width: 1px;
  height: 45px;
  background: var(--testimonials-gold);
  opacity: 0.75;
}

.thj-testimonial-note p {
  margin: 0;
  color: var(--testimonials-body);
  font-size: 15px;
  line-height: 1.35;
}

.thj-testimonial-note span,
.thj-testimonial-note em {
  display: block;
}

.thj-testimonial-note em {
  margin-top: 6px;
  color: var(--testimonials-rust);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

@media (max-width: 1100px) {
  .thj-testimonials {
    min-height: 0;
  }

  .thj-testimonials-layout {
    grid-template-columns: 1fr;
    max-width: 784px;
    margin: 0 auto;
  }

  .thj-testimonial-side-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thj-testimonial-note {
    width: min(784px, 100%);
  }
}

@media (max-width: 720px) {
  .thj-testimonials-inner {
    padding: 44px 18px;
  }

  .thj-testimonials-header {
    margin-bottom: 30px;
  }

  .thj-testimonials-eyebrow {
    font-size: 13px;
  }

  .thj-testimonials-title {
    font-size: 42px;
    line-height: 1.02;
  }

  .thj-testimonials-subhead {
    font-size: 16px;
  }

  .thj-testimonial-feature {
    height: auto;
    min-height: 0;
    padding-top: 240px;
  }

  .thj-testimonial-feature-photo {
    inset: 0 0 auto 0;
    width: 100%;
    height: 300px;
    object-position: center bottom;
  }

  .thj-testimonial-feature::after {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, rgba(255, 250, 244, 0.94) 260px, rgba(255, 250, 244, 0.98) 100%);
  }

  .thj-testimonial-feature-content {
    width: 100%;
    min-height: 0;
    padding: 36px 28px 30px;
    grid-template-rows: 52px auto 36px auto;
  }

  .thj-testimonial-feature-copy {
    max-width: none;
    font-size: 25px;
  }

  .thj-testimonial-side-list {
    grid-template-columns: 1fr;
  }

  .thj-testimonial-side-card {
    min-height: 0;
    padding: 30px 28px 28px;
    grid-template-rows: 42px auto 34px auto;
  }

  .thj-testimonial-side-copy {
    max-width: none;
    font-size: 16px;
  }

  .thj-testimonial-person strong {
    font-size: 22px;
  }

  .thj-testimonial-note {
    min-height: 0;
    grid-template-columns: 34px 1px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 18px;
  }
}

/* ============================================================
   Healing Journey — Reach Out section
   Owns: .thj-reach-out and descendants
   ============================================================ */
.thj-reach-out {
  --reach-bg: var(--color-surface-base);
  --reach-ink: var(--color-ink-primary);
  --reach-body: var(--color-ink-secondary);
  --reach-rust: var(--color-brand-rust);
  --reach-rust-dark: var(--color-brand-rust-dark);
  --reach-gold: var(--color-brand-gold);
  --reach-card: rgba(255, 250, 244, 0.76);
  --reach-border: rgba(227, 210, 187, 0.78);

  position: relative;
  width: 100%;
  max-width: 1536px;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--reach-bg);
  color: var(--reach-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.thj-reach-out::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("./public/images/healing-journey/reach-out/reach-out-assets.webp") center / 100% 100% no-repeat;
}

.thj-reach-out::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.thj-reach-out *,
.thj-reach-out *::before,
.thj-reach-out *::after { box-sizing: border-box; }

.thj-reach-out-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.thj-reach-out-header {
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  text-align: center;
}

.thj-reach-out-ornament {
  display: grid;
  grid-template-columns: 43px 51px 43px;
  justify-content: center;
  align-items: center;
  gap: 23px;
  margin: 0 auto 29px;
}

.thj-reach-out-ornament span {
  display: block;
  width: 43px;
  height: 1px;
  background: var(--reach-gold);
}

.thj-reach-out-ornament img {
  width: 51px;
  height: 30px;
  object-fit: contain;
}

.thj-reach-out-eyebrow {
  margin: 0 0 5px;
  color: var(--reach-rust-dark);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1;
  text-transform: uppercase;
}

.thj-reach-out-title {
  margin: 0;
  color: var(--reach-ink);
  font-family: var(--font-display);
  font-size: clamp(56px, 4.95vw, 76px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.thj-reach-out-rule {
  display: flex;
  justify-content: center;
  margin: 34px auto 0;
}

.thj-reach-out-rule span {
  position: relative;
  display: block;
  width: 89px;
  height: 1px;
  background: var(--reach-gold);
}

.thj-reach-out-rule span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--reach-gold);
  transform: translate(-50%, -50%);
}

.thj-reach-out-intro {
  position: absolute;
  top: 25%;
  left: 6.5%;
  width: 340px;
}

.thj-reach-out-intro-title {
  max-width: 310px;
  margin: 0;
  color: var(--reach-rust-dark);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.08vw, 32px);
  font-weight: 700;
  line-height: 1.42;
}

.thj-reach-out-intro-rule {
  display: block;
  width: 58px;
  height: 1px;
  margin: 25px 0 25px;
  background: var(--reach-gold);
}

.thj-reach-out-intro-copy {
  margin: 0;
  color: var(--reach-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.thj-reach-out-steps {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thj-reach-out-step {
  position: absolute;
  left: 50.9%;
  width: 470px;
  color: var(--reach-body);
}

.thj-reach-out-step-1 { top: 26.25%; }
.thj-reach-out-step-2 { top: 39.55%; width: 490px; }
.thj-reach-out-step-3 { top: 52.85%; }
.thj-reach-out-step-4 { top: 66.15%; }
.thj-reach-out-step-5 { top: 79.1%; }

.thj-reach-out-mobile-number {
  display: none;
}

.thj-reach-out-step h3 {
  margin: 0 0 var(--space-1);
  color: var(--reach-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 1.82vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.thj-reach-out-step p {
  margin: 0;
  color: var(--reach-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.58;
}

.thj-reach-out-note {
  position: absolute;
  left: 32.05%;
  top: 89.6%;
  width: 585px;
}

.thj-reach-out-note p {
  margin: 0;
  color: var(--reach-body);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.35;
}

.thj-reach-out-note span,
.thj-reach-out-note em {
  display: block;
}

.thj-reach-out-note p > span {
  color: var(--reach-rust-dark);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.24vw, 19px);
  font-style: normal;
}

.thj-reach-out-note em {
  margin-top: 6px;
  color: var(--reach-body);
  font-style: normal;
}

.thj-reach-out-note em span {
  display: inline;
  color: var(--reach-rust-dark);
  font-size: 25px;
  line-height: 0;
  vertical-align: -0.15em;
}

@media (max-width: 1100px) {
  .thj-reach-out {
    max-width: none;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    background:
      radial-gradient(circle at 50% 22%, rgba(255, 250, 244, 0.9), rgba(255, 250, 244, 0.2) 48%, rgba(252, 245, 236, 0) 70%),
      var(--reach-bg);
  }

  .thj-reach-out::before {
    display: none;
  }

  .thj-reach-out-inner,
  .thj-reach-out-header,
  .thj-reach-out-intro,
  .thj-reach-out-steps,
  .thj-reach-out-step,
  .thj-reach-out-note {
    position: static;
  }

  .thj-reach-out-inner {
    padding: 54px 24px 58px;
  }

  .thj-reach-out-header {
    max-width: 780px;
    margin: 0 auto 34px;
  }

  .thj-reach-out-title {
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1;
  }

  .thj-reach-out-rule {
    margin-top: 22px;
  }

  .thj-reach-out-intro {
    width: min(640px, 100%);
    margin: 0 auto 32px;
    text-align: center;
    display: grid;
    justify-items: center;
  }

  .thj-reach-out-intro-title {
    font-size: 30px;
    line-height: 1.28;
  }

  .thj-reach-out-intro-rule {
    margin: 20px auto;
  }

  .thj-reach-out-steps {
    display: grid;
    gap: 14px;
    width: min(760px, 100%);
    margin: 0 auto;
    list-style: none;
  }

  .thj-reach-out-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--reach-border);
    border-radius: var(--radius-md);
    background: var(--reach-card);
    box-shadow: var(--shadow-md);
  }

  .thj-reach-out-mobile-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius-circle);
    /* drift: rust gradient on number chip — bible forbids gradient CTA but this
       is decorative numbering, not a CTA. Keep gradient; collapse to rust pair. */
    background: linear-gradient(180deg, var(--color-brand-rust) 0%, var(--color-brand-rust-dark) 100%);
    color: var(--color-ink-on-dark);
    font-weight: 700;
  }

  .thj-reach-out-step h3 {
    font-size: 26px;
  }

  .thj-reach-out-step p {
    font-size: 16px;
  }

  .thj-reach-out-note {
    width: min(760px, 100%);
    margin: var(--space-4) auto 0;
    padding: var(--space-4) 22px; /* drift: optical horizontal padding */
    border: 1px solid var(--reach-border);
    border-radius: var(--radius-md);
    background: var(--reach-card);
    text-align: center;
  }
}

@media (max-width: 640px) {
  .thj-reach-out-inner {
    padding: 44px 18px 48px;
  }

  .thj-reach-out-ornament {
    grid-template-columns: 42px 48px 42px;
    gap: 18px;
  }

  .thj-reach-out-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }

  .thj-reach-out-title {
    font-size: 40px;
  }

  .thj-reach-out-intro-title {
    font-size: 28px;
  }

  .thj-reach-out-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 20px 18px;
  }

  .thj-reach-out-mobile-number {
    width: 38px;
    height: 38px;
  }

  .thj-reach-out-step h3 {
    font-size: 24px;
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .thj-reach-out-step p {
    line-height: 1.55;
  }

  .thj-reach-out-note {
    padding: 20px 18px;
    text-align: left;
  }

  .thj-reach-out-note p > span {
    color: var(--reach-rust-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
  }

  .thj-reach-out-note em {
    margin-top: 10px;
    color: var(--reach-body);
    font-size: 15px;
    line-height: 1.55;
  }

  .thj-reach-out-note em span {
    font-size: 21px;
  }
}

/* ============================================================
   Healing Journey — Sticky consultation CTA
   ============================================================ */
.thj-sticky-cta {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(620px, calc(100vw - 36px));
  padding: 14px 15px 14px 22px; /* drift: bespoke sticky CTA padding */
  border: 1px solid rgba(185, 90, 45, 0.22);
  border-radius: var(--radius-md);
  /* drift: backdrop-filter glass panel — forbidden.md flags glassmorphism. Keep
     translucent cream + blur for visibility over content; flag for design review. */
  background: rgba(255, 250, 243, 0.92);
  color: var(--color-ink-primary);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 34px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

.thj-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thj-sticky-cta-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.thj-sticky-cta-kicker {
  color: var(--color-brand-rust-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thj-sticky-cta-text {
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.thj-sticky-cta-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 9px;
  align-items: center;
}

.thj-sticky-cta-primary,
.thj-sticky-cta-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.thj-sticky-cta-primary {
  border: 1px solid var(--color-brand-rust);
  background: var(--color-brand-rust);
  color: var(--color-ink-on-dark);
}

.thj-sticky-cta-secondary {
  border: 1px solid rgba(170, 74, 34, 0.36);
  background: rgba(250, 242, 220, 0.66);
  color: var(--color-brand-rust-dark);
}

.thj-sticky-cta-primary:hover,
.thj-sticky-cta-primary:focus-visible {
  background: var(--color-brand-rust-dark);
  border-color: var(--color-brand-rust-dark);
  color: var(--color-ink-on-dark);
  transform: translateY(-1px);
}

.thj-sticky-cta-secondary:hover,
.thj-sticky-cta-secondary:focus-visible {
  background: rgba(216, 215, 187, 0.54);
  border-color: rgba(79, 90, 59, 0.34);
  color: var(--color-ink-primary);
  transform: translateY(-1px);
}

.thj-sticky-cta-primary:focus-visible,
.thj-sticky-cta-secondary:focus-visible {
  outline: 3px solid rgba(201, 148, 59, 0.45);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .thj-sticky-cta {
    left: var(--space-2);
    right: var(--space-2);
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px; /* drift: compact sticky padding */
    border-radius: var(--radius-lg);
  }

  .thj-sticky-cta-copy {
    display: none;
  }

  .thj-sticky-cta-actions {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 8px;
  }

  .thj-sticky-cta-primary,
  .thj-sticky-cta-secondary {
    min-height: 48px;
    padding: 0 12px;
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .thj-sticky-cta-primary,
  .thj-sticky-cta-secondary {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thj-sticky-cta,
  .thj-sticky-cta-primary,
  .thj-sticky-cta-secondary {
    transition: none;
  }
}

/* ============================================================
   Healing Journey — Resources section
   ============================================================ */
.thj-resources {
  /* resources is an "even" section in the alternation rhythm → surface.elevated.
     Section-prefixed vars retained as aliases. */
  --resources-bg: var(--color-surface-elevated);
  --resources-panel: var(--color-surface-base);
  --resources-ink: var(--color-ink-primary);
  --resources-body: var(--color-ink-secondary);
  --resources-rust: var(--color-brand-rust);
  --resources-line: rgba(79, 90, 59, 0.18);

  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(244, 232, 216, 0.88)),
    var(--resources-bg);
  color: var(--resources-ink);
  padding: clamp(68px, 7vw, 108px) clamp(20px, 4vw, 56px);
  font-family: var(--font-body);
}

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

.thj-resources-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.thj-resources-header {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.thj-resources-eyebrow {
  margin: 0 0 12px;
  color: var(--resources-rust);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thj-resources-title {
  margin: 0;
  color: var(--resources-ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.98;
}

.thj-resources-subhead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--resources-body);
  font-size: 17px;
  line-height: 1.7;
}

.thj-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.thj-resource-card {
  min-height: 230px;
  border: 1px solid var(--resources-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.78);
  padding: clamp(22px, 2.3vw, 30px);
  box-shadow: var(--shadow-md);
}

.thj-resource-card h3 {
  margin: 0;
  color: var(--resources-ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.thj-resource-card p {
  margin: 16px 0 0;
  color: var(--resources-body);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .thj-resources-grid {
    grid-template-columns: 1fr;
  }

  .thj-resource-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .thj-resources {
    padding: 60px 18px 68px;
  }

  .thj-resources-title {
    font-size: clamp(38px, 12vw, 52px);
  }
}

/* ============================================================
   Healing Journey — Contact section
   ============================================================ */
.thj-contact {
  /* contact is an "odd" section in the alternation rhythm → surface.base.
     Section-prefixed vars retained as aliases. */
  --contact-bg: var(--color-surface-base);
  --contact-panel: var(--color-surface-elevated);
  --contact-ink: var(--color-ink-primary);
  --contact-body: var(--color-ink-secondary);
  --contact-rust: var(--color-brand-rust);
  --contact-rust-dark: var(--color-brand-rust-dark);
  --contact-gold: var(--color-brand-gold);
  --contact-line: rgba(185, 90, 45, 0.22);

  position: relative;
  overflow: hidden;
  background: var(--contact-bg);
  color: var(--contact-ink);
  padding: clamp(76px, 8vw, 124px) clamp(20px, 4vw, 56px);
  font-family: var(--font-body);
}

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

.thj-contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
}

.thj-contact-copy {
  max-width: 500px;
}

.thj-contact-ornament {
  display: inline-grid;
  grid-template-columns: 72px 34px 72px;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.thj-contact-ornament span {
  display: block;
  height: 1px;
  background: var(--contact-gold);
}

.thj-contact-ornament img {
  width: 34px;
  height: 24px;
  object-fit: contain;
}

.thj-contact-eyebrow {
  margin: 0 0 12px;
  color: var(--contact-rust-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thj-contact-title {
  margin: 0;
  color: var(--contact-ink);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.96;
}

.thj-contact-lede {
  margin: 22px 0 0;
  color: var(--contact-body);
  font-size: 18px;
  line-height: 1.75;
}

.thj-contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.thj-contact-method {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 70px;
  border: 1px solid rgba(79, 90, 59, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.58);
  padding: var(--space-2) 14px; /* drift: optical horizontal padding */
  box-shadow: var(--shadow-md);
}

.thj-contact-method:hover,
.thj-contact-method:focus-visible {
  border-color: rgba(170, 74, 34, 0.38);
  background: rgba(255, 250, 241, 0.78);
}

.thj-contact-method:focus-visible {
  outline: 3px solid rgba(201, 148, 59, 0.42);
  outline-offset: 3px;
}

.thj-contact-method-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius-pill);
  /* drift: #d8d7bb sage tint — close to brand.olive @ ~20% over cream. Kept as
     literal so the chip doesn't shift hue. Flag for design review. */
  background: #d8d7bb;
  color: var(--contact-rust-dark);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.thj-contact-method-icon-text {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.thj-contact-method strong {
  display: block;
  color: var(--contact-ink);
  font-size: 14px;
  line-height: 1.2;
}

.thj-contact-method em {
  display: block;
  margin-top: 4px;
  color: var(--contact-body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.thj-contact-form {
  border: 1px solid var(--contact-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.9);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
}

.thj-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.thj-contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.thj-contact-field-full {
  grid-column: 1 / -1;
}

.thj-contact-field span {
  color: var(--color-ink-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.thj-contact-field input,
.thj-contact-field select,
.thj-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(79, 90, 59, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  color: var(--color-ink-primary);
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  padding: 13px 14px; /* drift: form input compact padding */
}

.thj-contact-field select {
  min-height: 49px;
}

.thj-contact-field textarea {
  min-height: 148px;
  resize: vertical;
}

.thj-contact-field input:focus,
.thj-contact-field select:focus,
.thj-contact-field textarea:focus {
  border-color: rgba(170, 74, 34, 0.72);
  box-shadow: 0 0 0 4px rgba(201, 148, 59, 0.18);
  outline: none;
}

.thj-contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--contact-body);
  font-size: 13px;
  line-height: 1.55;
}

.thj-contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--contact-rust);
}

.thj-contact-form-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.thj-contact-submit {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--contact-rust);
  border-radius: var(--radius-sm);
  background: var(--contact-rust);
  color: var(--color-ink-on-dark);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 22px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.thj-contact-submit:hover,
.thj-contact-submit:focus-visible {
  background: var(--contact-rust-dark);
  border-color: var(--contact-rust-dark);
  transform: translateY(-1px);
}

.thj-contact-submit:focus-visible {
  outline: 3px solid rgba(201, 148, 59, 0.45);
  outline-offset: 3px;
}

.thj-contact-fine-print {
  max-width: 300px;
  margin: 0;
  border: 1px solid rgba(190, 18, 60, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(254, 242, 242, 0.92);
  color: #9f1239;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.42;
  padding: 10px 12px;
}

.thj-contact-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--contact-rust-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.thj-payment-summary {
  --payment-bg: var(--color-surface-elevated);
  --payment-card: rgba(255, 250, 241, 0.78);
  --payment-ink: var(--color-ink-primary);
  --payment-body: var(--color-ink-secondary);
  --payment-rust: var(--color-brand-rust);
  --payment-line: rgba(79, 90, 59, 0.18);

  background:
    linear-gradient(180deg, rgba(244, 232, 216, 0.92), rgba(255, 250, 241, 0.94)),
    var(--payment-bg);
  color: var(--payment-ink);
  padding: clamp(64px, 7vw, 104px) clamp(20px, 4vw, 56px);
  font-family: var(--font-body);
}

.thj-payment-summary *,
.thj-payment-summary *::before,
.thj-payment-summary *::after { box-sizing: border-box; }

.thj-payment-summary-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.thj-payment-summary-header {
  max-width: 780px;
  margin: 0 0 clamp(26px, 4vw, 42px);
}

.thj-payment-summary-eyebrow {
  margin: 0 0 12px;
  color: var(--payment-rust);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thj-payment-summary h2 {
  margin: 0;
  color: var(--payment-ink);
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.thj-payment-summary-header p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--payment-body);
  font-size: 17px;
  line-height: 1.7;
}

.thj-payment-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.thj-payment-summary-card {
  border: 1px solid var(--payment-line);
  border-radius: var(--radius-sm);
  background: var(--payment-card);
  padding: clamp(22px, 2.3vw, 30px);
  box-shadow: var(--shadow-md);
}

.thj-payment-summary-card h3 {
  margin: 0;
  color: var(--payment-ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.thj-payment-summary-card p {
  margin: 16px 0 0;
  color: var(--payment-body);
  font-size: 15px;
  line-height: 1.7;
}

.thj-payment-summary-card strong {
  color: var(--payment-ink);
  font-weight: 700;
}

.thj-insurance-banner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: clamp(20px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--color-brand-gold) 42%, transparent);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(244, 232, 216, 0.82)),
    var(--color-surface-elevated);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-md);
}

.thj-insurance-banner-copy {
  min-width: 0;
}

.thj-insurance-banner-eyebrow {
  margin: 0 0 10px;
  color: var(--payment-rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.thj-insurance-banner h3 {
  margin: 0;
  color: var(--payment-ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.02;
}

.thj-insurance-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thj-insurance-chip-list li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 90, 59, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 241, 0.82);
  color: var(--payment-ink);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 980px) {
  .thj-contact-inner {
    grid-template-columns: 1fr;
  }

  .thj-contact-copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .thj-contact {
    padding: 64px 18px 72px;
  }

  .thj-contact-ornament {
    grid-template-columns: 54px 30px 54px;
  }

  .thj-contact-title {
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .thj-contact-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .thj-contact-form {
    padding: 18px;
  }

  .thj-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .thj-contact-form-footer {
    display: grid;
    gap: 12px;
  }

  .thj-contact-submit {
    width: 100%;
  }

  .thj-contact-fine-print {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .thj-payment-summary-grid {
    grid-template-columns: 1fr;
  }

  .thj-insurance-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .thj-payment-summary {
    padding: 58px 18px 66px;
  }

  .thj-payment-summary h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .thj-insurance-chip-list {
    gap: 8px;
  }

  .thj-insurance-chip-list li {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }
}

/* ============================================================
   Healing Journey — Footer
   ============================================================ */
.thj-footer {
  /* EXPERIMENT 2026-05-16: dark surface treatment per art bible
     (sectionRhythm.exceptions: footer = surface.dark). */
  background: var(--color-surface-dark);
  color: rgba(244, 232, 216, 0.75);
  border-top: 1px solid rgba(244, 232, 216, 0.16);
  padding: var(--space-6) clamp(22px, 4vw, 56px);
  font-family: var(--font-body);
}

.thj-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
}

.thj-footer-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--color-ink-on-dark);
}

.thj-footer-tagline,
.thj-footer-copyright {
  margin: 0;
  color: rgba(244, 232, 216, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.thj-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: var(--color-ink-on-dark);
  font-size: 14px;
}

.thj-footer-nav a:hover {
  color: var(--color-brand-rust);
}

@media (max-width: 900px) {
  .thj-footer-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .thj-footer {
    padding: 30px 22px 34px;
  }

  .thj-footer-name {
    font-size: 23px;
  }

  .thj-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .thj-hero-video {
    display: none;
  }
}

/* ============================================================
   Healing Journey — Service detail pages
   Recipes: section-header, service-card, trust-strip, cta-bar,
   contact-form handoff, footer. Bible version 0.1.0.
   ============================================================ */
.thj-service-page {
  --thj-cream: var(--color-surface-elevated);
  --thj-cream-soft: var(--color-surface-elevated);
  --thj-cream-deep: var(--color-surface-base);
  --thj-ink: var(--color-ink-primary);
  --thj-ink-soft: var(--color-ink-secondary);
  --thj-rust: var(--color-brand-rust);
  --thj-rust-dark: var(--color-brand-rust-dark);
  --thj-rust-deep: var(--color-brand-rust);
  --thj-olive: var(--color-brand-olive);
  --thj-line: var(--color-line-cream);
  --service-hero-overlay-strong: color-mix(in srgb, var(--color-surface-elevated) 98%, transparent);
  --service-hero-overlay-mid: color-mix(in srgb, var(--color-surface-elevated) 84%, transparent);
  --service-hero-overlay-soft: color-mix(in srgb, var(--color-surface-base) 72%, transparent);
  --service-line-olive-soft: color-mix(in srgb, var(--color-brand-olive) 20%, transparent);
  --service-aside-surface: color-mix(in srgb, var(--color-surface-elevated) 88%, transparent);
  --service-on-dark-soft: color-mix(in srgb, var(--color-ink-on-dark) 86%, transparent);
  --service-focus-ring: color-mix(in srgb, var(--color-brand-gold) 45%, transparent);
  background: var(--color-surface-base);
}

.thj-service-page .thj-service-nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  padding: var(--space-4) 0;
  gap: var(--space-5);
}

.thj-service-page .thj-logo-lockup {
  gap: var(--space-3);
}

.thj-service-page .thj-logo-mark {
  width: 72px;
  height: 72px;
}

.thj-service-page .thj-logo-title {
  font-size: 26px;
}

.thj-service-page .thj-logo-sub {
  margin-top: var(--space-1);
  font-size: 12px;
  letter-spacing: 0.22em;
}

.thj-service-page .thj-nav-links {
  gap: var(--space-7);
  margin-right: var(--space-2);
}

.thj-service-page .thj-nav-links a,
.thj-service-page .thj-nav-cta {
  font-size: 15px;
  white-space: nowrap;
}

.thj-service-page .thj-nav-cta {
  padding: 13px var(--space-5);
}

.thj-service-main {
  background: var(--color-surface-base);
}

.thj-service-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--service-hero-overlay-strong) 0%, var(--service-hero-overlay-mid) 48%, var(--service-hero-overlay-soft) 100%),
    url('./public/images/healing-journey/hero/hero-path.jpg') right center / cover no-repeat;
  color: var(--color-ink-primary);
  padding: clamp(72px, 8vw, 128px) clamp(22px, 5vw, 72px) clamp(84px, 8vw, 132px);
}

.thj-service-hero-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.thj-service-hero-copy {
  max-width: 760px;
}

.thj-service-eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-brand-rust-dark);
  font-size: var(--text-eyebrow-size);
  font-weight: var(--text-eyebrow-weight);
  letter-spacing: var(--text-eyebrow-tracking);
  line-height: var(--text-eyebrow-line-height);
  text-transform: uppercase;
}

.thj-service-hero h1,
.thj-service-section h2,
.thj-service-cta h2 {
  margin: 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

.thj-service-hero h1 {
  max-width: 700px;
  font-size: clamp(50px, 4.5vw, 72px);
  line-height: 1;
}

.thj-service-lede {
  max-width: 690px;
  margin: var(--space-5) 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}

.thj-service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.thj-service-hero-aside {
  border: 1px solid var(--service-line-olive-soft);
  border-radius: var(--radius-md);
  background: var(--service-aside-surface);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}

.thj-service-hero-aside img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.thj-service-hero-aside p {
  margin: var(--space-4) 0 0;
  color: var(--color-ink-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.thj-service-section {
  background: var(--color-surface-base);
  padding: clamp(72px, 8vw, 116px) clamp(22px, 5vw, 72px);
}

.thj-service-section-raised {
  background: var(--color-surface-elevated);
}

.thj-service-section-inner,
.thj-service-split {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.thj-service-section-header {
  max-width: 780px;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.thj-service-section h2,
.thj-service-cta h2 {
  max-width: 820px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
}

.thj-service-section-header p:last-child {
  max-width: 700px;
  margin: var(--space-4) 0 0;
  color: var(--color-ink-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.thj-service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.thj-service-info-card {
  min-height: 300px;
  border: 1px solid var(--color-line-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.thj-service-section:not(.thj-service-section-raised) .thj-service-info-card {
  background: var(--color-surface-elevated);
}

.thj-service-info-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.thj-service-info-card h3 {
  margin: var(--space-5) 0 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.thj-service-info-card p {
  margin: var(--space-4) 0 0;
  color: var(--color-ink-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.thj-service-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.thj-service-rich-text p,
.thj-service-large-copy {
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.85;
}

.thj-service-rich-text p + p {
  margin-top: var(--space-4);
}

.thj-service-narrow {
  max-width: 900px;
}

.thj-service-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-5);
  color: var(--color-brand-rust-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.thj-service-text-link:hover,
.thj-service-text-link:focus-visible,
.thj-resources a:hover,
.thj-resources a:focus-visible {
  color: var(--color-brand-rust);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.thj-service-cta {
  background: var(--color-surface-dark);
  color: var(--color-ink-on-dark);
  padding: clamp(72px, 8vw, 110px) clamp(22px, 5vw, 72px);
  text-align: center;
}

.thj-service-cta-inner {
  width: min(100%, 820px);
  margin: 0 auto;
}

.thj-service-cta .thj-service-eyebrow {
  color: var(--color-brand-gold);
}

.thj-service-cta h2 {
  color: var(--color-ink-on-dark);
}

.thj-service-cta p {
  max-width: 690px;
  margin: var(--space-4) auto var(--space-6);
  color: var(--service-on-dark-soft);
  font-size: 17px;
  line-height: 1.75;
}

.thj-service-cta .thj-btn-primary {
  background: var(--color-brand-rust);
  border-color: var(--color-brand-rust);
}

.thj-service-section-faq {
  background: var(--color-surface-base);
}

.thj-service-faq-list {
  display: grid;
  gap: var(--space-3);
}

.thj-service-faq-list details {
  border: 1px solid var(--service-line-olive-soft);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  padding: 0 var(--space-5);
  box-shadow: var(--shadow-sm);
}

.thj-service-faq-list summary {
  cursor: pointer;
  color: var(--color-ink-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  padding: var(--space-4) 0;
}

.thj-service-faq-list summary:focus-visible {
  outline: 3px solid var(--service-focus-ring);
  outline-offset: 5px;
}

.thj-service-faq-list p {
  margin: 0;
  padding: 0 0 var(--space-5);
  color: var(--color-ink-secondary);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .thj-service-page .thj-service-nav {
    width: min(100% - 36px, 1440px);
  }

  .thj-service-page .thj-nav-links {
    gap: var(--space-5);
  }

  .thj-service-hero-inner,
  .thj-service-split {
    grid-template-columns: 1fr;
  }

  .thj-service-hero-aside {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .thj-service-page .thj-service-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: min(100% - 28px, 1440px);
    padding: var(--space-3) 0;
  }

  .thj-service-page .thj-logo-mark {
    width: 56px;
    height: 56px;
  }

  .thj-service-page .thj-logo-title {
    font-size: 22px;
  }

  .thj-service-page .thj-logo-sub {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .thj-service-card-grid {
    grid-template-columns: 1fr;
  }

  .thj-service-info-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .thj-service-hero {
    padding: 54px 18px 72px;
  }

  .thj-service-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .thj-service-hero-actions {
    display: grid;
  }

  .thj-service-page .thj-btn {
    width: 100%;
    white-space: normal;
  }

  .thj-service-section,
  .thj-service-cta {
    padding: 62px 18px;
  }

  .thj-service-section h2,
  .thj-service-cta h2 {
    font-size: clamp(36px, 12vw, 52px);
  }
}

/* ============================================================
   Healing Journey — Meet Lynne detail page (added 2026-05-16)
   Owns: .thj-about-page and descendants
   ============================================================ */
.thj-about-page {
  background: var(--color-surface-base);
}

.thj-about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(var(--space-8), 7vw, var(--space-10)) clamp(var(--space-4), 5vw, var(--space-9)) clamp(var(--space-9), 8vw, var(--space-11));
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-surface-elevated) 98%, transparent) 0%,
      color-mix(in srgb, var(--color-surface-elevated) 92%, transparent) 48%,
      color-mix(in srgb, var(--color-surface-base) 72%, transparent) 100%
    ),
    url('./public/images/healing-journey/hero/hero-path.jpg') right center / cover no-repeat;
}

.thj-about-hero::after {
  content: "";
  position: absolute;
  right: clamp(var(--space-5), 7vw, var(--space-10));
  bottom: clamp(var(--space-5), 5vw, var(--space-9));
  width: clamp(var(--space-11), 14vw, 13rem);
  aspect-ratio: 84 / 56;
  background: url('./public/images/healing-journey/meet-lynne/leaf-flourish.png') center / contain no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.thj-about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 73.75rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(20rem, 26.875rem);
  gap: clamp(var(--space-7), 7vw, var(--space-10));
  align-items: center;
}

.thj-about-copy h1 {
  max-width: 45rem;
  margin: 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: clamp(3.375rem, 6.1vw, 5.75rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.thj-about-lede {
  max-width: 41.25rem;
  margin: var(--space-5) 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(var(--text-body-size), 1.7vw, 1.375rem);
  line-height: 1.72;
}

.thj-about-portrait {
  margin: 0;
  padding: var(--space-2);
  border: 1px solid color-mix(in srgb, var(--color-brand-gold) 32%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-surface-elevated) 78%, transparent);
  box-shadow: var(--shadow-lg);
}

.thj-about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.08;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center 44%;
}

.thj-about-portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3) var(--space-2);
}

.thj-about-portrait strong {
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: var(--text-h3-size);
  line-height: 1;
}

.thj-about-portrait span {
  color: var(--color-brand-rust-dark);
  font-size: var(--text-eyebrow-size);
  font-weight: 700;
  letter-spacing: var(--text-eyebrow-tracking);
  line-height: 1.35;
  text-transform: uppercase;
  text-align: right;
}

.thj-about-intro .thj-service-rich-text {
  padding-top: var(--space-1);
}

.thj-about-card-grid .thj-service-info-card {
  min-height: 17.625rem;
}

.thj-about-approach {
  width: min(100%, 73.75rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(17.5rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(var(--space-6), 7vw, var(--space-10));
  align-items: start;
}

.thj-about-approach-copy h2 {
  margin: 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: clamp(2.375rem, 4vw, 3.875rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.thj-about-approach-copy p:last-child {
  margin: var(--space-5) 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(var(--text-body-size), 1.5vw, 1.25rem);
  line-height: 1.82;
}

.thj-about-principles {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.thj-about-principles li {
  display: grid;
  grid-template-columns: var(--space-8) minmax(0, 1fr);
  column-gap: var(--space-4);
  row-gap: var(--space-2);
  border: 1px solid var(--color-line-subtle);
  border-radius: var(--radius-md);
  background: var(--color-surface-elevated);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.thj-about-principles span {
  grid-row: span 2;
  display: inline-flex;
  width: var(--space-8);
  height: var(--space-8);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: var(--color-surface-dark);
  color: var(--color-brand-gold);
  font-family: var(--font-display);
  font-size: var(--text-h3-size);
  font-weight: 700;
  line-height: 1;
}

.thj-about-principles strong {
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
}

.thj-about-principles p {
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: var(--text-body-sm-size);
  line-height: 1.72;
}

.thj-about-credential-layout {
  display: grid;
  gap: var(--space-8);
}

.thj-about-cert-panel h3,
.thj-about-affiliation-panel h3 {
  max-width: 46rem;
  margin: 0;
  color: var(--color-ink-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.thj-about-cert-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}

.thj-about-cert-list li {
  border: 1px solid var(--color-line-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface-base);
  padding: var(--space-4);
  color: var(--color-ink-primary);
  font-size: var(--text-ui-size);
  font-weight: 600;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}

.thj-about-affiliation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.thj-about-affiliation-grid figure {
  min-height: 11rem;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(6rem, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--color-line-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface-base);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.thj-about-affiliation-grid img {
  width: 100%;
  max-height: 6rem;
  object-fit: contain;
}

.thj-about-affiliation-grid figcaption {
  color: var(--color-ink-secondary);
  font-size: var(--text-caption-size);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.thj-about-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.thj-about-fit-grid a {
  min-height: var(--space-9);
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--color-brand-olive) 22%, transparent);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  color: var(--color-ink-primary);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-ui-size);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--motion-duration-fast) var(--motion-easing-standard), color var(--motion-duration-fast) var(--motion-easing-standard), transform var(--motion-duration-fast) var(--motion-easing-standard);
}

.thj-about-fit-grid a:hover,
.thj-about-fit-grid a:focus-visible {
  border-color: color-mix(in srgb, var(--color-brand-rust) 52%, transparent);
  color: var(--color-brand-rust-dark);
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .thj-about-hero-inner,
  .thj-about-approach {
    grid-template-columns: 1fr;
  }

  .thj-about-portrait {
    max-width: 28.75rem;
  }

  .thj-about-affiliation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .thj-about-hero {
    padding: var(--space-8) var(--space-3) var(--space-9);
  }

  .thj-about-copy h1 {
    font-size: clamp(2.875rem, 14vw, 4rem);
  }

  .thj-about-portrait figcaption {
    display: block;
  }

  .thj-about-portrait span {
    display: block;
    margin-top: var(--space-1);
    text-align: left;
  }

  .thj-about-principles li {
    grid-template-columns: 1fr;
  }

  .thj-about-principles span {
    grid-row: auto;
  }

  .thj-about-cert-list,
  .thj-about-affiliation-grid,
  .thj-about-fit-grid {
    grid-template-columns: 1fr;
  }

.thj-about-affiliation-grid figure {
    min-height: 9rem;
  }
}

/* ============================================================
   Healing Journey — standalone utility pages (added 2026-05-16)
   Owns: .thj-contact-page, .thj-resources-page, .thj-legal-page
   ============================================================ */
.thj-contact-page .thj-page-contact-section {
  min-height: 0;
  padding-top: clamp(var(--space-8), 7vw, var(--space-10));
}

.thj-contact-page .thj-contact-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
}

@media (max-width: 640px) {
  .thj-contact-page .thj-contact-title {
    font-size: clamp(2.25rem, 10.5vw, 2.65rem);
    line-height: 1.02;
  }
}

.thj-legal-page .thj-service-large-copy + .thj-service-large-copy {
  margin-top: var(--space-4);
}
