:root {
  --ink: #20242a;
  --text: #3f454c;
  --muted: #747a83;
  --line: #e7e1ea;
  --wash: #f8f5f9;
  --paper: #ffffff;
  --accent: #7a348c;
  --accent-dark: #552363;
  --accent-soft: #f3e8f5;
  --sage: #e8efe9;
  --shadow: 0 24px 70px rgba(72, 48, 78, 0.12);
  --curve: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 8%, rgba(122, 52, 140, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fdfbfd 46%, #fff 100%);
  font-family: Aptos, "Segoe UI Variable", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

img,
iframe,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px max(22px, calc((100vw - var(--max)) / 2));
  color: #f7ecf8;
  background: var(--ink);
  font-size: 0.9rem;
}

.topbar div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 15px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 231, 228, 0.9);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 188px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  border-radius: 6px;
}

.main-nav a:hover {
  color: var(--accent-dark);
  background: var(--wash);
}

.main-nav .nav-cta {
  margin-left: 4px;
  padding-inline: 16px;
  color: #fff;
  background: var(--accent);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.site-main {
  min-height: 58vh;
}

.content-wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0 82px;
}

.content-wrap.compact {
  padding: 58px 0;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.18;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  max-width: 820px;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  font-weight: 730;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.lead {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 520ms var(--curve), background 520ms var(--curve), border-color 520ms var(--curve), color 520ms var(--curve);
}

.primary-button {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(122, 52, 140, 0.2);
}

.primary-button:hover {
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.secondary-button:hover {
  color: var(--accent-dark);
  border-color: var(--accent-soft);
  background: var(--wash);
  transform: translateY(-2px);
}

.primary-button i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
  font-style: normal;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  transition: transform 520ms var(--curve);
}

.primary-button:hover i {
  transform: translate(2px, -2px);
}

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

.trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 680;
}

.hero-photo {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 710px;
}

.service-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.service-tile {
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  color: var(--text);
  text-decoration: none;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(248,245,249,0.86)),
    var(--paper);
  box-shadow: 0 18px 46px rgba(72, 48, 78, 0.08);
  outline: 1px solid rgba(122, 52, 140, 0.12);
  transition: transform 560ms var(--curve), box-shadow 560ms var(--curve), outline-color 560ms var(--curve);
}

.service-tile.large {
  grid-row: span 2;
  min-height: 460px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(35, 27, 40, 0.18), rgba(85, 35, 99, 0.88)),
    var(--accent-dark);
}

.service-tile.large.has-defer-bg {
  background:
    linear-gradient(160deg, rgba(35, 27, 40, 0.18), rgba(85, 35, 99, 0.88)),
    var(--defer-bg) center / cover;
}

.service-tile.quiet {
  background: var(--accent-soft);
}

.service-tile:hover {
  transform: translateY(-6px);
  color: var(--text);
  outline-color: rgba(122, 52, 140, 0.24);
  box-shadow: var(--shadow);
}

.service-tile.large:hover {
  color: #fff;
}

.service-tile span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-tile.large span,
.service-tile.large h3,
.service-tile.large p {
  color: #fff;
}

.service-tile h3 {
  font-size: clamp(1.22rem, 2vw, 1.8rem);
}

.service-tile p {
  margin: 0;
  color: var(--muted);
}

.therapy-formats {
  background:
    linear-gradient(135deg, rgba(243, 232, 245, 0.84), rgba(232, 239, 233, 0.74)),
    var(--wash);
}

.format-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 56px;
  align-items: start;
}

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

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

.format-list article {
  min-height: 250px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.format-list span {
  color: var(--accent);
  font-weight: 850;
}

.format-list p {
  margin: 0;
  color: var(--muted);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(122, 52, 140, 0.1);
}

.process-rail article {
  display: grid;
  gap: 10px;
  padding: 32px;
}

.process-rail article + article {
  border-left: 1px solid var(--line);
}

.process-rail span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
}

.about-home {
  background: linear-gradient(180deg, transparent 0%, rgba(248,245,249,0.86) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--accent-soft);
  box-shadow: var(--shadow);
}

.about-photo img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

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

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.credential-list p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.1);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list strong {
  color: var(--ink);
}

.credential-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 76px;
  padding: 38px;
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.16), transparent 18rem),
    linear-gradient(135deg, #20242a, #552363);
  box-shadow: var(--shadow);
}

.home-cta h2,
.home-cta .eyebrow {
  color: #fff;
}

.home-cta .eyebrow {
  opacity: 0.78;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-cta .phone-link {
  color: #fff;
}

.page-title {
  max-width: 860px;
  margin-bottom: 34px;
}

.interior-shell {
  background:
    radial-gradient(circle at 84% 8%, rgba(122, 52, 140, 0.09), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #fdfbfd 58%, #fff 100%);
}

.standard-page {
  padding-top: 62px;
}

.standard-page-title {
  max-width: 880px;
  padding-bottom: 30px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(122, 52, 140, 0.14);
}

.standard-page-title h1 {
  max-width: 860px;
}

.standard-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 320px;
  gap: 58px;
  align-items: start;
}

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

.contact-shell .standard-page-title {
  max-width: 760px;
}

.contact-shell .entry-content {
  max-width: none;
}

.interior-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 52px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0 54px;
  align-items: end;
  border-bottom: 1px solid rgba(122, 52, 140, 0.12);
}

.interior-hero-copy {
  max-width: 860px;
}

.interior-hero .lead {
  max-width: 720px;
}

.interior-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-consult-box {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  outline: 1px solid rgba(122, 52, 140, 0.11);
}

.hero-consult-box span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-consult-box strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-consult-box p {
  margin: 0;
  color: var(--muted);
}

.interior-body {
  display: grid;
  grid-template-columns: minmax(0, 820px) 300px;
  gap: 52px;
  align-items: start;
  padding-top: 48px;
}

.entry-content {
  max-width: 860px;
  font-size: 1.03rem;
}

.interior-body .entry-content {
  padding: 0 0 20px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content p {
  margin: 0 0 1.12rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 2.1rem 0 0.8rem;
}

.entry-content h1 {
  font-size: 2.4rem;
}

.entry-content h2 {
  font-size: 1.9rem;
}

.entry-content h3 {
  font-size: 1.35rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.35rem;
}

.entry-content li {
  margin-bottom: 0.38rem;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  background: var(--wash);
}

.inline-featured-image {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--wash);
  box-shadow: var(--shadow);
}

.inline-featured-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.entry-content .wp-block-columns,
.entry-content .wc-shortcodes-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 26px 0;
}

.entry-content .wp-block-columns:has(> .wp-block-column:only-child) {
  display: block;
}

.entry-content .wp-block-column,
.entry-content [class*="wc-shortcodes-column"] {
  min-width: 0;
}

.entry-content .wp-block-columns:has(> .wp-block-column:only-child) > .wp-block-column {
  width: 100%;
}

.entry-content .wc-shortcodes-column {
  display: grid;
  align-content: start;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.1), 0 12px 34px rgba(72, 48, 78, 0.06);
  transition: transform 520ms var(--curve), box-shadow 520ms var(--curve);
}

.entry-content .wc-shortcodes-column:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.16), var(--shadow);
}

.entry-content .wc-shortcodes-column p {
  text-align: center;
}

.entry-content .wc-shortcodes-column a {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
  text-wrap: balance;
}

.entry-content .wc-shortcodes-column img,
.entry-content .wp-block-image img {
  border-radius: 18px;
}

.post-shell .entry-content {
  color: #3e4651;
  font-size: 1.04rem;
  line-height: 1.82;
}

.post-shell .entry-content > p,
.post-shell .entry-content > ul,
.post-shell .entry-content > ol {
  max-width: 700px;
}

.post-shell .entry-content h2,
.post-shell .entry-content h3,
.post-shell .entry-content h4,
.post-shell .entry-content h5,
.post-shell .entry-content h6 {
  max-width: 720px;
  color: var(--ink);
  line-height: 1.16;
  text-wrap: balance;
}

.post-shell .entry-content h4 {
  margin-top: 1.6rem;
  font-size: 1.32rem;
}

.post-shell .entry-content h5,
.post-shell .entry-content h6 {
  margin: 2rem 0 0.8rem;
  font-size: 1rem;
}

.post-shell .entry-content > p:empty {
  display: none;
}

.article-image {
  --image-max: 620px;
  display: grid;
  margin: 2.35rem 0;
  clear: both;
}

.article-image a {
  display: block;
  color: inherit;
}

.article-image img,
.post-shell .entry-content figure img {
  display: block;
  width: min(100%, var(--image-max));
  height: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(72, 48, 78, 0.1);
}

.article-image--wide {
  --image-max: 100%;
}

.article-image--medium {
  --image-max: 540px;
}

.article-image--small {
  --image-max: 340px;
}

.article-image--center,
.article-image--wide {
  justify-items: center;
}

.article-image--left {
  justify-items: start;
}

.article-image--right {
  justify-items: end;
}

.post-shell .entry-content > p > img,
.post-shell .entry-content > p > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(72, 48, 78, 0.08);
}

.post-shell .entry-content > p:has(> img:first-child:last-child),
.post-shell .entry-content > p:has(> a:first-child:last-child > img) {
  max-width: 700px;
  margin: 2rem 0;
  clear: both;
}

.entry-content .wp-block-spacer {
  height: 28px !important;
}

.contact-intro {
  max-width: 760px;
  margin: 0 0 28px;
}

.contact-intro p {
  color: var(--muted);
  font-size: 1.16rem;
}

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

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 232px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.1), 0 18px 48px rgba(72, 48, 78, 0.07);
}

.contact-card-primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(122, 52, 140, 0.96), rgba(85, 35, 99, 0.96));
  box-shadow: 0 22px 58px rgba(85, 35, 99, 0.22);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p,
.contact-card address {
  margin: 0;
}

.contact-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.contact-card address {
  color: var(--text);
  font-style: normal;
}

.contact-card-primary .eyebrow,
.contact-card-primary h2,
.contact-card-primary p,
.contact-card-primary a {
  color: #fff;
}

.contact-card-link {
  align-self: end;
  width: fit-content;
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
}

.contact-card-link:hover {
  color: var(--accent);
}

.contact-card-primary .contact-card-link {
  color: #fff;
}

.contact-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--sage);
}

.contact-note p {
  max-width: 820px;
  margin: 0;
}

.contact-note a {
  flex: 0 0 auto;
  font-weight: 850;
  text-decoration: none;
}

.entry-content .aligncenter,
.entry-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
  margin: 0.3rem 1.2rem 1rem 0;
}

.entry-content .alignright {
  float: right;
  margin: 0.3rem 0 1rem 1.2rem;
}

.post-shell .entry-content img.alignleft,
.post-shell .entry-content img.alignright,
.post-shell .entry-content img.aligncenter {
  max-width: min(100%, 360px);
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(72, 48, 78, 0.08);
}

.post-shell .entry-content img.aligncenter {
  margin-block: 1.8rem;
}

.services-shell .entry-content,
.treatment-shell .entry-content {
  font-size: 1.04rem;
  line-height: 1.78;
}

.services-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 30px;
  align-items: end;
  margin: 0 0 28px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(122, 52, 140, 0.1), transparent 18rem),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.1), 0 18px 50px rgba(72, 48, 78, 0.07);
}

.services-intro-panel h2,
.services-intro-panel p {
  margin: 0;
}

.services-intro-panel h2 {
  max-width: 520px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

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

.treatment-catalog {
  display: grid;
  gap: 14px;
}

.treatment-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 14px 18px 14px 14px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.09), 0 14px 34px rgba(72, 48, 78, 0.055);
  transition: transform 260ms var(--curve), box-shadow 260ms var(--curve), background 260ms var(--curve);
}

.treatment-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.18), 0 22px 54px rgba(72, 48, 78, 0.1);
}

.treatment-card-image {
  display: block;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: var(--wash);
}

.treatment-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card-copy {
  display: grid;
  gap: 5px;
}

.treatment-card-tag {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-card strong {
  font-size: 1.24rem;
  line-height: 1.15;
}

.treatment-card-copy > span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.treatment-card-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 999px;
  background: var(--accent);
}

.treatment-overview {
  display: grid;
  gap: 24px;
  margin: 0 0 34px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(122, 52, 140, 0.12), transparent 16rem),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.1), 0 18px 50px rgba(72, 48, 78, 0.07);
}

.treatment-overview h2,
.treatment-overview p {
  margin: 0;
}

.treatment-overview h2 {
  max-width: 720px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
  text-wrap: balance;
}

.treatment-overview dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(122, 52, 140, 0.12);
}

.treatment-overview dl div {
  padding: 16px;
  background: rgba(253, 251, 253, 0.96);
}

.treatment-overview dt {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-overview dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.treatment-shell .entry-content > p,
.treatment-shell .entry-content > ul,
.treatment-shell .entry-content > ol {
  max-width: 720px;
}

.treatment-shell .entry-content h2,
.treatment-shell .entry-content h3,
.treatment-shell .entry-content h4 {
  max-width: 760px;
  color: var(--ink);
  line-height: 1.16;
  text-wrap: balance;
}

.treatment-shell .entry-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.55rem, 2.2vw, 2.08rem);
}

.treatment-shell .entry-content h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.treatment-shell .entry-content hr {
  width: min(100%, 720px);
  margin: 2.25rem 0;
  border: 0;
  border-top: 1px solid rgba(122, 52, 140, 0.14);
}

.treatment-shell .entry-content hr + h2,
.treatment-shell .entry-content hr + h3 {
  margin-top: 0;
}

.treatment-shell .entry-content ul,
.treatment-shell .entry-content ol {
  display: grid;
  gap: 0.55rem;
  padding: 22px 24px 22px 44px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.08);
}

.treatment-shell .entry-content .wp-caption {
  max-width: 100% !important;
  margin: 2rem 0;
  padding: 0;
}

.treatment-shell .entry-content figure {
  clear: both;
}

.treatment-shell .entry-content figure.alignleft,
.treatment-shell .entry-content figure.alignright,
.treatment-shell .entry-content figure.aligncenter,
.treatment-shell .entry-content .alignleft,
.treatment-shell .entry-content .alignright {
  float: none;
  display: block;
  max-width: 100%;
  margin: 2rem 0;
}

.treatment-shell .entry-content .wp-caption img,
.treatment-shell .entry-content > figure img,
.treatment-shell .entry-content figure.wp-block-image img {
  display: block;
  width: min(100%, 680px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(72, 48, 78, 0.1);
}

.treatment-shell .entry-content figure.aligncenter img {
  margin-inline: auto;
}

.treatment-shell .entry-content .wp-caption-text {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.treatment-shell .entry-content img.alignleft,
.treatment-shell .entry-content img.alignright,
.treatment-shell .entry-content img.aligncenter {
  float: none;
  display: block;
  max-width: min(100%, 460px);
  height: auto;
  margin: 2rem 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(72, 48, 78, 0.08);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 10px;
  border: 1px solid var(--line);
}

.button_link,
.entry-content .wp-block-button__link,
.entry-content input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border-radius: 999px;
}

.contact-panel {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(248, 245, 249, 0.92);
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.11);
}

.sidebar-stack {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.sidebar-stack .contact-panel {
  position: static;
}

.treatments-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(122, 52, 140, 0.11), 0 14px 42px rgba(72, 48, 78, 0.06);
}

.treatments-panel h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.treatments-panel a {
  display: block;
  padding: 11px 0;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  border-top: 1px solid rgba(122, 52, 140, 0.1);
}

.treatments-panel a:hover {
  color: var(--accent);
}

.contact-panel h2 {
  font-size: 1.6rem;
}

.contact-panel p {
  margin: 0;
}

.phone-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  transition: transform 820ms var(--curve);
}

.reveal.is-visible {
  transform: translateY(0);
}

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

  .reveal {
    transform: none;
  }
}

.blog-wrap .page-title {
  max-width: 760px;
}

.blog-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.podcast-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(32, 36, 42, 0.16);
  transition: transform 520ms var(--curve), background 520ms var(--curve);
}

.podcast-button:hover {
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.intro {
  margin-bottom: 34px;
}

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

.post-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(31, 44, 48, 0.05);
}

.post-card > div {
  padding: 20px;
}

.post-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.28;
}

.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.post-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--wash);
}

.post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-thumb {
  display: grid;
  place-items: center;
  color: var(--accent);
  text-decoration: none;
  background:
    radial-gradient(circle at 30% 20%, rgba(122, 52, 140, 0.18), transparent 12rem),
    linear-gradient(135deg, #fff, var(--accent-soft));
}

.placeholder-thumb span {
  font-size: 4rem;
  font-weight: 850;
  opacity: 0.32;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 28px;
  padding: 42px max(22px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(122, 52, 140, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 5px;
  font-size: 1.08rem;
}

.cookie-banner p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions .primary-button,
.cookie-actions .secondary-button {
  min-height: 42px;
  padding-block: 9px;
}

.not-found-panel {
  max-width: 720px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.not-found-panel p:last-child {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.site-footer p {
  margin: 6px 0 0;
  color: #d8e3df;
}

.site-footer strong {
  display: block;
  font-size: 1.14rem;
}

.footer-title {
  color: #fff !important;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .home-hero,
  .format-grid,
  .about-grid,
  .interior-hero,
  .interior-body,
  .standard-layout,
  .contact-grid,
  .blog-title-row {
    grid-template-columns: 1fr;
  }

  .hero-photo img {
    min-height: 420px;
  }

  .service-mosaic,
  .format-list,
  .process-rail,
  .credential-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tile.large {
    grid-row: span 1;
    min-height: 340px;
  }

  .process-rail article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-panel {
    position: static;
  }

  .sidebar-stack {
    position: static;
  }

  .hero-consult-box {
    max-width: 520px;
  }

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    align-items: stretch;
    justify-content: stretch;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .main-nav .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
    padding: 11px 0;
    color: var(--ink);
    background: transparent;
  }

  .main-nav .nav-cta:hover {
    color: var(--accent-dark);
    background: transparent;
  }

  .content-wrap,
  .home-hero,
  .interior-hero {
    width: min(100% - 30px, var(--max));
  }

  .home-hero {
    padding: 34px 0 42px;
  }

  .interior-hero {
    padding: 38px 0 34px;
    gap: 24px;
  }

  .interior-actions {
    margin-top: 22px;
  }

  .content-wrap,
  .content-wrap.compact {
    padding: 42px 0 54px;
  }

  .interior-body {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2rem, 10.4vw, 2.75rem);
  }

  .hero-photo img {
    min-height: 0;
    max-height: 310px;
    object-fit: cover;
    object-position: center top;
  }

  .service-mosaic,
  .format-list,
  .process-rail,
  .credential-list,
  .contact-note,
  .entry-content .wp-block-columns,
  .entry-content .wc-shortcodes-row,
  .post-grid,
  .site-footer,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .article-image,
  .article-image--left,
  .article-image--right,
  .article-image--center,
  .article-image--wide {
    justify-items: stretch;
  }

  .article-image img,
  .post-shell .entry-content img.alignleft,
  .post-shell .entry-content img.alignright,
  .post-shell .entry-content img.aligncenter,
  .treatment-shell .entry-content img.alignleft,
  .treatment-shell .entry-content img.alignright,
  .treatment-shell .entry-content img.aligncenter {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1.35rem 0;
  }

  .services-intro-panel,
  .treatment-overview,
  .treatment-overview dl {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    grid-template-columns: 84px minmax(0, 1fr) 28px;
    gap: 14px;
    min-height: 104px;
    padding: 12px;
  }

  .treatment-card-image {
    width: 84px;
    border-radius: 15px;
  }

  .treatment-card strong {
    font-size: 1.05rem;
  }

  .treatment-card-copy > span:last-child {
    display: none;
  }

  .treatment-card-arrow {
    width: 28px;
    height: 28px;
  }

  .treatment-shell .entry-content ul,
  .treatment-shell .entry-content ol {
    padding: 18px 18px 18px 34px;
  }

  .service-tile,
  .format-list article {
    min-height: auto;
  }

  .service-tile,
  .format-list article,
  .process-rail article {
    padding: 22px;
    border-radius: 20px;
  }

  .home-cta {
    margin-bottom: 46px;
    padding: 28px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
