:root {
  --ink: #172323;
  --muted: #5d6b68;
  --soft: #f5f1ea;
  --paper: #fffdfa;
  --sage: #6f8d84;
  --sage-dark: #355e55;
  --blue: #18324a;
  --clay: #b77a5b;
  --gold: #d9b46f;
  --line: rgba(23, 35, 35, 0.12);
  --shadow: 0 22px 70px rgba(24, 50, 74, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

body.nav-open {
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(217, 180, 111, 0.85);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--blue);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  --preloader-shift-x: 0px;
  --preloader-shift-y: 0px;
  --preloader-scale: 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 26% 20%, rgba(111, 141, 132, 0.16), transparent 34%), radial-gradient(circle at 78% 72%, rgba(217, 180, 111, 0.18), transparent 30%), linear-gradient(135deg, #fffdfa, #f5f1ea);
  color: var(--ink);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  width: min(560px, 88vw);
  margin-inline: auto;
  padding: clamp(1.25rem, 5vw, 2rem);
  text-align: left;
  transform-origin: top left;
  transition: opacity 0.68s ease, transform 0.82s cubic-bezier(0.19, 1, 0.22, 1), filter 0.68s ease;
}

.preloader.is-handoff .preloader-card {
  opacity: 0.08;
  filter: blur(1px);
  transform: translate(var(--preloader-shift-x), var(--preloader-shift-y)) scale(var(--preloader-scale));
}

.brand-mark {
  width: 100%;
  margin: 0 0 0.75rem;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: stretch;
  gap: 0.95rem;
  color: var(--blue);
  font-size: 0;
  line-height: 0;
}

.brand-mark::before,
.brand-icon::before,
.footer-logo::before {
  content: "";
  width: 5px;
  height: auto;
  min-height: 0;
  align-self: stretch;
  background: var(--gold);
}

.brand-mark::before {
  width: 7px;
  border-radius: 999px;
  transform-origin: center bottom;
  animation: brand-bar-load 1.18s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 247, 195, 0) 24%, #fff2ac 42%, var(--gold) 52%, #bd8f3e 62%, transparent 78%) 0 -120% / 100% 230% no-repeat,
    linear-gradient(180deg, rgba(217, 180, 111, 0.22), rgba(217, 180, 111, 0.6));
  box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.18), 0 0 28px rgba(217, 180, 111, 0.5);
}

.brand-mark-text {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3.35rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark-text span {
  display: block;
  opacity: 0;
  transform: translateX(-22px);
  animation: brand-line-cascade 0.72s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.brand-mark-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.brand-mark-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.brand-mark-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.preloader.is-handoff .brand-mark-text span,
.preloader.is-handoff .preloader-card p {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.36s ease, transform 0.42s ease;
}

.preloader.is-handoff .brand-mark::before {
  animation: brand-bar-handoff 0.82s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.preloader-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-12px);
  animation: brand-line-cascade 0.72s cubic-bezier(0.19, 1, 0.22, 1) 0.42s forwards;
}

.preloader-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.15rem;
  opacity: 0;
  transform: translateX(-12px);
  animation: brand-line-cascade 0.72s cubic-bezier(0.19, 1, 0.22, 1) 0.54s forwards;
}

.preloader-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 47, 70, 0.12);
}

.preloader-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transition: width 0.16s linear;
}

.preloader-progress-text {
  min-width: 3ch;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap,
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 92px;
  padding-block: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-grid;
  align-items: start;
  gap: 0.2rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  border-radius: 10px;
  transition: transform 0.26s ease, filter 0.26s ease;
}

.brand[data-brand-loader] {
  isolation: isolate;
}

.brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 20px rgba(24, 50, 74, 0.1));
}

.brand-icon {
  width: clamp(142px, 17vw, 190px);
  border-radius: 0;
  display: grid;
  grid-template-columns: 7px 1fr;
  align-items: stretch;
  gap: 0.42rem;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-family: Georgia, serif;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}

.brand-icon::before {
  width: 3px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transform-origin: center bottom;
  transition: background 0.26s ease, box-shadow 0.35s ease, transform 0.46s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-icon::after {
  content: "Peter\A Miller\A Psychological\A Services";
  white-space: pre-line;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  transform-origin: left center;
  transition: color 0.26s ease, clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.45s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.brand[data-brand-loader]:not(.is-loaded) .brand-icon::before {
  animation: brand-bar-load 1.18s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 247, 195, 0) 24%, #fff2ac 42%, var(--gold) 52%, #bd8f3e 62%, transparent 78%) 0 -120% / 100% 230% no-repeat,
    linear-gradient(180deg, rgba(217, 180, 111, 0.2), rgba(217, 180, 111, 0.5));
  box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.18), 0 0 20px rgba(217, 180, 111, 0.5);
}

.brand[data-brand-loader]:not(.is-loaded) .brand-icon::after {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateX(-18px) scaleX(0.96);
}

.brand[data-brand-loader]:not(.is-loaded) .brand-tagline {
  opacity: 0;
  transform: translateX(-10px);
}

.brand[data-brand-loader].is-loaded .brand-icon::before {
  animation: brand-bar-settle 0.62s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.brand[data-brand-loader].is-loaded .brand-icon::after {
  clip-path: inset(0);
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.brand[data-brand-loader].is-loaded .brand-tagline {
  opacity: 1;
  transform: translateX(0);
}

.brand:hover .brand-icon::before {
  background: #c79c4e;
  transform: scaleY(1.04);
}

.brand:hover .brand-icon::after {
  color: var(--sage-dark);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.58rem, 0.9vw, 0.76rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.26s ease, opacity 0.55s ease 0.24s, transform 0.65s cubic-bezier(0.19, 1, 0.22, 1) 0.18s;
}

.brand:hover .brand-tagline {
  color: var(--blue);
  transform: translateX(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: rgba(111, 141, 132, 0.12);
}

.site-nav a:hover {
  box-shadow: 0 10px 24px rgba(24, 50, 74, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.menu-toggle:hover {
  background: var(--soft);
  border-color: rgba(111, 141, 132, 0.28);
  box-shadow: 0 12px 26px rgba(24, 50, 74, 0.1);
  transform: translateY(-2px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: clamp(3.25rem, 6.5vw, 5.75rem) 0;
}

.section-soft {
  background: var(--soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.2vw, 1.65rem) 0 clamp(1.2rem, 2.8vw, 2rem);
  background: linear-gradient(135deg, rgba(245, 241, 234, 0.96), rgba(255, 253, 250, 0.92));
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.hero .hero-grid {
  align-items: stretch;
  min-height: clamp(520px, 72dvh, 680px);
}

.hero .hero-grid > .reveal:first-child {
  display: grid;
  align-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.15rem);
  max-width: 13ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.35vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  max-width: 660px;
}

.hero .lead {
  margin-bottom: 0;
}

.hero-service-summary {
  max-width: 680px;
  margin-top: 0.35rem;
}

.hero-service-summary p {
  color: #3f4f4b;
  margin: 0 0 0.75rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.hero-points strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points span {
  color: var(--muted);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn,
[data-loading-button] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.btn:hover,
[data-loading-button]:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #23405c;
  box-shadow: 0 18px 42px rgba(24, 50, 74, 0.26);
}

.btn-secondary:hover {
  background: white;
  border-color: rgba(111, 141, 132, 0.34);
  box-shadow: 0 14px 34px rgba(24, 50, 74, 0.1);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 35px rgba(24, 50, 74, 0.2);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
}

[data-loading-button][disabled],
[data-loading-button].is-loading,
.btn[disabled],
.btn.is-loading {
  pointer-events: none;
  opacity: 0.78;
}

.btn-spinner {
  width: 1rem;
  height: 1rem;
  display: none;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.7s linear infinite;
}

[data-loading-button].is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

[data-loading-button].is-loading .btn-label {
  position: absolute;
  opacity: 0;
  transform: translateY(2px);
  pointer-events: none;
}

.visual-card {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9e1dc;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.visual-card:hover img {
  transform: scale(1.045);
}

.visual-card:hover {
  box-shadow: 0 30px 84px rgba(24, 50, 74, 0.18);
  transform: translateY(-4px);
}

.about-visual {
  isolation: isolate;
}

.verification-badge {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  width: min(220px, calc(100% - 2.2rem));
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  background: rgba(20, 41, 39, 0.88);
  box-shadow: 0 18px 44px rgba(24, 50, 74, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(14px);
}

.verification-badge a {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.verification-badge img {
  width: min(170px, 100%);
  height: auto;
  min-height: 0;
  object-fit: contain;
  transform: none;
}

.visual-card:hover .verification-badge img {
  transform: none;
}

.hero-visual .verification-badge {
  top: auto;
  bottom: 1.1rem;
}

.hero .about-visual {
  justify-self: stretch;
  width: 100%;
  height: clamp(540px, 74dvh, 700px);
  min-height: 0;
  background: #d9e1dc;
}

.hero .about-visual > img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.hero-visual .verification-badge {
  right: 0.85rem;
  bottom: 0.85rem;
  width: min(180px, calc(100% - 1.7rem));
  padding: 0.65rem;
  font-size: 0.7rem;
}

.hero-visual .verification-badge img {
  width: min(132px, 100%);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat,
.card,
.article-card,
.faq-item,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(24, 50, 74, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.stat:hover,
.card:hover,
.article-card:hover,
.contact-panel:hover {
  background: rgba(255, 253, 250, 0.96);
  border-color: rgba(111, 141, 132, 0.25);
  box-shadow: 0 22px 58px rgba(24, 50, 74, 0.13);
  transform: translateY(-4px);
}

.stat {
  padding: 1rem;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
}

.about-story > .reveal:first-child {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.service-background {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(23, 35, 35, 0.86), rgba(23, 35, 35, 0.58) 46%, rgba(23, 35, 35, 0.2)), var(--service-bg);
  background-position: center;
  background-size: cover;
  color: white;
}

.service-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 50, 74, 0.16), rgba(23, 35, 35, 0.24));
}

.service-background .service-first {
  display: block;
}

.service-copy {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 280px);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.service-copy > :not(.stat-strip) {
  grid-column: 1;
}

.service-copy .eyebrow,
.service-copy .lead,
.service-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.service-copy .eyebrow {
  margin-bottom: 0;
}

.service-copy h2 + .lead {
  margin-top: 0.05rem;
}

.service-copy .lead {
  margin-bottom: 0;
  line-height: 1.45;
}

.service-copy .eyebrow::before {
  background: var(--gold);
}

.service-copy .check-list {
  columns: 2;
  column-gap: 1.4rem;
  margin-top: 0.05rem;
}

.service-copy .check-list li {
  margin: 0;
  line-height: 1.45;
}

.service-copy .check-list li::before {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold);
}

.service-copy .stat {
  background: rgba(255, 253, 250, 0.92);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.service-copy .stat-strip {
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: center;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.service-background .therapy-term {
  color: white;
}

.service-background .therapy-term:hover,
.service-background .therapy-term:focus-visible {
  color: #f4dfad;
}

.service-background .stat .therapy-term,
.service-background .stat .therapy-term:hover,
.service-background .stat .therapy-term:focus-visible {
  color: var(--sage-dark);
}

.service-background .check-list li:hover {
  color: rgba(255, 255, 255, 0.96);
}

.consult-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(23, 35, 35, 0.9), rgba(23, 35, 35, 0.68) 48%, rgba(23, 35, 35, 0.18)), var(--consult-bg);
  background-position: center;
  background-size: cover;
  color: white;
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.consult-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 50, 74, 0.16), rgba(23, 35, 35, 0.32));
}

.consult-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.56fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

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

.consult-hero .eyebrow,
.consult-hero .lead,
.consult-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.consult-hero h1 {
  max-width: 14ch;
}

.consult-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.consult-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  padding: 0.45rem 0.75rem;
  backdrop-filter: blur(12px);
}

.consult-card {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.93);
  color: var(--ink);
  box-shadow: 0 30px 88px rgba(24, 50, 74, 0.24);
  padding: clamp(1.4rem, 3vw, 2rem);
  backdrop-filter: blur(14px);
}

.consult-card h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.consult-card p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.consult-card .btn {
  width: 100%;
}

.consult-signs .quote-band {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.consult-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.consult-step {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: 0 14px 45px rgba(24, 50, 74, 0.08);
  padding: clamp(1.2rem, 3vw, 1.55rem);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.consult-step:hover {
  border-color: rgba(111, 141, 132, 0.25);
  box-shadow: 0 22px 58px rgba(24, 50, 74, 0.13);
  transform: translateY(-4px);
}

.consult-step span {
  display: block;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.consult-step p {
  color: var(--muted);
}

.consult-profile {
  align-items: stretch;
}

.consult-profile .about-visual {
  min-height: 100%;
}

.consult-profile .about-visual img {
  min-height: 100%;
  object-position: center top;
}

.consult-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.consult-methods li {
  margin: 0;
  line-height: 1.45;
  text-wrap: pretty;
}

.consult-methods .therapy-term-wrap {
  display: inline;
  white-space: normal;
}

.quote-inline {
  margin-top: 1.4rem;
  border-left: 4px solid var(--gold);
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 700;
  padding-left: 1rem;
}

.quote-inline p {
  margin: 0.35rem 0;
}

.consult-focus-grid .card {
  min-height: 100%;
}

.consult-final-cta .booking-panel {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  padding: 1.35rem;
}

.card h3,
.article-card h3 {
  transition: color 0.24s ease;
}

.card:hover h3,
.article-card:hover h3 {
  color: var(--sage-dark);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.check-list,
.plain-list {
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  margin: 0.55rem 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.check-list li:hover,
.plain-list li:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: rgba(111, 141, 132, 0.16);
  color: var(--sage-dark);
  font-weight: 900;
}

.quote-band {
  background: linear-gradient(135deg, var(--blue), #294b47);
  color: white;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.quote-band:hover {
  box-shadow: 0 28px 78px rgba(24, 50, 74, 0.22);
  transform: translateY(-3px);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.booking-layout > .reveal:first-child {
  max-width: 820px;
}

.booking-intro {
  max-width: 860px;
}

.booking-note {
  color: var(--muted);
  margin-top: 1.2rem;
}

.booking-panel {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
  min-width: 0;
}

.booking-panel > p {
  color: var(--muted);
}

.booking-toolbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.booking-option-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.booking-tab,
.booking-option-tab {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  padding: 0.75rem;
  text-align: left;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.booking-option-tab {
  min-height: 66px;
}

.booking-tab span,
.booking-option-tab span {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.booking-tab small,
.booking-option-tab small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.booking-tab:hover,
.booking-tab.active,
.booking-option-tab:hover,
.booking-option-tab.active {
  background: rgba(111, 141, 132, 0.12);
  border-color: rgba(111, 141, 132, 0.32);
  box-shadow: 0 14px 32px rgba(24, 50, 74, 0.1);
  transform: translateY(-2px);
}

.booking-status {
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0.8rem 0;
  text-transform: uppercase;
}

.booking-slots {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  margin-bottom: 1rem;
  overflow: hidden;
}

.booking-day {
  min-height: 270px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.68);
}

.booking-day:last-child {
  border-right: 0;
}

.booking-day-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(111, 141, 132, 0.12);
  color: var(--blue);
}

.booking-day-header span {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-day-times {
  display: grid;
  gap: 0.55rem;
  padding: 0.65rem;
}

.booking-no-times {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 1rem;
}

.booking-empty p {
  color: var(--muted);
  margin-top: 0;
}

.booking-slot {
  display: grid;
  align-items: center;
  gap: 0.15rem;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
  padding: 0.65rem 0.7rem;
  text-align: left;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.booking-slot small {
  display: block;
}

.booking-slot small {
  color: var(--muted);
  font-weight: 800;
  margin-top: 0.1rem;
}

.booking-slot:hover {
  background: rgba(217, 180, 111, 0.12);
  border-color: rgba(217, 180, 111, 0.5);
  box-shadow: 0 14px 34px rgba(24, 50, 74, 0.1);
  transform: translateY(-2px);
}

.booking-slot.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 16px 36px rgba(24, 50, 74, 0.22);
}

.booking-slot.selected small {
  color: rgba(255, 255, 255, 0.78);
}

.booking-link {
  width: 100%;
}

.booking-link.disabled {
  opacity: 0.56;
  pointer-events: auto;
}

.booking-selection {
  min-height: 44px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(111, 141, 132, 0.09);
  color: var(--sage-dark);
  font-weight: 900;
  padding: 0.6rem 0.8rem;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.78);
}

.profile-grid,
.endorsement-grid,
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card,
.billing-card,
.endorsement-card,
.approach-card,
.fee-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(24, 50, 74, 0.08);
}

.info-card,
.billing-card,
.endorsement-card {
  padding: clamp(1.2rem, 3vw, 1.55rem);
}

.info-card p,
.billing-card p,
.endorsement-card p,
.approach-card p {
  color: var(--muted);
}

.info-kicker,
.fee-card span,
.quote-person span {
  display: block;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.detail-list div {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.detail-list dt {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-weight: 800;
}

.text-link {
  color: var(--sage-dark);
  display: inline-flex;
  font-weight: 900;
  margin-top: 0.4rem;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
}

.specialties-layout,
.insurance-layout,
.approach-layout {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.specialty-panel {
  display: grid;
  gap: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.chip-list span,
.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(111, 141, 132, 0.26);
  border-radius: 999px;
  background: rgba(111, 141, 132, 0.1);
  color: var(--sage-dark);
  font-weight: 900;
  padding: 0.45rem 0.75rem;
}

.chip-list-compact span {
  background: white;
  color: var(--muted);
  font-size: 0.92rem;
}

.billing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1rem;
}

.fee-card {
  padding: clamp(1.1rem, 3vw, 1.4rem);
}

.fee-card strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  margin: 0.55rem 0 0.25rem;
}

.fee-card p {
  color: var(--muted);
  margin: 0;
}

.logo-row,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.brand-pill-wide {
  border-color: rgba(24, 50, 74, 0.16);
  background: var(--blue);
  color: white;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 86px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--blue);
  font-weight: 900;
  padding: 0.45rem 0.7rem;
}

.payment-mastercard {
  gap: 0.45rem;
}

.payment-mastercard span {
  width: 18px;
  height: 18px;
  margin-right: -0.8rem;
  border-radius: 50%;
}

.payment-mastercard span:first-child {
  background: #eb001b;
}

.payment-mastercard span:nth-child(2) {
  background: #f79e1b;
}

.payment-visa {
  color: #1a3d8f;
  font-style: italic;
}

.payment-cash {
  color: var(--sage-dark);
}

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

.approach-card,
.endorsement-card {
  min-height: 100%;
  overflow: visible;
}

.quote-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding: clamp(2.1rem, 4vw, 2.55rem) clamp(1.2rem, 3vw, 1.6rem) clamp(1.2rem, 3vw, 1.6rem);
}

.quote-card:has(.therapy-term-wrap.is-hovered),
.quote-card:has(.therapy-term-wrap.is-open) {
  z-index: 90;
}

.quote-card::before {
  position: absolute;
  z-index: 0;
  color: rgba(217, 180, 111, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.8;
}

.quote-card::before {
  content: "\201C";
  left: 1rem;
  top: 0.7rem;
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-card blockquote:has(.therapy-term-wrap.is-hovered),
.quote-card blockquote:has(.therapy-term-wrap.is-open),
.stat:has(.therapy-term-wrap.is-hovered),
.stat:has(.therapy-term-wrap.is-open) {
  z-index: 95;
}

.quote-person {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.quote-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 253, 250, 0.94);
  box-shadow: 0 10px 24px rgba(24, 50, 74, 0.12);
}

.quote-person h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.15;
}

.quote-person span {
  font-size: 0.68rem;
  line-height: 1.3;
}

.quote-card blockquote {
  margin: 0;
  padding-top: 1.25rem;
  color: #455450;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
}

.endorsement-card blockquote {
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
}

.insurance-providers {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 14px 45px rgba(24, 50, 74, 0.08);
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.insurance-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3vw, 2rem);
  padding: clamp(0.6rem, 2vw, 1rem) 0;
}

.insurance-logo-grid span {
  display: grid;
  place-items: center;
  flex: 0 1 clamp(142px, 16vw, 205px);
  min-width: 0;
  min-height: clamp(48px, 6vw, 68px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5f6764;
  filter: grayscale(1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0;
  text-align: center;
  box-shadow: none;
}

.insurance-logo-grid img {
  width: min(168px, 100%);
  max-height: 50px;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.78;
  object-fit: contain;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(111, 141, 132, 0.26);
  box-shadow: 0 18px 50px rgba(24, 50, 74, 0.1);
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.24s ease, background 0.24s ease;
}

.faq-button:hover {
  color: var(--sage-dark);
  background: rgba(111, 141, 132, 0.07);
}

.faq-button::after {
  content: "+";
  color: var(--sage-dark);
  font-size: 1.4rem;
}

.faq-item.open .faq-button::after {
  content: "-";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-content p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
  color: var(--muted);
}

.resource-tools {
  margin: 2rem 0;
}

.resource-search-panel {
  display: grid;
  gap: 1rem;
}

.resource-tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.icon-button,
.modal-close {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.icon-button {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.icon-button:hover,
.modal-close:hover {
  background: rgba(111, 141, 132, 0.12);
  border-color: rgba(111, 141, 132, 0.32);
  box-shadow: 0 14px 32px rgba(24, 50, 74, 0.1);
  transform: translateY(-2px);
}

.refresh-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.refresh-button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.icon-button.is-loading .refresh-icon {
  display: none;
}

.icon-button.is-loading .refresh-button-spinner {
  display: block;
  animation: spin 0.7s linear infinite;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 35, 35, 0.42);
  backdrop-filter: blur(10px);
}

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

.refresh-modal {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(24, 50, 74, 0.26);
  padding: clamp(1.1rem, 4vw, 1.5rem);
}

.modal-close {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  width: 40px;
  height: 40px;
  font-size: 1.35rem;
  line-height: 1;
}

.article-refresh-panel {
  display: grid;
  gap: 1rem;
  padding-right: 2.8rem;
}

.article-refresh-panel p {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.article-refresh-row {
  display: grid;
  gap: 0.65rem;
}

.article-refresh-row .btn {
  width: 100%;
}

.article-refresh-status {
  min-height: 1.5rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.article-refresh-status[data-status="loading"] {
  color: var(--blue);
}

.article-refresh-status[data-status="success"] {
  color: var(--sage-dark);
}

.article-refresh-status[data-status="error"] {
  color: #8f3c2f;
}

.search-input {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1.2rem;
  font: inherit;
  background: white;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.search-input:hover,
.search-input:focus {
  border-color: rgba(111, 141, 132, 0.38);
  box-shadow: 0 12px 30px rgba(24, 50, 74, 0.08);
  background: #fff;
}

.tag-list {
  display: grid;
  gap: 0.9rem;
}

.filter-group {
  display: grid;
  gap: 0.45rem;
}

.filter-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.tag.active,
.tag:hover {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
  box-shadow: 0 12px 26px rgba(53, 94, 85, 0.18);
  transform: translateY(-2px);
}

.articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  min-height: 310px;
  overflow: hidden;
}

.article-card > img {
  width: calc(100% + 2.7rem);
  max-width: none;
  height: 220px;
  margin: -1.35rem -1.35rem 1.1rem;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.article-card:hover > img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.article-card .meta,
.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-card p {
  color: var(--muted);
}

.article-card a {
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 900;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.article-card a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.article {
  width: min(calc(100% - 2rem), 820px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
  overflow-x: clip;
}

.article h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.article h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.article p,
.article li {
  color: #32403d;
}

.cms-featured-image {
  width: 100%;
  max-height: 520px;
  margin: 2rem 0;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cms-body {
  max-width: 100%;
  min-width: 0;
  margin-top: 2rem;
}

.cms-body .sqs-layout,
.cms-body .sqs-row,
.cms-body .sqs-col-12 {
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.cms-body > :not(.cms-table-scroll):not(.wp-block-table) {
  max-width: 100%;
}

.cms-body img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(24, 50, 74, 0.1);
}

.cms-body a {
  color: var(--sage-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cms-body p,
.cms-body li,
.cms-body blockquote,
.cms-body figcaption,
.cms-body pre,
.cms-body code {
  overflow-wrap: anywhere;
}

.cms-body pre {
  white-space: pre-wrap;
}

.cms-table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: clip;
  border: 1px solid rgba(23, 35, 35, 0.16);
  border-radius: 12px;
  background: #fffdfa;
  box-shadow: 0 14px 34px rgba(24, 50, 74, 0.08);
}

.cms-table-scroll:focus-visible {
  outline-offset: 3px;
}

.cms-body table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: clamp(0.72rem, calc(1.13rem - (var(--table-columns, 3) * 0.06rem)), 0.95rem);
  line-height: 1.5;
}

.cms-body caption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 800;
  text-align: left;
}

.cms-body th,
.cms-body td {
  min-width: 0;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(23, 35, 35, 0.14);
  border-bottom: 1px solid rgba(23, 35, 35, 0.14);
  vertical-align: top;
  text-align: left;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: normal;
}

.cms-body table.is-wide-table th,
.cms-body table.is-wide-table td {
  padding: 0.7rem 0.75rem;
}

.cms-body table.is-extra-wide-table th,
.cms-body table.is-extra-wide-table td {
  padding: 0.58rem 0.55rem;
}

.cms-body th:last-child,
.cms-body td:last-child {
  border-right: 0;
}

.cms-body tr:last-child th,
.cms-body tr:last-child td {
  border-bottom: 0;
}

.cms-body thead th {
  background: rgba(111, 141, 132, 0.14);
  color: var(--blue);
  font-weight: 900;
}

.cms-body tbody tr:nth-child(even) {
  background: rgba(245, 241, 234, 0.58);
}

.cms-body td p,
.cms-body th p {
  margin: 0;
}

.cms-body td p + p,
.cms-body th p + p {
  margin-top: 0.65rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.article-tags span {
  border-radius: 999px;
  background: var(--soft);
  padding: 0.35rem 0.7rem;
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 0.85rem;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.article-tags span:hover {
  background: rgba(111, 141, 132, 0.18);
  color: var(--blue);
  transform: translateY(-1px);
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 1.3rem;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(23, 35, 35, 0.1);
  border-radius: 18px;
  background: rgba(245, 241, 234, 0.58);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.contact-method:hover {
  border-color: rgba(111, 141, 132, 0.28);
  background: rgba(255, 253, 250, 0.95);
  box-shadow: 0 14px 34px rgba(24, 50, 74, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(24, 50, 74, 0.18);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-method strong,
.contact-method span span {
  display: block;
}

.contact-method strong {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method span span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(111, 141, 132, 0.4);
  box-shadow: 0 12px 28px rgba(24, 50, 74, 0.08);
  background: white;
}

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

.not-found-hero {
  display: grid;
  align-items: center;
  min-height: calc(100dvh - var(--header-height, 92px));
  padding: clamp(3.25rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(255, 253, 250, 0.94));
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.not-found-copy h1 {
  max-width: 11ch;
}

.not-found-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: 0 18px 54px rgba(24, 50, 74, 0.09);
  padding: clamp(1.35rem, 4vw, 2rem);
}

.not-found-panel h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.not-found-links {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.not-found-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.not-found-links a::after {
  content: "→";
  color: var(--sage-dark);
  font-size: 1.15rem;
}

.not-found-links a:hover {
  color: var(--sage-dark);
  transform: translateX(3px);
}

.site-footer {
  background: #142927;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr) minmax(220px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  cursor: pointer;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0.35rem 0;
  line-height: 1.38;
}

.site-footer li {
  line-height: 1.25;
}

.footer-links {
  padding: 0;
  margin: 0.6rem 0 1.2rem;
  list-style: none;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 430px;
}

.footer-logo {
  display: inline-grid;
  grid-template-columns: 10px 1fr;
  align-items: stretch;
  gap: 0.18rem 0.65rem;
  width: min(380px, 100%);
  margin-bottom: 1.2rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.footer-badge {
  width: min(220px, 100%);
  height: auto;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.footer-badge-link {
  display: inline-flex;
  width: fit-content;
  border-radius: 14px;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.footer-badge-link:hover {
  filter: drop-shadow(0 12px 22px rgba(217, 180, 111, 0.16));
  transform: translateY(-2px);
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-payment-icons span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.footer-payment-icons svg {
  width: 28px;
  height: 22px;
  fill: currentColor;
}

.footer-payment-icons span:hover {
  color: rgba(217, 180, 111, 0.92);
  transform: translateY(-2px);
}

.footer-logo::before {
  width: 4px;
  grid-column: 1;
  grid-row: 1;
}

.footer-logo:hover {
  transform: translateY(-2px) scale(1.01);
  background: transparent;
  box-shadow: none;
}

.footer-logo-text {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-logo-text span {
  display: block;
}

.footer-logo-tagline {
  display: block;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.06rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: none;
}

.footer-links a,
.site-footer .copyright a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  margin-left: -0.55rem;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-links a:hover,
.site-footer .copyright a:hover {
  color: white;
  background: rgba(217, 180, 111, 0.16);
  box-shadow: 0 10px 26px rgba(217, 180, 111, 0.14);
  transform: translateY(-2px) scale(1.01);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(217, 180, 111, 0.45);
  border-radius: 999px;
  background: rgba(217, 180, 111, 0.14);
  color: white;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.footer-cta:hover {
  background: rgba(217, 180, 111, 0.22);
  box-shadow: 0 14px 30px rgba(217, 180, 111, 0.14);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.therapy-term-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.therapy-term {
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: var(--sage-dark);
  cursor: help;
  display: inline;
  font: inherit;
  font-weight: 900;
  padding: 0;
}

.therapy-term-popover {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: grid;
  gap: 0.45rem;
  width: min(460px, calc(100vw - 1.5rem));
  max-height: calc(100dvh - var(--header-height, 92px) - 1.5rem);
  overflow: auto;
  padding: 1rem 1rem 1rem;
  border: 1px solid rgba(23, 35, 35, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 24px 70px rgba(24, 50, 74, 0.18);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(0.45rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.therapy-term-popover strong {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.therapy-term-close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(111, 141, 132, 0.12);
  color: var(--blue);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.therapy-term-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brand-bar-load {
  0% {
    background-position: 0 -135%, 0 0;
    transform: translateY(-7px) scaleY(0.26);
  }

  34% {
    background-position: 0 -20%, 0 0;
    transform: translateY(0) scaleY(0.86);
  }

  66% {
    background-position: 0 78%, 0 0;
    transform: translateY(3px) scaleY(1);
  }

  100% {
    background-position: 0 185%, 0 0;
    transform: translateY(8px) scaleY(0.34);
  }
}

@keyframes brand-line-cascade {
  0% {
    opacity: 0;
    transform: translateX(-22px);
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes brand-bar-handoff {
  0% {
    background-position: 0 -20%, 0 0;
    box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.2), 0 0 28px rgba(217, 180, 111, 0.5);
    transform: translateY(0) scaleY(1);
  }

  52% {
    background-position: 0 78%, 0 0;
    box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.25), 0 0 34px rgba(217, 180, 111, 0.58);
    transform: translateY(0) scaleY(1.06);
  }

  100% {
    background-position: 0 160%, 0 0;
    box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.06), 0 0 8px rgba(217, 180, 111, 0.18);
    transform: translateY(0) scaleY(1);
  }
}

@keyframes brand-bar-settle {
  0% {
    box-shadow: 0 0 0 1px rgba(217, 180, 111, 0.22), 0 0 20px rgba(217, 180, 111, 0.42);
    transform: scaleY(0.72);
  }

  58% {
    transform: scaleY(1.08);
  }

  100% {
    box-shadow: none;
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    max-height: calc(100dvh - var(--header-height, 92px) - 1.2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .split-grid,
  .booking-layout,
  .not-found-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .articles,
  .profile-grid,
  .endorsement-grid,
  .fees-grid,
  .approach-cards,
  .billing-grid,
  .consult-hero-grid,
  .consult-steps {
    grid-template-columns: 1fr;
  }

  .resource-tools {
    grid-template-columns: 1fr;
  }

  .service-copy .check-list {
    columns: 1;
  }

  .service-copy {
    display: block;
    width: min(760px, 100%);
  }

  .service-copy .eyebrow {
    margin-bottom: 0.65rem;
  }

  .service-copy h2 + .lead {
    margin-top: 0.9rem;
  }

  .service-copy .lead {
    margin-bottom: 0.8rem;
    line-height: 1.65;
  }

  .service-copy .stat-strip {
    margin-top: 2rem;
  }

  .service-copy .check-list {
    margin-top: 1rem;
  }

  .service-copy .check-list li {
    margin: 0.45rem 0;
    line-height: 1.6;
  }

  .visual-card,
  .visual-card img {
    min-height: 340px;
  }

  .verification-badge {
    right: 0.85rem;
    bottom: 0.85rem;
    width: min(190px, calc(100% - 1.7rem));
  }

  .verification-badge img {
    height: auto;
    min-height: 0;
  }

  .hero .about-visual {
    width: min(330px, 100%);
    height: clamp(460px, 62vh, 560px);
  }

  .service-background {
    min-height: 0;
    background-image: linear-gradient(180deg, rgba(23, 35, 35, 0.88), rgba(23, 35, 35, 0.72)), var(--service-bg);
    background-position: center;
  }

  .consult-hero {
    min-height: 0;
    background-image: linear-gradient(180deg, rgba(23, 35, 35, 0.88), rgba(23, 35, 35, 0.72)), var(--consult-bg);
    padding: clamp(1.75rem, 6vw, 2.5rem) 0;
  }

  .consult-card {
    width: min(620px, 100%);
    padding: clamp(1rem, 4vw, 1.35rem);
  }

  .hero-visual .verification-badge {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(160px, calc(100% - 1.5rem));
    padding: 0.55rem;
    border-radius: 14px;
    font-size: 0.66rem;
  }

  .hero-visual .verification-badge img {
    width: min(116px, 100%);
    height: auto;
    min-height: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .booking-toolbar {
    grid-template-columns: 1fr;
  }

  .booking-option-tabs {
    grid-template-columns: 1fr;
  }

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

  .booking-day {
    border-bottom: 1px solid var(--line);
  }

  .booking-day:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  main,
  section,
  .container,
  .nav-wrap,
  .site-footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .insurance-providers {
    padding-inline: 0.85rem;
  }

  .insurance-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    border-radius: 0;
    gap: 0.95rem 1.1rem;
    padding: 0.55rem 0;
  }

  .insurance-logo-grid span {
    min-width: 0;
    min-height: 48px;
    padding: 0;
    background: transparent;
  }

  .insurance-logo-grid span:nth-child(n) {
    transform: none;
  }

  .insurance-logo-grid img {
    width: min(168px, 100%);
    max-height: 46px;
  }

  .booking-calendar-grid {
    grid-template-columns: 1fr;
  }

  .booking-day {
    border-right: 0;
  }

  .brand {
    gap: 0.16rem;
  }

  .brand-icon {
    width: 120px;
  }

  .brand-icon::after {
    font-size: 0.72rem;
  }

  .brand-tagline {
    max-width: none;
    line-height: 1.25;
    white-space: nowrap;
    font-size: clamp(0.48rem, 2.45vw, 0.58rem);
  }

  .verification-badge {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: min(150px, calc(100% - 1.3rem));
    padding: 0.55rem;
    border-radius: 12px;
  }

  .verification-badge img {
    height: auto;
    min-height: 0;
  }

  .hero .about-visual {
    width: min(300px, 100%);
    height: clamp(430px, 62vh, 500px);
    margin-inline: auto;
    border-radius: 24px;
  }

  .hero .about-visual > img {
    min-height: 0;
    object-position: center top;
  }

  .hero-visual .verification-badge {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: min(126px, calc(100% - 1.3rem));
    padding: 0.48rem;
    border-radius: 12px;
  }

  .verification-badge span {
    display: none;
  }

  .hero-visual .verification-badge img {
    width: min(100px, 100%);
    height: auto;
    min-height: 0;
  }

  .about-visual {
    display: grid;
    background: #d9e1dc;
  }

  .about-visual > img {
    min-height: 320px;
  }

  .consult-methods {
    grid-template-columns: 1fr;
  }

  .cms-table-scroll {
    margin: 1.5rem 0;
  }

  .cms-body table {
    font-size: clamp(0.62rem, calc(0.99rem - (var(--table-columns, 3) * 0.055rem)), 0.82rem);
    line-height: 1.35;
  }

  .cms-body th,
  .cms-body td {
    padding: 0.58rem 0.48rem;
  }

  .cms-body table.is-wide-table th,
  .cms-body table.is-wide-table td {
    padding: 0.48rem 0.36rem;
  }

  .cms-body table.is-extra-wide-table th,
  .cms-body table.is-extra-wide-table td {
    padding: 0.4rem 0.28rem;
  }

  .footer-badge {
    width: min(190px, 100%);
  }

  .footer-logo {
    width: min(320px, 100%);
  }

  .footer-logo-tagline {
    font-size: clamp(0.58rem, 3.1vw, 0.78rem);
    white-space: nowrap;
  }

  .preloader-card {
    width: min(360px, 78vw);
    padding-inline: 0;
  }

  .preloader-card p {
    font-size: clamp(0.74rem, 3.3vw, 1rem);
    white-space: nowrap;
  }

  .preloader-progress {
    gap: 0.7rem;
  }
}

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

  .brand[data-brand-loader]:not(.is-loaded) .brand-icon::after,
  .brand[data-brand-loader]:not(.is-loaded) .brand-tagline,
  .brand-mark-text span,
  .preloader-card p,
  .preloader-progress {
    clip-path: inset(0);
    opacity: 1;
    transform: none;
  }

  .preloader.is-handoff .preloader-card {
    opacity: 0;
  }
}
