:root {
  --navy: #153947;
  --navy-2: #254f5c;
  --ink: #26343a;
  --muted: #657177;
  --sea: #8fb9b7;
  --sea-soft: #e9f4f2;
  --rose: #cc829a;
  --rose-soft: #f8dfe7;
  --shell: #fbf7f1;
  --paper: #fffdf9;
  --sand: #e7d7c4;
  --line: rgba(21, 57, 71, 0.14);
  --shadow: 0 24px 70px rgba(21, 57, 71, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.contact-modal-open {
  overflow: hidden;
}

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

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

main:focus {
  outline: none;
}

section[id] {
  scroll-margin-top: 104px;
}

#feeling-words {
  scroll-margin-top: 104px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(21, 57, 71, 0.22);
  color: #fff;
  font-weight: 800;
  left: 18px;
  outline-offset: 4px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transition: transform 180ms ease;
  z-index: 100;
}

.skip-link:not(:focus):not(:focus-visible) {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  transform: none;
  width: auto;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 60px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--rose), #e8adbd);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.brand strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.brand small {
  color: var(--navy-2);
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 1;
  gap: clamp(16px, 2vw, 28px);
  justify-content: flex-end;
  min-width: 0;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.45vw, 21px);
  justify-content: flex-end;
}

.nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"],
.mobile-nav-panel a:hover,
.mobile-nav-panel a[aria-current="page"],
.text-link:hover {
  color: var(--rose);
}

.brand:focus-visible,
.nav a:focus-visible,
.mobile-nav summary:focus-visible,
.mobile-nav-panel a:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.text-link:focus-visible,
.contact-direct a:focus-visible,
.hero-paths a:focus-visible,
.orientation-panel a:focus-visible,
.focus-list button:focus-visible,
.sanctuary-tools button:focus-visible,
.sanctuary-drops button:focus-visible,
.lexicon-filters button:focus-visible,
.lexicon-grid button:focus-visible,
.pathway-options button:focus-visible,
.pathway-form input:focus-visible,
.pathway-form textarea:focus-visible,
.coaching-faq summary:focus-visible,
.contact-modal-close:focus-visible {
  outline: 3px solid rgba(204, 130, 154, 0.45);
  outline-offset: 4px;
}

.header-cta,
.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 13px 23px;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
  background: var(--navy);
  color: #fff;
  min-height: 42px;
  min-width: max-content;
  padding: 10px 18px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary,
.header-cta {
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(21, 57, 71, 0.22);
  color: #fff;
}

.header-cta-full,
.header-cta-short {
  display: inline-block;
}

.header-cta-short {
  display: none;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 57, 71, 0.2);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  line-height: 1.2;
  list-style: none;
  min-height: 42px;
  padding: 10px 16px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 57, 71, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(21, 57, 71, 0.18);
  display: grid;
  gap: 2px;
  min-width: 230px;
  padding: 12px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
}

.mobile-nav-panel a {
  border-radius: 12px;
  color: var(--navy);
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  padding: 12px 14px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 57, 71, 0.2);
  color: var(--navy);
}

.button.light {
  background: #fff;
  color: var(--navy);
}

.button.full {
  width: 100%;
}

.hero {
  align-items: center;
  background: var(--shell);
  display: grid;
  min-height: clamp(620px, calc(78svh - 76px), 700px);
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px) clamp(22px, 7vw, 104px);
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(251, 247, 241, 0.99) 0%, rgba(251, 247, 241, 0.92) 34%, rgba(251, 247, 241, 0.26) 54%, rgba(251, 247, 241, 0) 70%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-copy {
  max-width: 670px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(54px, 7.4vw, 112px);
  margin-bottom: 26px;
  max-width: 760px;
}

h2 {
  font-size: clamp(36px, 4.4vw, 68px);
  margin-bottom: 22px;
}

h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 13px;
}

.hero-lede {
  color: #31454e;
  font-size: clamp(19px, 1.7vw, 23px);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-paths {
  align-items: center;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  margin-top: 28px;
}

.hero-paths a {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(204, 130, 154, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  transition: border 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-paths a:hover {
  border-color: rgba(204, 130, 154, 0.58);
  color: var(--rose);
  transform: translateY(-1px);
}

.section-shell {
  padding: clamp(76px, 9vw, 132px) clamp(22px, 7vw, 112px);
}

.opening {
  background:
    linear-gradient(180deg, var(--paper), #fff 54%, #fdf2f5);
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
}

.section-rule {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.opening-copy {
  color: var(--muted);
  font-size: 18px;
}

.opening-copy p:last-child {
  margin-bottom: 0;
}

.orientation-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.orientation-panel article {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 42px minmax(0, 1fr) max-content;
  padding: 14px 16px;
}

.orientation-panel span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.orientation-panel strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.orientation-panel a {
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  padding-bottom: 2px;
}

.section-intro {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  margin-bottom: 44px;
}

.section-intro p:not(.eyebrow) {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
}

.section-intro.compact {
  display: block;
  max-width: 820px;
}

.work {
  background: #fff;
}

.offer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  background: linear-gradient(180deg, #fff, #fff8fa);
  border: 1px solid rgba(21, 57, 71, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 57, 71, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
}

.offer-card.featured {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
}

.offer-card.featured h3,
.offer-card.featured p,
.offer-card.featured li,
.offer-card.featured .offer-number {
  color: #fff;
}

.offer-number {
  color: var(--rose);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 36px;
}

.offer-card p,
.focus-list p,
.lexicon-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 15px;
}

.offer-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card .offer-fit {
  background: rgba(143, 185, 183, 0.12);
  border: 1px solid rgba(143, 185, 183, 0.22);
  border-radius: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  margin: 0 0 22px;
  padding: 12px 14px;
}

.offer-card.featured .offer-fit {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.offer-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 30px;
  padding: 0;
}

.offer-card li {
  border-top: 1px solid rgba(21, 57, 71, 0.14);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  padding-top: 9px;
}

.offer-card.featured li {
  border-color: rgba(255, 255, 255, 0.24);
}

.offer-card .button {
  margin-top: auto;
}

.about {
  align-items: center;
  background: linear-gradient(135deg, #f8e8ee, #fff 48%, var(--sea-soft));
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.8fr);
  padding: clamp(76px, 9vw, 132px) clamp(22px, 7vw, 112px);
}

.about-image {
  border: 7px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy {
  max-width: 760px;
}

.clinical-lens {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.clinical-lens span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 57, 71, 0.14);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
}

.about-copy p,
.sanctuary-copy p,
.companion-copy p,
.resources-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.focus {
  background:
    linear-gradient(90deg, rgba(204, 130, 154, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 185, 183, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

.focus-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.focus-list article,
.lexicon-grid article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 57, 71, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 26px;
}

.focus-list button,
.lexicon-grid button,
.sanctuary-tools button,
.lexicon-filters button {
  font: inherit;
}

.focus-list button,
.lexicon-grid button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  margin-top: auto;
  padding: 0 0 5px;
  width: max-content;
}

.focus-list button:hover,
.lexicon-grid button:hover {
  color: var(--rose);
}

.focus-list article.is-selected {
  border-color: rgba(204, 130, 154, 0.52);
  box-shadow: 0 18px 44px rgba(204, 130, 154, 0.12);
}

.care-result {
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 18px;
  max-width: 760px;
  padding: 24px 26px;
}

.care-result span,
.sanctuary-practice span,
.lexicon-detail span {
  color: var(--rose);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.care-result h3 {
  color: #fff;
  margin-bottom: 8px;
}

.care-result p {
  margin-bottom: 0;
}

.sanctuary {
  align-items: center;
  background: linear-gradient(180deg, #fdf2f5, #fff);
  display: grid;
  gap: clamp(34px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
}

.sanctuary-copy {
  max-width: 720px;
}

.sanctuary-image {
  border: 7px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sanctuary-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.sanctuary-library {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 57, 71, 0.08);
  display: grid;
  gap: 20px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 36px);
}

.sanctuary-library-header h3 {
  margin-bottom: 0;
}

.sanctuary-tools {
  display: grid;
  gap: 10px;
}

.sanctuary-tools button {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.16);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 4px;
  padding: 16px;
  text-align: left;
}

.sanctuary-tools button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.sanctuary-tools button span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sanctuary-tools button strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.sanctuary-tools button small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.sanctuary-tools button[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.76);
}

.sanctuary-practice {
  background: #fff;
  border: 1px solid rgba(204, 130, 154, 0.22);
  border-radius: 8px;
  padding: 24px;
}

.sanctuary-practice h3 {
  margin-bottom: 18px;
}

.sanctuary-practice ol {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.sanctuary-drops {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sanctuary-drops article {
  background: linear-gradient(180deg, #fff, var(--paper));
  border: 1px solid rgba(21, 57, 71, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
}

.sanctuary-drops span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sanctuary-drops p {
  color: var(--muted);
  font-size: 15px;
}

.sanctuary-drops button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  margin-top: auto;
  padding: 0 0 5px;
  width: max-content;
}

.sanctuary-drops button:hover {
  color: var(--rose);
}

.companion {
  align-items: start;
  background:
    linear-gradient(120deg, rgba(143, 185, 183, 0.18), transparent 32%),
    linear-gradient(180deg, #fff, #fff7fa 64%, var(--shell));
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.88fr);
}

.companion-copy {
  max-width: 740px;
  position: sticky;
  top: 118px;
}

.companion-safety {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(204, 130, 154, 0.3);
  border-left: 5px solid var(--rose);
  border-radius: 8px;
  color: var(--navy);
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 20px;
}

.companion-safety strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.companion-safety span {
  color: var(--muted);
  font-size: 15px;
}

.companion-tool {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.companion-tool-header {
  align-items: start;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 26px 28px 24px;
}

.companion-tool-kicker,
.companion-session-note,
.companion-message-label,
.companion-counter,
.companion-status,
.companion-helper {
  font-size: 12px;
  font-weight: 850;
}

.companion-tool-kicker,
.companion-session-note,
.companion-message-label,
.companion-counter {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.companion-tool-header h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  margin: 6px 0 0;
}

.companion-session-note {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  min-width: max-content;
  padding: 7px 10px;
}

.companion-messages {
  display: grid;
  gap: 14px;
  max-height: 430px;
  min-height: 250px;
  overflow-y: auto;
  padding: 24px 28px 10px;
  scroll-behavior: smooth;
}

.companion-message {
  border: 1px solid rgba(21, 57, 71, 0.1);
  border-radius: 8px;
  max-width: 88%;
  padding: 16px 17px;
}

.companion-message p {
  font-size: 15px;
  margin-bottom: 0;
  white-space: pre-line;
}

.companion-message-label {
  color: var(--rose);
  display: block;
  margin-bottom: 6px;
}

.companion-message.is-guide {
  background: var(--sea-soft);
  justify-self: start;
}

.companion-message.is-user {
  background: #fff7fa;
  justify-self: end;
}

.companion-message.is-crisis {
  background: #fff;
  border-color: rgba(204, 130, 154, 0.48);
  box-shadow: 0 12px 28px rgba(204, 130, 154, 0.14);
}

.companion-prompts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 28px 20px;
}

.companion-prompts button {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.18);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  min-height: 42px;
  padding: 9px 12px;
  transition: border 180ms ease, color 180ms ease, transform 180ms ease;
}

.companion-prompts button:hover,
.companion-prompts button:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
}

.companion-prompts button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.companion-form {
  border-top: 1px solid var(--line);
  padding: 22px 28px 26px;
}

.companion-form textarea {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.2);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font: inherit;
  min-height: 128px;
  outline: none;
  padding: 14px 15px;
  resize: vertical;
  width: 100%;
}

.companion-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 130, 154, 0.14);
}

.companion-form textarea:disabled {
  background: #f7f2ee;
  cursor: wait;
}

.companion-helper {
  color: var(--muted);
  margin: 9px 0 0;
}

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

.companion-counter {
  color: var(--muted);
}

.companion-counter.is-near-limit {
  color: var(--rose);
}

.companion-send {
  min-width: 118px;
}

.companion-send:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.companion-status {
  color: var(--muted);
  margin: 12px 0 0;
  min-height: 20px;
}

.resources {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.resources::after {
  background:
    linear-gradient(90deg, rgba(21, 57, 71, 0.96), rgba(21, 57, 71, 0.76) 42%, rgba(21, 57, 71, 0.16));
  content: "";
  inset: 0;
  position: absolute;
}

.resources img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.resources-copy {
  align-self: center;
  color: #fff;
  max-width: 650px;
  padding: clamp(76px, 9vw, 132px) clamp(22px, 7vw, 112px);
  position: relative;
  z-index: 1;
}

.resources-copy h2,
.resources-copy .eyebrow,
.resources-copy p {
  color: #fff;
}

.resources-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-weight: 850;
  margin-top: 10px;
  padding-bottom: 6px;
}

.downloadable-resources {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  margin-top: 34px;
  padding: 22px;
}

.downloadable-kicker {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.downloadable-note {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

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

.downloadable-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  color: var(--navy);
  padding: 16px;
}

.downloadable-grid span {
  color: var(--rose);
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.downloadable-grid h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 8px;
}

.downloadable-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.downloadable-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.downloadable-grid a {
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  padding-bottom: 3px;
}

.resource-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(251, 247, 241, 1));
}

.resource-hero {
  padding-bottom: 30px;
  padding-top: clamp(64px, 9vw, 108px);
}

.resource-hero h1 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  max-width: 820px;
}

.resource-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  max-width: 720px;
}

.resource-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.resource-viewer {
  padding-top: 0;
}

.resource-viewer iframe {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
  height: min(82vh, 920px);
  width: 100%;
}

.lexicon {
  background: #fff;
}

.lexicon-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lexicon-tools label {
  flex: 1 1 320px;
}

.lexicon-tools input {
  background: var(--paper);
  border: 1px solid rgba(21, 57, 71, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 11px 18px;
  width: 100%;
}

.lexicon-tools input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 130, 154, 0.14);
}

.lexicon-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lexicon-filters button {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.16);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-height: 42px;
  padding: 8px 14px;
}

.lexicon-filters button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

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

.lexicon-grid article {
  min-height: 185px;
}

.lexicon-grid article.is-hidden {
  display: none;
}

.lexicon-grid article.is-selected {
  border-color: rgba(204, 130, 154, 0.52);
  box-shadow: 0 18px 44px rgba(204, 130, 154, 0.12);
}

.lexicon-detail {
  background: linear-gradient(135deg, var(--sea-soft), #fff);
  border: 1px solid rgba(143, 185, 183, 0.35);
  border-radius: 8px;
  margin-top: 18px;
  padding: 24px 26px;
}

.lexicon-detail p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.lexicon-detail p + p {
  color: var(--navy);
  font-weight: 850;
  margin-top: 12px;
}

.feeling-words {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 26px;
  margin-top: clamp(44px, 7vw, 84px);
  padding-top: clamp(32px, 6vw, 56px);
}

.feeling-visual {
  background:
    linear-gradient(135deg, rgba(248, 223, 231, 0.42), transparent 46%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 57, 71, 0.08);
  overflow: hidden;
}

.feeling-visual img {
  height: auto;
  width: 100%;
}

.feeling-intro {
  max-width: 780px;
}

.feeling-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feeling-category-grid {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feeling-category {
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(21, 57, 71, 0.05);
  overflow: hidden;
}

.feeling-category summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr);
  list-style: none;
  padding: 18px 20px;
}

.feeling-category summary::-webkit-details-marker {
  display: none;
}

.feeling-category summary::after {
  color: var(--rose);
  content: "+";
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 22px;
}

.feeling-category[open] summary::after {
  content: "-";
}

.feeling-category summary {
  position: relative;
}

.feeling-category summary span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding-right: 34px;
  text-transform: uppercase;
}

.feeling-category summary strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
  padding-right: 34px;
}

.feeling-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feeling-category > .feeling-tags {
  border-top: 1px solid var(--line);
  padding: 16px 20px 20px;
}

.feeling-tags span {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

.feeling-subgroups {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
}

.feeling-subgroup + .feeling-subgroup {
  border-top: 1px solid rgba(21, 57, 71, 0.1);
  padding-top: 16px;
}

.feeling-subgroup h4 {
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.pathway {
  background:
    linear-gradient(135deg, rgba(143, 185, 183, 0.22), transparent 36%),
    linear-gradient(180deg, var(--shell), #fff);
}

.pathway-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.72fr);
}

.pathway-options {
  display: grid;
  gap: 10px;
}

.pathway-options button {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 57, 71, 0.14);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 5px;
  padding: 18px;
  text-align: left;
}

.pathway-options button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 18px 42px rgba(21, 57, 71, 0.18);
  color: #fff;
}

.pathway-options span,
.pathway-kicker {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathway-options strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.pathway-options small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.pathway-options button[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.76);
}

.pathway-form {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
}

.pathway-kicker {
  display: block;
  margin-bottom: 9px;
}

.pathway-form h3 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-bottom: 10px;
}

.pathway-form p {
  color: var(--muted);
}

.privacy-note {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(204, 130, 154, 0.28);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  margin: 18px 0 0;
  max-width: 680px;
  padding: 12px 14px;
}

.pathway-fields {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.pathway-fields label {
  display: grid;
  gap: 7px;
}

.pathway-fields span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.pathway-field-wide {
  grid-column: 1 / -1;
}

.pathway-form input,
.pathway-form textarea {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.pathway-form input {
  min-height: 48px;
}

.pathway-form textarea {
  min-height: 140px;
  resize: vertical;
}

.pathway-form input:focus,
.pathway-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 130, 154, 0.14);
}

.pathway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pathway-status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  margin: 14px 0 0;
  min-height: 22px;
}

.contact {
  align-items: center;
  background: var(--shell);
  display: grid;
  gap: clamp(30px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 440px);
}

.contact-copy {
  max-width: 760px;
}

.contact-steps {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  max-width: 440px;
  padding: 0;
}

.contact-steps li {
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  padding-top: 8px;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-panel .button + .button {
  margin-top: 12px;
}

.contact-direct {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
  text-align: center;
}

.contact-direct a {
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 850;
  padding-bottom: 2px;
}

.coaching-page {
  background: var(--paper);
}

.coaching-hero {
  align-items: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(143, 185, 183, 0.26), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, var(--shell) 48%, var(--sea-soft) 100%);
  display: grid;
  gap: clamp(36px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 8vw, 112px) clamp(22px, 7vw, 112px);
}

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

.coaching-hero h1 {
  font-size: clamp(48px, 6vw, 92px);
  margin-bottom: 26px;
}

.coaching-hero-copy p:not(.coaching-lede) {
  color: var(--muted);
  font-size: 18px;
  max-width: 690px;
}

.coaching-lede {
  color: var(--navy-2);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.38;
  margin-bottom: 18px;
  max-width: 720px;
}

.coaching-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.coaching-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.coaching-trust-row span,
.coaching-tags span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 57, 71, 0.14);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
}

.coaching-hero-panel {
  display: grid;
  gap: 16px;
}

.coaching-hero-panel img {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}

.coaching-hero-note,
.coaching-statement,
.coaching-why-card,
.coaching-service-card,
.coaching-values-grid article,
.coaching-faq details,
.coaching-testimonial-grid article {
  border-radius: 8px;
}

.coaching-hero-note {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(21, 57, 71, 0.08);
  display: grid;
  gap: 4px;
  padding: 18px 20px;
}

.coaching-hero-note strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}

.coaching-hero-note span {
  color: var(--muted);
  font-size: 15px;
}

.coaching-about {
  background: #fff;
}

.coaching-about-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 0.86fr);
}

.coaching-statement {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(24px, 4vw, 36px);
}

.coaching-statement h3 {
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
}

.coaching-statement p {
  margin-bottom: 0;
}

.coaching-tags {
  align-content: start;
  background:
    linear-gradient(135deg, rgba(248, 223, 231, 0.44), transparent 44%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
}

.coaching-why {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(143, 185, 183, 0.24), transparent 42%),
    linear-gradient(180deg, var(--shell), #fff);
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.54fr);
}

.coaching-why-copy {
  max-width: 780px;
}

.coaching-why-copy p,
.coaching-ideal-copy p,
.coaching-closing p {
  color: var(--muted);
  font-size: 18px;
}

.coaching-why-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
}

.coaching-why-card span,
.coaching-service-card span,
.coaching-testimonial-grid span {
  color: var(--rose);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.coaching-why-card ul,
.coaching-ideal-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.coaching-why-card li,
.coaching-ideal-list li {
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  padding-top: 10px;
}

.coaching-services {
  background: #fff;
}

.coaching-service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coaching-service-card {
  background: linear-gradient(180deg, #fff, #fff8fa);
  border: 1px solid rgba(21, 57, 71, 0.12);
  box-shadow: 0 16px 38px rgba(21, 57, 71, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 24px;
}

.coaching-service-card h3 {
  font-size: 25px;
}

.coaching-service-card p,
.coaching-values-grid p,
.coaching-faq p,
.coaching-testimonial-grid p {
  color: var(--muted);
  font-size: 15px;
}

.coaching-service-card dl {
  display: grid;
  gap: 6px;
  margin: auto 0 0;
}

.coaching-service-card dt {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 12px;
  text-transform: uppercase;
}

.coaching-service-card dd {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.coaching-ideal {
  align-items: start;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.72fr);
}

.coaching-ideal h2,
.coaching-ideal p,
.coaching-ideal li {
  color: #fff;
}

.coaching-ideal-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.coaching-ideal-list li {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.coaching-values {
  background:
    linear-gradient(90deg, rgba(204, 130, 154, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 185, 183, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

.coaching-values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coaching-values-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(21, 57, 71, 0.06);
  min-height: 210px;
  padding: 26px;
}

.coaching-faq {
  background: #fff;
}

.coaching-faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.coaching-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(21, 57, 71, 0.04);
  overflow: hidden;
}

.coaching-faq summary {
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.15;
  list-style: none;
  padding: 21px 58px 21px 22px;
  position: relative;
}

.coaching-faq summary::-webkit-details-marker {
  display: none;
}

.coaching-faq summary::after {
  color: var(--rose);
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 850;
  position: absolute;
  right: 22px;
  top: 22px;
}

.coaching-faq details[open] summary::after {
  content: "-";
}

.coaching-faq details p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 18px 22px 22px;
}

.coaching-testimonials {
  background: linear-gradient(180deg, #fff, var(--shell));
}

.coaching-testimonial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coaching-testimonial-grid article {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(21, 57, 71, 0.06);
  min-height: 220px;
  padding: 28px;
}

.coaching-testimonial-grid p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.22;
}

.coaching-closing {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(248, 223, 231, 0.58), transparent 44%),
    var(--sea-soft);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
}

.coaching-closing h2 {
  max-width: 900px;
}

.coaching-closing p {
  max-width: 760px;
}

.coaching-closing-actions {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 57, 71, 0.08);
  padding: 26px;
}

.coaching-closing-actions .button + .button {
  margin-top: 12px;
}

.coaching-closing-actions p {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
  text-align: center;
}

.coaching-closing-actions a:not(.button) {
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 850;
  padding-bottom: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .coaching-hero-panel img {
    animation: coaching-float 9s ease-in-out infinite;
  }
}

@keyframes coaching-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.contact-modal {
  align-items: center;
  display: grid;
  inset: 0;
  padding: 22px;
  position: fixed;
  z-index: 80;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  background: rgba(21, 57, 71, 0.38);
  inset: 0;
  position: absolute;
}

.contact-modal-panel {
  background:
    linear-gradient(135deg, rgba(248, 223, 231, 0.38), transparent 42%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(21, 57, 71, 0.28);
  justify-self: center;
  max-height: min(760px, calc(100svh - 44px));
  max-width: 760px;
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  width: min(100%, 760px);
}

.contact-modal-panel:focus {
  outline: none;
}

.contact-modal-panel h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  margin-bottom: 24px;
}

.contact-modal-close {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.16);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
}

.contact-detail {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 14px 0;
}

.contact-detail span,
.contact-message-label {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--navy);
  font-size: 16px;
}

.contact-message-label {
  display: block;
  margin: 12px 0 8px;
}

.contact-modal textarea {
  background: #fff;
  border: 1px solid rgba(21, 57, 71, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 180px;
  padding: 14px 15px;
  resize: vertical;
  width: 100%;
}

.contact-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-modal-actions .button {
  flex: 1 1 170px;
}

.contact-modal-status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  margin: 14px 0 0;
  min-height: 22px;
}

.site-footer {
  align-items: end;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 36px clamp(22px, 7vw, 112px);
}

.site-footer strong {
  color: #fff;
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.site-footer p {
  margin-bottom: 0;
}

.fine-print {
  font-size: 13px;
  max-width: 460px;
}

.footer-evolution {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  max-width: 560px;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .header-actions {
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(251, 247, 241, 0.99) 0%, rgba(251, 247, 241, 0.93) 58%, rgba(251, 247, 241, 0.46) 100%);
  }
}

@media (max-width: 900px) {
  .opening,
  .section-intro,
  .about,
  .sanctuary,
  .companion,
  .pathway-layout,
  .contact,
  .coaching-hero,
  .coaching-about-layout,
  .coaching-why,
  .coaching-ideal,
  .coaching-closing {
    grid-template-columns: 1fr;
  }

  .coaching-hero {
    min-height: auto;
  }

  .companion-copy {
    max-width: 820px;
    position: static;
  }

  .offer-grid,
  .focus-list,
  .coaching-service-grid,
  .coaching-values-grid,
  .coaching-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sanctuary-library {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .coaching-service-card,
  .coaching-values-grid article {
    min-height: auto;
  }

  .feeling-category-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .feeling-category summary {
    padding: 21px 24px;
  }

  .feeling-category > .feeling-tags,
  .feeling-subgroups {
    padding: 22px 24px 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    min-height: auto;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    width: auto;
  }

  .mobile-nav {
    display: block;
  }

  .header-cta {
    font-size: 13px;
    min-height: 42px;
    padding: 10px 16px;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline-block;
  }

  .hero {
    min-height: 760px;
    padding: 42px 20px;
  }

  .coaching-hero {
    padding: 48px 20px 64px;
  }

  .section-shell {
    padding: 68px 24px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(251, 247, 241, 0.97) 0%, rgba(251, 247, 241, 0.91) 58%, rgba(251, 247, 241, 0.34) 100%);
  }

  .hero-image {
    object-position: 62% center;
  }

  h1 {
    font-size: clamp(46px, 13vw, 54px);
    max-width: 340px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-actions,
  .hero-paths,
  .coaching-actions,
  .coaching-trust-row {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
  }

  .coaching-actions,
  .coaching-trust-row {
    max-width: none;
  }

  .hero .eyebrow,
  .hero-lede {
    max-width: 340px;
  }

  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .button {
    width: 100%;
  }

  .orientation-panel article {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .clinical-lens,
  .resource-actions,
  .lexicon-filters,
  .contact-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .clinical-lens span,
  .coaching-trust-row span,
  .lexicon-filters button,
  .contact-modal-actions .button {
    width: 100%;
  }

  .contact-modal-actions .button {
    flex-basis: auto;
  }

  .offer-grid,
  .focus-list,
  .sanctuary-drops,
  .companion-prompts,
  .pathway-fields,
  .feeling-category-grid,
  .coaching-service-grid,
  .coaching-values-grid,
  .coaching-testimonial-grid,
  .downloadable-grid,
  .lexicon-grid {
    grid-template-columns: 1fr;
  }

  .sanctuary-library,
  .care-result,
  .pathway-form,
  .coaching-statement,
  .coaching-tags,
  .coaching-why-card,
  .coaching-closing-actions,
  .lexicon-detail {
    padding: 20px;
  }

  .section-intro {
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-intro p:not(.eyebrow),
  .feeling-intro p:not(.eyebrow),
  .lexicon-detail p,
  .opening-copy,
  .about-copy p,
  .sanctuary-copy p,
  .companion-copy p,
  .resources-copy p,
  .contact-copy p,
  .coaching-why-copy p,
  .coaching-ideal-copy p,
  .coaching-closing p {
    font-size: 17px;
    line-height: 1.72;
  }

  .lexicon-tools {
    align-items: stretch;
    gap: 16px;
    margin-bottom: 26px;
  }

  .lexicon-tools input {
    min-height: 54px;
    padding: 13px 18px;
  }

  .lexicon-filters {
    gap: 10px;
  }

  .lexicon-filters button {
    min-height: 45px;
    padding: 10px 16px;
  }

  .lexicon-grid {
    gap: 18px;
  }

  .lexicon-grid article {
    min-height: auto;
    padding: 28px 26px;
  }

  .lexicon-grid h3,
  .focus-list h3,
  .coaching-service-card h3,
  .coaching-values-grid h3 {
    line-height: 1.18;
  }

  .feeling-words {
    gap: 30px;
    margin-top: 54px;
    padding-top: 42px;
  }

  .feeling-visual {
    box-shadow: 0 16px 38px rgba(21, 57, 71, 0.07);
  }

  .feeling-intro {
    display: grid;
    gap: 12px;
  }

  .feeling-intro h3 {
    font-size: clamp(31px, 8.4vw, 38px);
    line-height: 1.13;
    margin-bottom: 0;
  }

  .feeling-category-grid {
    gap: 20px;
  }

  .feeling-category {
    box-shadow: 0 14px 34px rgba(21, 57, 71, 0.055);
  }

  .feeling-category summary {
    gap: 9px;
    padding: 24px 24px 22px;
  }

  .feeling-category summary::after {
    right: 24px;
    top: 27px;
  }

  .feeling-category summary span {
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .feeling-category summary strong {
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.16;
  }

  .feeling-category > .feeling-tags {
    gap: 10px;
    padding: 24px;
  }

  .feeling-tags {
    gap: 10px;
  }

  .feeling-tags span {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(21, 57, 71, 0.11);
    font-size: 14px;
    line-height: 1.28;
    padding: 9px 12px;
  }

  .feeling-subgroups {
    gap: 21px;
    padding: 24px;
  }

  .feeling-subgroup + .feeling-subgroup {
    padding-top: 21px;
  }

  .feeling-subgroup h4 {
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .coaching-service-grid,
  .coaching-values-grid,
  .coaching-testimonial-grid {
    gap: 18px;
  }

  .coaching-service-card,
  .coaching-values-grid article,
  .coaching-testimonial-grid article {
    padding: 28px 26px;
  }

  .coaching-service-card p,
  .coaching-values-grid p,
  .coaching-faq p,
  .coaching-testimonial-grid p {
    font-size: 16px;
    line-height: 1.68;
  }

  .coaching-service-card dl {
    gap: 8px;
  }

  .coaching-service-card dt {
    margin-top: 16px;
  }

  .coaching-faq-list {
    gap: 14px;
  }

  .coaching-faq summary {
    line-height: 1.2;
    padding: 22px 58px 22px 24px;
  }

  .coaching-faq details p {
    padding: 20px 24px 24px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal-panel {
    max-height: calc(100svh - 32px);
  }

  .companion-tool-header,
  .companion-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .companion-session-note {
    min-width: 0;
    width: max-content;
  }

  .companion-message {
    max-width: 100%;
  }

  .companion-messages,
  .companion-prompts,
  .companion-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .resources {
    min-height: 720px;
  }

  .resource-viewer iframe {
    height: 72vh;
  }

  .resources::after {
    background: linear-gradient(180deg, rgba(21, 57, 71, 0.94), rgba(21, 57, 71, 0.66));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
