:root {
  --bg: #f6fbff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --line: #dbe8f4;
  --line-strong: #c7dbea;
  --text: #26384a;
  --body-text: #40586f;
  --muted: #4a6379;
  --accent: #3f7fae;
  --accent-soft: #e7f3fb;
  --button-dark: #29465f;
  --shadow: 0 18px 48px rgba(33, 75, 112, 0.09);
  --font-display: "Literata", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --button-radius: 12px;
  --button-min-width: 10.8rem;
  --sidebar-brand-size: 108px;
  --mobile-sidebar-brand-size: 156px;
  --layout-gutter: 18px;
  --layout-column-gap: 34px;
  --type-page-title: clamp(2.05rem, 2.8vw, 3rem);
  --type-section-title: clamp(1.5rem, 1.9vw, 2rem);
  --type-card-title: clamp(1.16rem, 1.28vw, 1.28rem);
  --type-body: 1.1rem;
  --type-control: var(--type-body);
  --type-brand: var(--type-control);
  --type-lead: var(--type-section-title);
  --type-h1: var(--type-page-title);
  --type-h2: var(--type-section-title);
  --type-h3: var(--type-card-title);
  --type-body-small: var(--type-body);
  --type-label: var(--type-control);
  --type-decor-quote: 4.6rem;
  --type-mobile-decor-quote: 4rem;
  --type-icon: 1.6rem;
  --type-scroll-arrow: 2rem;
  --type-mobile-page-title: clamp(1.78rem, 7vw, 2.12rem);
  --type-mobile-section-title: clamp(1.34rem, 5.4vw, 1.62rem);
  --type-mobile-card-title: clamp(1.12rem, 4.4vw, 1.24rem);
  --type-mobile-body: 1.04rem;
  --type-mobile-control: var(--type-mobile-body);
  --type-mobile-brand: var(--type-mobile-control);
  --type-mobile-lead: var(--type-mobile-card-title);
  --type-mobile-h1: var(--type-mobile-page-title);
  --type-mobile-h2: var(--type-mobile-section-title);
  --type-mobile-h3: var(--type-mobile-card-title);
}

.work-page {
  --work-accent-soft: #e7f3fb;
  --work-accent-warm: #b9d8ee;
}

.work-stack {
  gap: 18px;
  padding-right: 0;
}

.work-hero {
  display: grid;
  gap: 24px;
  align-items: start;
}

.work-hero h1 {
  max-width: none;
  margin-top: 0;
}

.work-format-content,
.work-section .section-text {
  display: grid;
  gap: 0.85rem;
}

.work-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.work-format-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.work-format-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 18px 20px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.work-format-card summary::-webkit-details-marker {
  display: none;
}

.work-format-card summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.work-format-card[open] > summary::after {
  transform: rotate(225deg);
}

.work-format-card summary > span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.work-format-card strong {
  font-size: var(--type-card-title);
  line-height: 1.2;
}

.work-format-card summary span span {
  color: var(--muted);
  font-size: var(--type-body-small);
  line-height: 1.35;
  font-weight: 500;
}

.work-format-content {
  padding: 0 20px 20px;
  color: var(--body-text);
}

.work-format-content .section-link-split {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.25em;
  row-gap: 0;
  color: var(--text);
  font-weight: 700;
  width: fit-content;
}

.work-format-content .section-link-split span {
  white-space: nowrap;
}

.work-format-content .section-link-split .inline-disclosure-arrow {
  margin-left: 0.2em;
}

.work-format-actions {
  width: min(100%, 18rem);
  margin-top: 16px;
}

.work-format-content h2,
.work-format-content h3 {
  margin-top: 0.6rem;
  color: var(--text);
}

.work-final .section-text {
  margin-top: 12px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 74% 12%, rgba(190, 222, 246, 0.46), transparent 32%),
    linear-gradient(180deg, #f8fcff 0%, #edf7ff 100%);
  background-color: var(--bg);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.68;
}

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

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

.page-shell {
  width: 100%;
  padding: 18px 0 32px;
}

.layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: var(--layout-column-gap);
  align-items: start;
  min-width: 0;
  padding-inline: var(--layout-gutter);
}

.sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  padding: 2px 18px 0 8px;
  border-right: 1px solid rgba(155, 190, 218, 0.45);
}

.sidebar-panel {
  padding: 18px 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sidebar-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 12px;
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.sidebar-brand-mark {
  width: var(--sidebar-brand-size);
  height: var(--sidebar-brand-size);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center center;
  border: 3px solid var(--panel-strong);
  border-radius: 50%;
  background: #dceffa;
  box-shadow: 0 12px 28px rgba(33, 75, 112, 0.14);
}

.sidebar-logo-mark {
  object-fit: contain;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.sidebar-brand-text {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-brand);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
}

.sidebar-brand-text span {
  display: block;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--panel-strong);
  color: var(--muted);
  font-size: var(--type-control);
  line-height: 1.4;
  font-weight: 600;
}

.sidebar-nav a.is-active {
  color: var(--text);
  font-weight: 700;
}

.sidebar-search {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-placeholder {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--muted);
  font-size: var(--type-control);
}

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

.site-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 6px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
}

.site-search-form input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: var(--type-body);
  outline: none;
}

.site-search-form input[type="search"]::placeholder {
  color: var(--muted);
}

.site-search-form:focus-within {
  border-color: rgba(63, 127, 174, 0.75);
  box-shadow: 0 0 0 4px rgba(63, 127, 174, 0.14);
}

.site-search-submit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--button-dark);
  color: #ffffff;
  cursor: pointer;
}

.site-search-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.search-page-form {
  width: min(100%, 32rem);
  margin-top: 4px;
}

.sidebar-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 2px 10px 0 18px;
}

.mobile-social {
  display: none;
}

.blog-mobile-bar {
  display: none;
}

.contact-mobile-menu {
  display: none;
}

.filter-scroll-button {
  display: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.filter-scroll-button:hover,
.filter-scroll-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(63, 127, 174, 0.58);
  background: #e7f3fb;
  box-shadow: 0 10px 20px rgba(33, 75, 112, 0.1);
  outline: none;
}

.sidebar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--button-dark);
}

.sidebar-social a.is-muted {
  opacity: 0.28;
}

.sidebar-social svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.content-stack {
  display: grid;
  gap: 20px;
  padding-right: 0;
  min-width: 0;
}

.section-card {
  min-width: 0;
  padding: 26px 28px;
  border: 1px solid rgba(199, 219, 234, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.section-card-compact {
  padding-bottom: 30px;
}

#contact.section-card-compact {
  text-align: left;
}

#contact .section-head {
  max-width: none;
}

#contact .section-text {
  max-width: 100%;
}

#contact .hero-actions {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}

#contact .button {
  width: min(66%, 34rem);
  min-height: 62px;
  font-size: var(--type-body);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: stretch;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-block: 24px 14px;
  gap: 34px;
  text-align: center;
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  font-size: var(--type-h1);
  line-height: 1.02;
  margin-top: calc(28px + 1cm);
}

h2 {
  font-size: var(--type-h2);
  line-height: 1.05;
}

h3 {
  font-size: var(--type-h3);
  line-height: 1.12;
}

p {
  margin: 0;
}

.hero-lead,
.section-text,
.card p,
.footer p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

.hero-lead {
  max-width: min(100%, 42rem);
  margin-top: 0;
  margin-block: 0 auto;
  font-family: var(--font-body);
  color: var(--text);
  font-size: var(--type-lead);
  line-height: 1.22;
  font-weight: 700;
  text-align: center;
}

.hero-lead-line {
  display: block;
  color: var(--text);
  font-size: inherit;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
}

.hero-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 52rem);
  gap: 12px;
  margin: 0 auto;
}

.hero-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.28em;
  row-gap: 0.08em;
  min-width: 0;
  width: 100%;
  min-height: 58px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #e7f3fb;
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-cta-card-primary {
  border-color: var(--button-dark);
  background: var(--button-dark);
  color: var(--panel-strong);
}

.hero-cta-card span {
  display: inline-block;
  white-space: nowrap;
}

.hero-cta-card span + span {
  margin-left: 0;
}

.hero-cta-card:hover,
.hero-cta-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(63, 127, 174, 0.55);
  box-shadow: 0 14px 28px rgba(33, 75, 112, 0.12);
}

.hero-cta-card-primary:hover,
.hero-cta-card-primary:focus-visible {
  border-color: var(--button-dark);
  box-shadow: 0 16px 30px rgba(33, 75, 112, 0.12);
}

.hero-cta-card:active {
  transform: translateY(-1px);
}

.hero-card .button {
  width: 12.4rem;
  min-width: 0;
  min-height: 50px;
  padding: 0 12px;
  font-size: var(--type-body);
  line-height: 1.15;
  white-space: nowrap;
}

.hero-card .button span {
  display: inline;
}

.hero-card .button span + span {
  margin-left: 0.25em;
}

.hero-card h1 {
  max-width: 11ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: var(--button-min-width);
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--panel-strong);
  color: var(--text);
  font-size: var(--type-control);
  font-weight: 700;
  white-space: normal;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.82);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.button-primary {
  border-color: var(--button-dark);
  background: var(--button-dark);
  color: var(--panel-strong);
  box-shadow: none;
}

.hero-actions .button:nth-child(2) {
  border-color: var(--line);
  background: #e7f3fb;
  color: var(--text);
  box-shadow: none;
}

.hero-actions .button:nth-child(3) {
  border-color: var(--line);
  background: #e7f3fb;
  color: var(--text);
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(63, 127, 174, 0.55);
  box-shadow: 0 14px 28px rgba(33, 75, 112, 0.12);
}

.button:active {
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--button-dark);
  box-shadow: 0 16px 30px rgba(33, 75, 112, 0.12);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  padding-right: 56px;
}

.portrait-card {
  width: min(100%, 380px);
  padding: 18px;
  border: 1px solid rgba(63, 127, 174, 0.28);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
  box-shadow: 0 18px 44px rgba(33, 75, 112, 0.12);
}

.portrait-card img {
  aspect-ratio: 0.83 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  filter: none;
}

.section-head {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 18px;
}

.section-top {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-text {
  max-width: none;
  margin-top: 12px;
}

/* Block-level text links: the only place for right arrows like "Все истории →". */
.section-link {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.35em;
  max-width: 100%;
  flex-shrink: 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--text);
  outline: none;
  transform: translateX(2px);
}

.section-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.card-interactive,
.message-disclosure,
.guide-grid article,
.article-card,
.contact-link-card,
.single-entry-next-card {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.card-interactive:hover,
.card-interactive:focus-within,
.message-disclosure:hover,
.message-disclosure:focus-within,
.guide-grid article:hover,
.guide-grid article:focus-within,
.article-card:hover,
.article-card:focus-within,
.contact-link-card:hover,
.contact-link-card:focus-visible,
.single-entry-next-card:hover,
.single-entry-next-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(63, 127, 174, 0.55);
  box-shadow: 0 18px 34px rgba(33, 75, 112, 0.12);
  outline: none;
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card p {
  margin-top: 10px;
}

.home-page #cases .cards-3 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-page #cases .card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  text-align: center;
}

.home-page #cases .card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.2vw, 3.45rem);
  font-weight: 800;
  line-height: 0.96;
  white-space: nowrap;
}

.home-page #cases .card p {
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.22;
}

.list-stack,
.feature-stack {
  display: grid;
  gap: 14px;
}

.list-entry,
.feature-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.list-entry {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
}

.list-entry-copy {
  min-width: 0;
}

.list-entry-copy p,
.feature-copy p,
.step-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.68;
}

.feature-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.feature-thumb {
  min-height: 128px;
  border-radius: 18px;
  border: 1px solid rgba(199, 219, 234, 0.78);
}

.feature-thumb-warm {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #b9d8ee 0%, #eef8ff 100%);
}

.feature-thumb-soft {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #f4fbff 0%, #cfe5f5 100%);
}

.feature-copy {
  min-width: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--type-control);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

#knowledge .chip-row span {
  justify-content: center;
  width: 9.5rem;
}

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

.step-card {
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.step-number {
  color: var(--accent);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inner-content-stack .wp-entry h1 {
  max-width: none;
  margin-top: 0;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.wp-entry-content {
  margin-top: 20px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

.wp-entry-content > * + * {
  margin-top: 1em;
}

.single-entry {
  display: grid;
  gap: 18px;
}

.single-entry .section-card {
  border-radius: var(--radius-md);
}

.single-entry .single-entry-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-entry .single-entry-categories a,
.single-entry .single-entry-categories span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(63, 127, 174, 0.48);
  border-radius: 999px;
  background: rgba(63, 127, 174, 0.14);
  color: var(--text);
  font-size: var(--type-control);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.single-entry-hero {
  display: grid;
  gap: 16px;
  padding-block: 24px;
}

.inner-content-stack .single-entry .single-entry-hero h1 {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.single-entry-summary {
  max-width: none;
  margin: 0;
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
}

.single-entry-toc {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: var(--panel-strong);
}

.single-entry-toc h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.single-entry-next-nav h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.single-entry-toc ol {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: single-toc;
  color: var(--muted);
}

.single-entry-toc li {
  display: grid;
  grid-template-columns: 1.55rem minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  counter-increment: single-toc;
}

.single-entry-toc li::before {
  content: counter(single-toc) ".";
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.single-entry-toc a {
  display: inline-block;
  max-width: none;
  color: var(--body-text);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.45;
}

.single-entry-content {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.single-entry-content > * + * {
  margin-top: 0;
}

.single-entry-section {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.single-entry-section > * + * {
  margin-top: 0;
}

.single-entry-content h2 {
  margin: 0;
  font-size: var(--type-h2);
  line-height: 1.22;
  letter-spacing: 0;
  scroll-margin-top: 24px;
}

.single-entry-content h3 {
  margin-top: 0.6em;
  font-size: var(--type-h3);
  letter-spacing: 0;
}

.single-entry-content p,
.single-entry-content li {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

:where(
  .wp-entry-content,
  .single-entry-content,
  .about-prose,
  .message-seo-content,
  .section-text,
  .healing-center-copy,
  .healing-disclosure p,
  .work-format-content,
  .blog-lead,
  .contact-note-card p,
  .contact-form-direct
) a:not(.button):not(.hero-cta-card):not(.section-link):not(.article-card):not(.contact-link-card) {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.single-entry-content strong {
  color: var(--text);
}

.single-entry-content blockquote {
  position: relative;
  margin: 8px 0;
  padding: 30px 24px 22px 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.82);
}

.single-entry-content blockquote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--type-decor-quote);
  line-height: 1;
}

.single-entry-content blockquote p {
  color: var(--text);
  font-size: var(--type-body);
  line-height: 1.62;
}

.single-entry-content ul,
.single-entry-content ol {
  display: grid;
  gap: 0.55em;
  margin: 0;
  padding-left: 1.35em;
}

.single-entry-content figure,
.single-entry-content .wp-block-image,
.single-entry-content .wp-block-embed,
.single-entry-content .wp-block-video,
.single-entry-content .wp-block-audio {
  margin: 1em 0;
}

.single-entry-content .wp-block-image {
  display: grid;
  justify-items: center;
  overflow: visible;
  padding: 0;
  border-radius: 12px;
  background: transparent;
}

.single-entry-content .wp-block-embed,
.single-entry-content .wp-block-video {
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.single-entry-content .wp-block-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
}

.single-entry-content .wp-block-video video,
.single-entry-content .wp-block-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}

.single-entry-content .wp-block-embed__wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.single-entry-content audio {
  width: 100%;
}

.single-entry-footer {
  display: grid;
  gap: 22px;
}

.single-entry-next-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #e7f3fb;
  color: var(--text);
  text-align: center;
  box-shadow: none;
  white-space: normal;
}

.single-entry-next-card strong {
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 800;
  line-height: 1.16;
}

.single-entry-next-panel {
  padding: 22px;
}

.single-entry-next-panel .single-entry-next-nav {
  display: grid;
  gap: 16px;
}

.single-entry-next-panel .single-entry-next-nav h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.single-entry-next-panel .single-entry-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 12px;
  margin: 0;
}

.single-entry-next-panel .single-entry-next-card {
  border-color: var(--line);
  background: #e7f3fb;
}

.single-entry-next-panel .single-entry-next-card strong {
  color: inherit;
}

.contact-stack {
  gap: 20px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: center;
}

.contact-hero h1 {
  max-width: none;
  margin-top: 0;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.contact-lead {
  max-width: 61rem;
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
  font-weight: 400;
}

.response-note {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 152px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #e7f3fb;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
}

.response-note span {
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.response-note strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-h2);
  line-height: 1.05;
}

.contact-form-card {
  padding: 30px;
}

.contact-form-shell {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 252, 0.96));
}

.contact-form-shell form,
.contact-local-form,
.contact-form-shell .wpcf7-form,
.contact-form-shell .wpforms-form,
.contact-form-shell .forminator-ui {
  display: grid;
  gap: 16px;
}

.pololga-contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form-shell p {
  margin: 0;
}

.contact-form-shell .wpcf7-form > p:not(.akismet-fields-container) {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
}

.contact-form-shell label,
.contact-local-form label,
.contact-form-shell .wpforms-field-label,
.contact-form-shell .forminator-label {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 8px;
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
}

.contact-form-shell label span {
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 500;
}

.contact-form-shell .label-note {
  display: inline;
  margin-left: 4px;
}

.contact-form-shell input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-shell textarea,
.contact-form-shell select {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
  font-size: var(--type-body);
  outline: none;
}

.contact-form-shell textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-shell input:focus,
.contact-form-shell textarea:focus,
.contact-form-shell select:focus {
  border-color: rgba(63, 127, 174, 0.78);
  box-shadow: 0 0 0 4px rgba(63, 127, 174, 0.14);
}

.contact-form-shell input::placeholder,
.contact-form-shell textarea::placeholder {
  color: rgba(38, 56, 74, 0.44);
  opacity: 1;
}

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

.contact-form-shell .contact-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.45;
}

.contact-form-shell .contact-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0.18em 0 0;
  accent-color: var(--button-dark);
}

.contact-form-shell .contact-consent span {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

.contact-form-shell .contact-consent a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-form-shell input[type="submit"],
.contact-form-shell button,
.contact-local-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--button-dark);
  border-radius: var(--button-radius);
  background: var(--button-dark);
  color: var(--panel-strong);
  font: inherit;
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-form-shell input[type="submit"]:hover,
.contact-form-shell input[type="submit"]:focus-visible,
.contact-form-shell button:hover,
.contact-form-shell button:focus-visible,
.contact-local-form button:hover,
.contact-local-form button:focus-visible {
  transform: translateY(-3px);
  border-color: var(--button-dark);
  box-shadow: 0 16px 30px rgba(33, 75, 112, 0.12);
  outline: none;
}

.contact-form-status {
  border-radius: 18px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-form-status.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.contact-form-status.is-success {
  background: rgba(92, 128, 91, 0.12);
  border: 1px solid rgba(92, 128, 91, 0.28);
  color: #314d32;
}

.contact-form-status.is-error {
  background: rgba(148, 55, 39, 0.1);
  border: 1px solid rgba(148, 55, 39, 0.26);
  color: #6c2e23;
}

.contact-form-status strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form-status ul {
  margin: 0;
  padding-left: 20px;
}

.contact-form-direct {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
}

.contact-form-direct a {
  color: var(--text);
  font-weight: 700;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.topic-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.topic-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.topic-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.topic-card li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-note-card {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 252, 0.96));
}

.contact-note-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
  font-weight: 400;
}

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

.contact-link-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  text-align: center;
}

.contact-link-card svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--accent);
  fill: currentColor;
}

.contact-link-card span {
  color: var(--accent);
  font-size: var(--type-body);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-link-card strong {
  color: var(--text);
  font-size: var(--type-body);
  line-height: 1.18;
}

.contact-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.contact-final .hero-actions {
  margin-top: 0;
  justify-content: center;
}

.contact-final .button,
.contact-final .hero-cta-card {
  min-width: 11.4rem;
}

.about-page {
  --about-accent: var(--accent);
  --about-accent-soft: rgba(63, 127, 174, 0.12);
  --about-accent-line: rgba(63, 127, 174, 0.36);
}

.about-stack {
  gap: 20px;
}

.about-hero {
  display: block;
}

.about-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 76rem;
}

.about-mobile-disclosure summary {
  list-style: none;
}

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

.about-mobile-disclosure summary h1,
.about-mobile-disclosure summary h2 {
  margin: 0;
}

.about-mobile-disclosure summary + .about-hero-copy,
.about-mobile-disclosure summary + .about-prose {
  margin-top: 14px;
}

.about-kicker {
  margin: 0;
  color: var(--about-accent);
  font-size: var(--type-body);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: none;
  margin-top: 0;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.about-lead {
  display: grid;
  gap: 12px;
  max-width: 68rem;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2px;
}

.about-hero-note {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--about-accent-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(63, 127, 174, 0.11)),
    #e7f3fb;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
}

.about-hero-note span {
  color: var(--about-accent);
  font-size: var(--type-body);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-hero-note strong {
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-h2);
  line-height: 1.08;
}

.about-text-section {
  display: grid;
  gap: 14px;
}

.about-text-section h2,
.about-timeline h2,
.about-beliefs h2 {
  max-width: none;
  font-size: var(--type-h2);
  line-height: 1.08;
}

.about-prose {
  display: grid;
  gap: 13px;
  max-width: 72rem;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

.about-prose blockquote {
  margin: 6px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--about-accent-line);
  border-left: 5px solid var(--about-accent);
  border-radius: var(--radius-md);
  background: var(--about-accent-soft);
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.28;
}

.about-accent-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 252, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.about-timeline {
  display: grid;
  gap: 14px;
}

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

.about-steps article {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.about-steps span {
  color: var(--about-accent);
  font-size: var(--type-body);
  font-weight: 800;
  letter-spacing: 0;
}

.about-steps p,
.about-depth-card p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.66;
}

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

.about-depth-card {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.about-depth-card h3 {
  font-size: var(--type-h3);
  line-height: 1.12;
}

.about-depth-card p {
  margin-top: 12px;
}

.about-beliefs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-beliefs li {
  position: relative;
  min-height: 68px;
  padding: 18px 18px 18px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  color: var(--body-text);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.5;
}

.about-beliefs li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-accent);
}

.about-final {
  border-color: var(--about-accent-line);
}

.about-final-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
}

.process-stack {
  gap: 20px;
}

.process-hero h1 {
  max-width: none;
  margin: 0;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.process-start {
  display: grid;
  gap: 18px;
  padding-block: 24px;
}

.process-start h2 {
  margin: 0;
  color: var(--text);
  font-size: var(--type-h2);
  line-height: 1.12;
}

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

.process-start-actions .hero-cta-card {
  width: 100%;
  min-height: 56px;
}

.process-start-contact {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.6;
}

.process-start-contact a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.process-poster-section {
  display: flex;
  justify-content: center;
  padding: 14px;
}

.process-poster {
  display: block;
  width: min(100%, 920px);
}

.process-poster img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.blog-stack {
  gap: 20px;
}

.blog-intro {
  padding-block: 22px;
}

.blog-intro h1 {
  margin: 0 0 12px;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.blog-lead {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.58;
}

.blog-lead p {
  margin: 0 0 14px;
}

.blog-lead p:last-child {
  margin-bottom: 0;
}

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

.guide-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.guide-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(63, 127, 174, 0.18);
  color: var(--text);
  font-weight: 800;
}

.guide-grid h3,
.filter-block h3,
.article-card h3 {
  margin: 0;
}

.guide-grid h3 {
  font-size: var(--type-h3);
  line-height: 1.12;
}

.guide-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-taxonomy {
  display: grid;
  gap: 18px;
  padding-block: 22px;
}

.filter-block {
  display: grid;
  gap: 10px;
}

.filter-block h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-h3);
  line-height: 1.12;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row a,
.pill-row span,
.article-categories a,
.article-categories span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--text);
  font-size: var(--type-control);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.pill-row a:hover,
.pill-row a:focus-visible,
.article-categories a:hover,
.article-categories a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(63, 127, 174, 0.58);
  background: #e7f3fb;
  box-shadow: 0 10px 20px rgba(33, 75, 112, 0.09);
  outline: none;
}

.pill-row a.is-active {
  background: var(--button-dark);
  border-color: var(--button-dark);
  color: #ffffff;
}

.article-stack {
  display: grid;
  gap: 14px;
}

.texts-route-grid,
.texts-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.texts-route-card,
.texts-check-card {
  align-content: start;
}

.texts-route-card {
  min-height: 188px;
  color: var(--text);
  text-decoration: none;
}

.texts-check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.texts-check-card {
  gap: 12px;
  min-height: 184px;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
}

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

.texts-direction-card {
  min-height: 168px;
  align-content: start;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
}

.texts-direction-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.16;
}

.texts-direction-card p {
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.48;
}

.article-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.article-card-link {
  color: var(--text);
  text-decoration: none;
}

.article-card-link:focus-visible {
  outline: none;
}

.article-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #e7f3fb 100%);
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  line-height: 1.12;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.article-read-link.is-placeholder {
  align-self: end;
  cursor: default;
}

.search-highlight {
  padding: 0 0.16em;
  border-radius: 0.3em;
  background: #cfe5f5;
  color: var(--text);
  font-weight: 800;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.article-card-empty {
  gap: 18px;
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-categories a,
.article-categories span {
  min-height: 32px;
  border-color: rgba(63, 127, 174, 0.48);
  background: rgba(63, 127, 174, 0.14);
  font-size: var(--type-control);
}

.article-read-link {
  justify-self: start;
  margin-top: 2px;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.blog-pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--muted);
  font-size: var(--type-control);
  font-weight: 700;
}

.blog-pagination .current,
.blog-pagination [aria-current="page"],
.blog-pagination a.is-current {
  background: var(--button-dark);
  color: #ffffff;
  border-color: var(--button-dark);
  box-shadow: 0 10px 22px rgba(33, 75, 112, 0.14);
}

.blog-pagination a.page-numbers:hover,
.blog-pagination a.page-numbers:focus-visible {
  border-color: rgba(63, 127, 174, 0.72);
  background: #e7f3fb;
  color: var(--text);
  outline: none;
}

.blog-path {
  display: grid;
  gap: 20px;
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.message-stack {
  gap: 20px;
}

.message-page .contact-mobile-menu {
  display: none;
}

.message-page .sidebar-intro {
  justify-content: center;
}

.message-sidebar-portrait {
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--panel-strong);
  border-radius: 50%;
  background: #dceffa;
  filter: none;
  box-shadow: 0 12px 28px rgba(33, 75, 112, 0.14);
}

.message-hero h1 {
  max-width: none;
  margin: 0 0 16px;
  font-size: var(--type-h1);
  line-height: 1.05;
}

.message-subtitle {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.28;
}

.message-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.message-note-card,
.practice-card {
  width: 100%;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.message-oracle h2,
.message-practice h2 {
  font-size: var(--type-h2);
  line-height: 1.08;
  letter-spacing: 0;
}

.message-note-card h2,
.message-disclosure summary,
.practice-disclosure summary {
  color: var(--text);
  font-size: var(--type-card-title);
  line-height: 1.2;
  letter-spacing: 0;
}

.message-disclosure summary {
  position: relative;
  display: block;
  margin: 0;
  padding-right: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.message-disclosure summary::-webkit-details-marker {
  display: none;
}

.message-disclosure p {
  margin-top: 10px;
}

.message-disclosure summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.message-disclosure[open] summary::after {
  transform: translateY(-38%) rotate(225deg);
}

.message-seo summary {
  display: inline-block;
  padding-right: 0;
}

.message-seo summary::after {
  content: none;
}

.inline-disclosure-arrow {
  display: inline;
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--type-control);
  font-weight: 600;
}

.message-seo[open] .inline-disclosure-arrow {
  color: var(--muted);
}

.message-note-card p,
.message-oracle p,
.practice-card p,
.message-closing p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

.message-note-card p + p,
.message-closing p + p {
  margin-top: 12px;
}

.message-oracle {
  display: grid;
  gap: 22px;
}

.message-oracle-copy {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.message-oracle .section-text {
  max-width: none;
}

.waka-widget {
  display: grid;
  gap: 18px;
}

.waka-image-shell {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #e7f3fb 100%);
}

.waka-image {
  width: auto;
  max-width: min(100%, 760px);
  max-height: min(48vh, 460px);
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(33, 75, 112, 0.12);
}

.waka-error {
  max-width: 34rem;
  text-align: center;
}

.waka-actions {
  display: grid;
  grid-template-columns: minmax(12rem, 0.78fr) minmax(23rem, 1.22fr);
  gap: 16px;
  align-items: stretch;
}

.waka-random-button {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 106px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.82);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.waka-random-button:hover,
.waka-random-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(63, 127, 174, 0.6);
  background: #e7f3fb;
  box-shadow: 0 14px 28px rgba(33, 75, 112, 0.12);
  outline: none;
}

.waka-random-button:active {
  transform: translateY(-1px);
}

.waka-number-form {
  display: grid;
  gap: 8px;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--panel-strong);
}

.waka-number-form label {
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 800;
}

.waka-number-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, auto);
  gap: 10px;
}

.waka-number-row input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--button-radius);
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
  font-size: var(--type-body);
  outline: none;
}

.waka-number-row input:focus {
  border-color: rgba(63, 127, 174, 0.78);
  box-shadow: 0 0 0 4px rgba(63, 127, 174, 0.14);
}

.waka-number-row .button {
  min-width: 8rem;
  min-height: 46px;
}

.waka-form-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.practice-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.practice-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.practice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(63, 127, 174, 0.38);
  border-radius: 50%;
  background: rgba(63, 127, 174, 0.12);
  font-size: var(--type-icon);
  line-height: 1;
}

.practice-summary {
  display: grid;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  list-style: none;
}

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

.practice-name {
  min-width: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}

.practice-preview {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

.practice-arrow {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.practice-disclosure[open] .practice-arrow {
  transform: rotate(225deg);
}

.practice-card p {
  margin-top: 10px;
}

.practice-more {
  display: none;
}

.practice-disclosure[open] .practice-more {
  display: block;
}

.practice-more p {
  margin-top: 10px;
}

.message-closing {
  width: 100%;
  padding: 22px 28px;
  border: 1px solid rgba(199, 219, 234, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.message-seo-content {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.message-seo-content h2 {
  margin-top: 8px;
  color: var(--text);
  font-size: var(--type-h2);
  line-height: 1.18;
  letter-spacing: 0;
}

.message-seo-content h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: var(--type-h3);
  line-height: 1.22;
  letter-spacing: 0;
}

.message-seo-content p {
  margin: 0;
}

.message-seo-content .list-entry h3 {
  margin: 0;
}

.message-seo-content .list-entry-copy p {
  margin-top: 10px;
}

.message-seo-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.message-seo-content li {
  margin: 0;
}

.message-collapse-button {
  justify-self: start;
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: var(--type-control);
  font-weight: 600;
  cursor: pointer;
}

.healing-room-page {
  --healing-accent: #3f7fae;
  --healing-accent-soft: rgba(63, 127, 174, 0.12);
  --healing-accent-line: rgba(63, 127, 174, 0.34);
}

.healing-room-stack {
  gap: 20px;
}

.healing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.2fr);
  gap: 18px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 252, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.healing-hero-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
}

.healing-kicker {
  margin: 0;
  color: var(--healing-accent);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.healing-hero h1 {
  max-width: none;
  margin: 0;
  font-size: var(--type-h1);
  line-height: 1.02;
}

.healing-lead {
  max-width: none;
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.62;
}

.healing-alert {
  max-width: none;
  padding: 14px 16px;
  border: 1px solid var(--healing-accent-line);
  border-radius: var(--button-radius);
  background: var(--healing-accent-soft);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.45;
}

.healing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 30rem);
  gap: 12px;
  margin-top: 4px;
  margin-inline: 0;
}

.healing-hero-facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  min-width: 0;
}

.healing-hero-facts div {
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.healing-hero-facts span {
  color: var(--healing-accent);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.healing-hero-facts strong {
  margin-top: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.22;
}

.healing-center {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-color: var(--healing-accent-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 244, 252, 0.92)),
    var(--panel);
}

.healing-center-photo {
  width: min(100%, 220px);
  margin: 0;
  justify-self: center;
}

.healing-center-photo img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(33, 75, 112, 0.12);
}

.healing-center-copy,
.healing-not-simple > div:first-child {
  display: grid;
  gap: 12px;
}

.healing-center-copy p,
.healing-audience-card p,
.healing-not-simple p,
.healing-disclosure p,
.healing-steps li span {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.68;
}

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

.healing-audience-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.healing-audience-card summary {
  max-width: 25rem;
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.32;
}

.healing-editor-section {
  background: var(--panel);
}

.healing-editor-content {
  max-width: none;
}

.healing-not-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 22px;
  align-items: center;
}

.healing-action-tags {
  display: grid;
  gap: 10px;
}

.healing-action-note {
  margin: 0 0 2px;
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.3;
}

.healing-action-tags span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--panel-strong);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.2;
}

.healing-guide-grid,
.healing-faq-list {
  display: grid;
  gap: 12px;
}

.healing-guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.healing-disclosure {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.healing-disclosure summary {
  position: relative;
  display: block;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.32;
  cursor: default;
  list-style: none;
}

.healing-disclosure summary::-webkit-details-marker {
  display: none;
}

.healing-disclosure summary::after {
  content: none;
}

.healing-disclosure[open] summary::after {
  transform: none;
}

.healing-faq .healing-faq-item summary {
  padding-right: 28px;
  cursor: pointer;
}

.healing-faq .healing-faq-item summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--healing-accent);
  border-bottom: 2px solid var(--healing-accent);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.healing-faq .healing-faq-item[open] summary::after {
  transform: translateY(-38%) rotate(225deg);
}

.healing-disclosure p {
  margin-top: 12px;
}

.healing-steps ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: healing-steps;
}

.healing-steps li {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 54px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  counter-increment: healing-steps;
}

.healing-steps li::before {
  content: counter(healing-steps, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--healing-accent);
  font-size: var(--type-body);
  font-weight: 800;
  line-height: 1;
}

.healing-steps li strong {
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.28;
}

.healing-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-color: var(--healing-accent-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 252, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.healing-support h2 {
  max-width: 44rem;
  margin-top: 8px;
}

.healing-support-actions,
.healing-final .hero-actions {
  display: flex;
  justify-content: center;
}

.footer {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 4px 8px 0;
  text-align: center;
}

.footer a {
  color: inherit;
}

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  h1 {
    font-size: var(--type-h1);
  }

  .hero-card {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  }

  .hero-visual {
    padding-right: 20px;
  }

  .hero-card .button {
    width: 11.2rem;
    font-size: var(--type-control);
  }

  .hero-cta-cards {
    width: min(100%, 45rem);
  }

  .hero-cta-card {
    min-height: 56px;
  }

}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .sidebar {
    position: static;
    order: 2;
    padding: 0;
    border-right: 0;
  }

  .content-stack {
    display: contents;
    order: 1;
    padding: 0;
  }

  .home-page #cases .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-stack > * {
    order: 3;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    margin-top: 0;
  }

  .hero-card {
    order: 1;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 24px;
    padding-block: 8px 4px;
  }

  .hero-visual {
    justify-content: center;
    padding-right: 0;
  }

  .hero-copy .hero-actions {
    width: 100%;
  }

  .hero-copy .hero-cta-cards {
    width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .sidebar .sidebar-social {
    display: none;
  }

  .contact-page .sidebar .sidebar-social,
  .inner-page .sidebar .sidebar-social,
  .message-page .sidebar .sidebar-social,
  .blog-page .sidebar .sidebar-social {
    display: flex;
    justify-content: center;
  }

  .blog-page .sidebar > .sidebar-social {
    display: none;
  }

  .blog-page .sidebar {
    order: 1;
  }

  .blog-page .sidebar-panel {
    display: none;
  }

  .blog-mobile-bar {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .blog-mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .blog-mobile-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: none;
  }

  .blog-mobile-search {
    width: 100%;
    min-height: 42px;
  }

  .blog-mobile-menu {
    position: relative;
  }

  .blog-mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--panel-strong);
    color: var(--text);
    font-size: var(--type-body);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }

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

  .blog-mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 10;
    display: grid;
    gap: 8px;
    width: min(230px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel-strong);
    box-shadow: var(--shadow);
  }

  .blog-mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--muted);
    font-size: var(--type-body);
    font-weight: 700;
  }

  .blog-mobile-menu nav a.is-active {
    color: var(--text);
  }

  .blog-page .blog-intro {
    order: 2;
  }

  .blog-page .blog-taxonomy {
    order: 3;
  }

  .blog-page .blog-list {
    order: 4;
  }

  .blog-page .blog-path {
    order: 5;
  }

  .inner-page .sidebar,
  .contact-page .sidebar,
  .process-page .sidebar,
  .message-page .sidebar,
  .single-entry-page .sidebar {
    order: 1;
    position: relative;
    z-index: 20;
    margin-bottom: 8px;
  }

  .home-page .sidebar-panel,
  .inner-page .sidebar-panel,
  .contact-page .sidebar-panel,
  .process-page .sidebar-panel,
  .message-page .sidebar-panel,
  .single-entry-page .sidebar-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .home-page .sidebar-intro,
  .inner-page .sidebar-intro,
  .contact-page .sidebar-intro,
  .process-page .sidebar-intro,
  .message-page .sidebar-intro,
  .single-entry-page .sidebar-intro {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 168px;
    overflow: visible;
  }

  .home-page .sidebar-brand,
  .inner-page .sidebar-brand,
  .contact-page .sidebar-brand,
  .process-page .sidebar-brand,
  .message-page .sidebar-brand,
  .single-entry-page .sidebar-brand {
    gap: 0;
    margin-inline: 0;
    padding-top: 0;
  }

  .home-page .sidebar-brand-mark,
  .inner-page .sidebar-brand-mark,
  .contact-page .sidebar-brand-mark,
  .process-page .sidebar-brand-mark,
  .message-page .sidebar-brand-mark,
  .single-entry-page .sidebar-brand-mark {
    width: var(--mobile-sidebar-brand-size);
    height: var(--mobile-sidebar-brand-size);
  }

  .home-page .contact-mobile-menu,
  .inner-page .contact-mobile-menu,
  .contact-page .contact-mobile-menu,
  .process-page .contact-mobile-menu,
  .message-page .contact-mobile-menu,
  .single-entry-page .contact-mobile-menu {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    z-index: 30;
  }

  .home-page .contact-mobile-menu summary,
  .inner-page .contact-mobile-menu summary,
  .contact-page .contact-mobile-menu summary,
  .process-page .contact-mobile-menu summary,
  .message-page .contact-mobile-menu summary,
  .single-entry-page .contact-mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-size: var(--type-control);
    font-weight: 700;
    cursor: pointer;
  }

  .home-page .contact-mobile-menu summary::-webkit-details-marker,
  .inner-page .contact-mobile-menu summary::-webkit-details-marker,
  .contact-page .contact-mobile-menu summary::-webkit-details-marker,
  .process-page .contact-mobile-menu summary::-webkit-details-marker,
  .message-page .contact-mobile-menu summary::-webkit-details-marker,
  .single-entry-page .contact-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .home-page .contact-mobile-menu nav,
  .inner-page .contact-mobile-menu nav,
  .contact-page .contact-mobile-menu nav,
  .process-page .contact-mobile-menu nav,
  .message-page .contact-mobile-menu nav,
  .single-entry-page .contact-mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
    display: grid;
    gap: 4px;
    width: min(220px, calc(100vw - 72px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .home-page .contact-mobile-menu nav a,
  .inner-page .contact-mobile-menu nav a,
  .contact-page .contact-mobile-menu nav a,
  .process-page .contact-mobile-menu nav a,
  .message-page .contact-mobile-menu nav a,
  .single-entry-page .contact-mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: var(--type-control);
    text-decoration: none;
    white-space: nowrap;
  }

  .home-page .contact-mobile-menu nav a.is-active,
  .inner-page .contact-mobile-menu nav a.is-active,
  .contact-page .contact-mobile-menu nav a.is-active,
  .process-page .contact-mobile-menu nav a.is-active,
  .message-page .contact-mobile-menu nav a.is-active,
  .single-entry-page .contact-mobile-menu nav a.is-active {
    color: var(--text);
    font-weight: 700;
  }

  .home-page .sidebar-brand-text,
  .inner-page .sidebar-brand-text,
  .contact-page .sidebar-brand-text,
  .process-page .sidebar-brand-text,
  .message-page .sidebar-brand-text,
  .single-entry-page .sidebar-brand-text,
  .home-page .sidebar-nav,
  .inner-page .sidebar-nav,
  .contact-page .sidebar-nav,
  .process-page .sidebar-nav,
  .message-page .sidebar-nav,
  .single-entry-page .sidebar-nav,
  .inner-page .sidebar-search,
  .contact-page .sidebar-search,
  .process-page .sidebar-search,
  .message-page .sidebar-search,
  .single-entry-page .sidebar-search,
  .home-page .sidebar .sidebar-social,
  .inner-page .sidebar .sidebar-social,
  .single-entry-page .sidebar .sidebar-social,
  .message-page .sidebar .sidebar-social,
  .process-page .sidebar .sidebar-social,
  .contact-page .sidebar .sidebar-social {
    display: none;
  }

  .contact-page .contact-hero {
    order: 2;
    margin-top: 8px;
  }

  .about-hero {
    order: 2;
  }

  .about-hero,
  .about-final {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    max-width: none;
  }

  .about-steps,
  .about-depth-grid,
  .about-beliefs ul {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-final {
    grid-template-columns: 1fr;
  }

  .response-note {
    min-height: auto;
  }

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

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

  .message-intro-grid,
  .healing-hero,
  .healing-center,
  .healing-not-simple,
  .healing-support,
  .practice-card-grid {
    grid-template-columns: 1fr;
  }

  .healing-audience-grid,
  .healing-guide-grid,
  .healing-steps ol {
    grid-template-columns: 1fr;
  }

  .healing-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .healing-hero-facts div {
    min-height: 96px;
  }

  .waka-actions {
    grid-template-columns: 1fr;
  }

  .waka-random-button,
  .waka-number-form {
    justify-self: stretch;
    width: 100%;
  }

  .single-entry-next-grid {
    grid-template-columns: 1fr;
  }

  .single-entry-next-panel .single-entry-next-grid {
    grid-template-columns: 1fr;
  }

  .contact-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .contact-page .contact-link-card {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
  }

  .contact-page .contact-link-card svg {
    width: 30px;
    height: 30px;
  }

  .contact-page .contact-link-card strong {
    display: none;
  }

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

  .contact-final .hero-actions {
    justify-content: center;
  }

  .mobile-social {
    display: flex;
    justify-content: center;
    order: 98;
    margin: 4px 0 0;
    padding: 14px 0 2px;
  }

  .footer {
    order: 99;
  }

  .cards-3,
  .cards-2,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px 0 28px;
  }

  .layout {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    padding: 0 12px;
    overflow-x: hidden;
  }

  .layout.contact-page,
  .layout.process-page,
  .layout.message-page,
  .layout.single-entry-page {
    width: 100vw;
    max-width: 100vw;
    padding-inline: 0;
  }

  .sidebar-social {
    gap: 10px;
  }

  .sidebar-social a {
    width: 40px;
    height: 40px;
  }

  .sidebar-social svg {
    width: 24px;
    height: 24px;
  }

  .sidebar-panel,
  .section-card {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    justify-self: center;
    overflow: hidden;
    padding: 18px;
  }

  .home-page .sidebar-panel,
  .inner-page .sidebar-panel,
  .contact-page .sidebar-panel,
  .process-page .sidebar-panel,
  .message-page .sidebar-panel,
  .single-entry-page .sidebar-panel {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    padding: 2px 0 0;
    overflow: visible;
  }

  .inner-page .section-card,
  .contact-page .section-card,
  .process-page .section-card,
  .message-page .section-card,
  .single-entry-page .section-card {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    margin-inline: auto;
    padding: 16px;
  }

  .inner-page .section-card *,
  .contact-page .section-card *,
  .process-page .section-card *,
  .message-page .section-card *,
  .single-entry-page .section-card * {
    max-width: 100%;
  }

  .section-card > *,
  .section-head,
  .section-text,
  .card,
  .list-entry,
  .feature-card,
  .step-card {
    max-width: 100%;
  }

  .section-text,
  .card p,
  .list-entry-copy p,
  .feature-copy p,
  .step-card p {
    overflow-wrap: break-word;
  }

  .home-page #cases .cards-3 {
    grid-template-columns: 1fr;
  }

  .section-footer {
    margin-top: 24px;
  }

  .sidebar-brand-mark {
    width: var(--mobile-sidebar-brand-size);
    height: var(--mobile-sidebar-brand-size);
  }

  .sidebar-brand-text {
    font-size: var(--type-mobile-brand);
    line-height: 1.2;
  }

  h1 {
    max-width: 100%;
    font-size: var(--type-mobile-h1);
    margin-top: 0;
  }

  body {
    font-size: var(--type-mobile-body);
    line-height: 1.62;
  }

  h2 {
    font-size: var(--type-mobile-h2);
    line-height: 1.08;
  }

  h3 {
    font-size: var(--type-mobile-h3);
    line-height: 1.12;
  }

  .contact-mobile-menu summary,
  .contact-mobile-menu nav a,
  .sidebar-nav a,
  .button,
  .hero-cta-card,
  .chip-row span,
  .article-categories a,
  .article-categories span,
  .blog-pagination .page-numbers {
    font-size: var(--type-mobile-control);
  }

  .hero-lead,
  .section-text,
  .card p,
  .footer p,
  .wp-entry-content,
  .single-entry-summary,
  .single-entry-toc a,
  .single-entry-content p,
  .single-entry-content li,
  .contact-lead,
  .contact-note-card p,
  .contact-form-status,
  .contact-form-direct,
  .about-lead,
  .about-prose,
  .about-steps p,
  .about-depth-card p,
  .about-beliefs li,
  .about-final-title,
  .blog-lead,
  .blog-page .section-text,
  .guide-grid p,
  .article-card p,
  .message-note-card p,
  .message-oracle p,
  .practice-preview,
  .practice-card p,
  .message-closing p,
  .waka-form-note {
    font-size: var(--type-mobile-body);
  }

  .hero-card {
    padding-top: 8px;
  }

  .hero-copy {
    gap: 24px;
    padding-block: 0 4px;
  }

  .hero-lead {
    max-width: min(100%, 22rem);
    font-size: var(--type-mobile-lead);
    line-height: 1.2;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
  }

  .hero-cta-cards {
    grid-template-columns: 1fr;
    width: min(calc(100vw - 56px), 22rem);
    margin-top: 8px;
  }

  .hero-cta-card {
    min-height: 50px;
    font-size: var(--type-mobile-control);
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-card .button {
    width: min(calc(100vw - 56px), 22rem);
    font-size: var(--type-mobile-control);
  }

  .portrait-card {
    width: min(100%, 300px);
  }

  .list-entry {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-hero h1,
  .about-hero h1,
  .process-hero h1,
  .blog-intro h1,
  .message-hero h1,
  .inner-content-stack .wp-entry h1 {
    font-size: var(--type-mobile-h1);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .about-hero-note,
  .about-depth-card,
  .about-steps article,
  .about-beliefs li,
  .about-prose blockquote {
    padding: 16px;
  }

  .about-lead,
  .about-prose {
    font-size: var(--type-mobile-body);
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .about-mobile-disclosure summary {
    position: relative;
    min-height: 54px;
    padding: 0 34px 0 0;
    cursor: pointer;
  }

  .about-mobile-disclosure summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .about-mobile-disclosure[open] summary::after {
    transform: translateY(-38%) rotate(225deg);
  }

  .about-mobile-disclosure .about-prose,
  .about-mobile-disclosure .about-lead,
  .about-mobile-disclosure .about-actions {
    margin-top: 0;
  }

  .about-mobile-disclosure summary + .about-hero-copy,
  .about-mobile-disclosure summary + .about-prose {
    margin-top: 16px;
  }

  .about-hero.about-mobile-disclosure summary h1 {
    font-size: var(--type-mobile-h1);
    line-height: 1.06;
  }

  .about-beliefs li {
    padding-left: 44px;
  }

  .about-beliefs li::before {
    left: 18px;
  }

  .inner-content-stack .single-entry .single-entry-hero h1 {
    font-size: var(--type-mobile-h1);
    line-height: 1.06;
  }

  .single-entry-section,
  .single-entry-toc,
  .single-entry-footer {
    padding: 18px;
  }

  .single-entry-content h2 {
    font-size: var(--type-mobile-h2);
  }

  .single-entry-content blockquote {
    padding: 58px 18px 18px;
  }

  .single-entry-content blockquote::before {
    left: 18px;
    top: 8px;
    font-size: var(--type-mobile-decor-quote);
  }

  .single-entry-next-grid {
    grid-template-columns: 1fr;
  }

  .single-entry-next-panel {
    padding: 18px;
  }

  .single-entry-next-panel .single-entry-next-grid {
    grid-template-columns: 1fr;
  }

  .single-entry-next-panel .single-entry-next-card {
    min-height: 58px;
  }

  .single-entry-toc h2 {
    font-size: var(--type-mobile-h3);
  }

  .single-entry-next-panel .single-entry-next-nav h2 {
    font-size: var(--type-mobile-h2);
  }

  .contact-lead {
    font-size: var(--type-mobile-body);
  }

  .contact-page .contact-form-card {
    padding: 16px;
  }

  .contact-page .contact-form-shell {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }

  .contact-page .contact-form-shell input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
  .contact-page .contact-form-shell textarea,
  .contact-page .contact-form-shell select {
    min-width: 0;
    padding-inline: 11px;
    font-size: var(--type-mobile-body);
  }

  .contact-page .contact-form-shell textarea {
    min-height: 220px;
    resize: vertical;
  }

  .contact-page .contact-form-shell input::placeholder,
  .contact-page .contact-form-shell textarea::placeholder {
    font-size: var(--type-mobile-body);
  }

  .contact-page .contact-lead,
  .process-page .section-text,
  .message-page .section-text,
  .contact-page .section-text,
  .contact-page .contact-form-direct {
    overflow-wrap: anywhere;
  }

  .process-poster-section {
    padding: 8px;
  }

  .process-start {
    gap: 14px;
    padding-block: 18px;
  }

  .process-start-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-start-actions .hero-cta-card {
    min-height: 50px;
  }

  .process-start-contact {
    font-size: var(--type-mobile-body);
    line-height: 1.55;
  }

  .process-poster {
    width: 100%;
  }

  .process-poster img {
    border-radius: 12px;
  }

  .message-subtitle {
    font-size: var(--type-mobile-h3);
  }

  .message-note-card,
  .healing-disclosure,
  .practice-card {
    padding: 14px;
  }

  .message-oracle h2,
  .healing-hero h1,
  .message-practice h2 {
    font-size: var(--type-mobile-h2);
    line-height: 1.08;
  }

  .message-note-card h2,
  .message-disclosure summary,
  .healing-disclosure summary,
  .practice-disclosure summary {
    font-size: var(--type-mobile-h3);
    line-height: 1.22;
  }

  .healing-mobile-accordion summary {
    padding-right: 28px;
    cursor: pointer;
  }

  .healing-mobile-accordion summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--healing-accent);
    border-bottom: 2px solid var(--healing-accent);
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .healing-mobile-accordion[open] summary::after {
    transform: translateY(-38%) rotate(225deg);
  }

  .message-note-card p,
  .message-oracle p,
  .healing-lead,
  .healing-alert,
  .healing-center-copy p,
  .healing-audience-card p,
  .healing-not-simple p,
  .healing-disclosure p,
  .healing-steps li span,
  .practice-card p,
  .message-closing p {
    font-size: var(--type-mobile-body);
    line-height: 1.62;
  }

  .healing-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .healing-actions .hero-cta-card {
    width: auto;
    min-width: 0;
  }

  .healing-actions .hero-cta-card-primary {
    grid-column: 1 / -1;
  }

  .healing-support-actions,
  .healing-support-actions .button,
  .healing-support-actions .hero-cta-card,
  .healing-final .hero-cta-card {
    width: 100%;
  }

  .healing-hero-facts {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel-strong);
    text-align: center;
  }

  .healing-hero-facts::before {
    content: "Коротко";
    grid-column: 1 / -1;
    padding-top: 0;
    color: var(--muted);
    font-size: var(--type-mobile-body);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .healing-hero-facts div {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .healing-hero-facts span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .healing-hero-facts strong {
    margin-top: 0;
    color: var(--text);
    font-size: var(--type-mobile-body);
    line-height: 1.35;
  }

  .waka-image-shell {
    min-height: 220px;
    padding: 12px;
  }

  .waka-image {
    max-height: 64vh;
  }

  .waka-number-row {
    grid-template-columns: 1fr;
  }

  .waka-random-button {
    justify-self: center;
    width: min(100%, 18.5rem);
    min-height: 54px;
  }

  .message-closing {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    justify-self: center;
    padding: 18px;
  }

  .blog-page .section-card {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    margin-inline: auto;
    padding: 16px;
  }

  .blog-page .sidebar-panel {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    justify-self: center;
  }

  .blog-mobile-bar {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    justify-self: center;
  }

  .blog-intro h1 {
    font-size: var(--type-mobile-h1);
    line-height: 1.06;
  }

  .blog-taxonomy {
    gap: 16px;
  }

  .texts-directions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .texts-direction-card {
    min-height: auto;
    padding: 14px;
  }

  .texts-route-grid,
  .texts-check-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .texts-route-card,
  .texts-check-card {
    min-height: auto;
    padding: 14px;
  }

  .blog-taxonomy .filter-block {
    position: relative;
    padding-bottom: 34px;
  }

  .blog-taxonomy .filter-block::after {
    content: none;
  }

  .blog-taxonomy .filter-scroll-button {
    position: absolute;
    right: 8px;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(199, 219, 234, 0.86);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--button-dark);
    font-size: var(--type-scroll-arrow);
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(33, 75, 112, 0.1);
    cursor: pointer;
  }

  .pill-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -16px -18px;
    padding: 2px 56px 6px 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .pill-row::-webkit-scrollbar {
    display: none;
  }

  .pill-row a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .blog-lead,
  .blog-page .section-text,
  .article-card p {
    overflow-wrap: anywhere;
  }

  .blog-pagination {
    gap: 6px;
    padding-top: 18px;
  }

  .blog-pagination .page-numbers {
    min-width: 34px;
    min-height: 34px;
    padding: 0 9px;
  }

  .path-actions,
  .path-actions .button,
  .empty-actions,
  .empty-actions .button {
    width: 100%;
  }

  .contact-form-grid,
  .contact-links-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell input[type="submit"],
  .contact-form-shell button,
  .contact-local-form button {
    width: 100%;
  }

  .work-stack {
    padding-right: 0;
  }

  .work-format-card summary {
    align-items: flex-start;
    padding: 16px;
  }

  .work-format-card summary::after {
    width: 10px;
    height: 10px;
  }

  .work-format-content {
    padding: 0 16px 18px;
  }

  .work-format-content .section-link-split {
    display: grid;
    grid-template-columns: auto auto;
    justify-items: start;
    align-items: baseline;
    column-gap: 0.25em;
    row-gap: 0.1rem;
  }

  .work-format-content .section-link-split span:first-child {
    grid-column: 1 / -1;
  }

  .work-format-content .section-link-split .inline-disclosure-arrow {
    margin-left: 0;
  }

  .work-format-actions {
    width: 100%;
  }
}

/* Blue theme overrides, kept at the end so old warm details do not win. */
h1,
h2,
h3,
.single-entry-content h2,
.single-entry-content h3,
.hero-lead,
.quote-mark,
.single-entry-content blockquote::before,
.sidebar-brand-text {
  font-family: var(--font-display);
}

body,
button,
input,
select,
textarea,
.sidebar-nav a,
.eyebrow,
.button,
.hero-cta-card,
.site-search-form input[type="search"] {
  font-family: var(--font-body);
}

.sidebar {
  border-right-color: rgba(155, 190, 218, 0.45);
}

.sidebar-panel,
.section-card,
.card,
.feature-card,
.contact-form-shell,
.article-card,
.related-route-card,
.path-card,
.blog-taxonomy .filter-scroll-panel {
  border-color: var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.article-card,
.related-route-card,
.path-card,
.work-format-card,
.site-search-form,
.sidebar-nav a,
.hero-cta-card,
.button:not(.button-primary),
.contact-link-card,
.healing-action-tags span,
.chip-row span {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
}

.sidebar-logo-mark {
  border-radius: 50%;
  background: transparent;
  filter: none;
}

.sidebar-brand-mark {
  border-color: var(--panel-strong);
  background: #e7f3fb;
  box-shadow: 0 12px 28px rgba(33, 75, 112, 0.13);
}

.sidebar-brand-mark.sidebar-logo-mark {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus-visible,
.sidebar-nav a.is-active,
.hero-cta-card:hover,
.hero-cta-card:focus-visible,
.button:not(.button-primary):hover,
.button:not(.button-primary):focus-visible,
.card-interactive:hover,
.card-interactive:focus-within,
.chip-row span,
.healing-action-tags span {
  border-color: rgba(63, 127, 174, 0.56);
  background: var(--accent-soft);
}

.button-primary,
.hero-cta-card-primary,
.site-search-submit,
.contact-form-shell button,
.contact-local-form button,
.waka-random-button {
  border-color: var(--button-dark);
  background: var(--button-dark);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(33, 75, 112, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible,
.hero-cta-card-primary:hover,
.hero-cta-card-primary:focus-visible,
.contact-form-shell button:hover,
.contact-form-shell button:focus-visible,
.contact-local-form button:hover,
.contact-local-form button:focus-visible,
.waka-random-button:hover,
.waka-random-button:focus-visible {
  border-color: #1f3d56;
  background: #1f3d56;
  box-shadow: 0 16px 32px rgba(33, 75, 112, 0.2);
}

.site-search-form:focus-within,
.contact-form-shell input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):focus,
.contact-local-form input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):focus,
.contact-form-shell textarea:focus,
.contact-local-form textarea:focus {
  border-color: rgba(63, 127, 174, 0.72);
  box-shadow: 0 0 0 4px rgba(63, 127, 174, 0.14);
}

.feature-thumb-warm {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, #b9d8ee 0%, #eef8ff 100%);
}

.feature-thumb-soft {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.6), transparent 30%),
    linear-gradient(135deg, #f4fbff 0%, #cfe5f5 100%);
}

.single-entry-content blockquote,
.about-prose blockquote {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 244, 252, 0.9));
  border-color: var(--line);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9);
}

.work-format-card summary::after,
.section-link,
.inline-disclosure-arrow,
.eyebrow {
  color: var(--accent);
  border-color: var(--accent);
}
